ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/hopm/branches/1.1.x/configure.ac
Revision: 5264
Committed: Thu Jan 1 18:15:57 2015 UTC (11 years, 6 months ago) by michael
Content type: application/pkix-attr-cert
Original Path: hopm/trunk/configure.ac
File size: 1407 byte(s)
Log Message:
- Further cleanups to configure.ac

File Contents

# User Rev Content
1 michael 5052 dnl Process this file with autoconf to produce a configure script.
2 michael 5061 AC_INIT(hopm, [1.0.0beta1])
3 michael 5052 AC_CONFIG_SRCDIR(src/opercmd.h)
4 michael 5145 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 5264 AC_CHECK_HEADERS(sys/time.h)
18 michael 5052
19     dnl Checks for typedefs, structures, and compiler characteristics.
20     AC_HEADER_TIME
21    
22     dnl check for yacc
23     AC_PROG_INSTALL
24     AC_PROG_YACC
25    
26     dnl check for lexx
27     AM_PROG_LEX
28    
29     dnl check if we need -lsocket or -lnsl
30 michael 5062 AC_SEARCH_LIBS([socket],[socket],,[AC_MSG_ERROR([socket library not found])])
31     AC_CHECK_FUNC(getaddrinfo, [], AC_SEARCH_LIBS(getaddrinfo, nsl))
32     AC_CHECK_FUNC(getnameinfo, [], AC_SEARCH_LIBS(getnameinfo, nsl))
33 michael 5052
34 michael 5264 AC_CHECK_FUNCS(strlcpy strlcat)
35 michael 5052
36     dnl AIX fun
37     AC_C_BIGENDIAN
38    
39 michael 5260 AC_CONFIG_FILES(Makefile doc/Makefile src/Makefile src/libopm/Makefile src/libopm/src/Makefile)
40 michael 5122 AC_OUTPUT
41 michael 5052
42    
43 michael 5110 echo "###############################################################################"
44     echo "Configuration complete. Type make (or gmake on some *BSD machines) to compile."
45 michael 5052 echo
46 michael 5110 echo "HOPM will be installed in ${prefix}. To change this, run:"
47 michael 5052 echo " ./configure --prefix=DIRECTORY"
48 michael 5110 echo "###############################################################################"

Properties

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