ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/hopm/releases/1.0.1/configure.ac
Revision: 5261
Committed: Thu Jan 1 17:58:48 2015 UTC (9 years, 2 months ago) by michael
Content type: application/pkix-attr-cert
Original Path: hopm/branches/1.0.x/configure.ac
File size: 1444 byte(s)
Log Message:
- More cleanups to the build system. Remove stuff we don't need

File Contents

# User Rev Content
1 michael 5052 dnl Process this file with autoconf to produce a configure script.
2 michael 5261 AC_INIT(hopm, [1.0.0beta1])
3 michael 5052 AC_CONFIG_SRCDIR(src/opercmd.h)
4 michael 5144 AC_CONFIG_HEADER(src/setup.h)
5 michael 5052 AM_INIT_AUTOMAKE()
6 michael 5061 AC_PREFIX_DEFAULT([\${HOME}/hopm])
7 michael 5052 AM_MAINTAINER_MODE
8    
9     dnl Checks for programs.
10 michael 5059 AC_PROG_CC_C99
11     AS_IF([test "$ac_cv_prog_cc_c99" = "no"],
12     [AC_MSG_ERROR([no suitable C99 compiler found. Aborting.])])
13 michael 5052 AC_PROG_LIBTOOL
14    
15     dnl Checks for libraries.
16    
17 michael 5210 AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h)
18 michael 5052
19     dnl Checks for typedefs, structures, and compiler characteristics.
20     AC_HEADER_TIME
21     AC_STRUCT_TM
22    
23     dnl check for yacc
24     AC_PROG_INSTALL
25     AC_PROG_YACC
26    
27     dnl check for lexx
28     AM_PROG_LEX
29    
30     dnl check if we need -lsocket or -lnsl
31 michael 5062 AC_SEARCH_LIBS([socket],[socket],,[AC_MSG_ERROR([socket library not found])])
32     AC_CHECK_FUNC(getaddrinfo, [], AC_SEARCH_LIBS(getaddrinfo, nsl))
33     AC_CHECK_FUNC(getnameinfo, [], AC_SEARCH_LIBS(getnameinfo, nsl))
34 michael 5052
35 michael 5173 AC_CHECK_FUNCS(strlcpy strlcat socket)
36 michael 5052
37     dnl AIX fun
38     AC_C_BIGENDIAN
39    
40 michael 5261 AC_CONFIG_FILES(Makefile doc/Makefile src/Makefile src/libopm/Makefile src/libopm/src/Makefile)
41 michael 5122 AC_OUTPUT
42 michael 5052
43    
44 michael 5110 echo "###############################################################################"
45     echo "Configuration complete. Type make (or gmake on some *BSD machines) to compile."
46 michael 5052 echo
47 michael 5110 echo "HOPM will be installed in ${prefix}. To change this, run:"
48 michael 5052 echo " ./configure --prefix=DIRECTORY"
49 michael 5110 echo "###############################################################################"

Properties

Name Value
svn:eol-style native
svn:keywords Id