ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/hopm/branches/1.1.x/configure.ac
Revision: 5230
Committed: Wed Dec 31 14:46:57 2014 UTC (11 years, 6 months ago) by michael
Content type: application/pkix-attr-cert
Original Path: hopm/trunk/configure.ac
File size: 1432 byte(s)
Log Message:
- configure.ac: removed tests for select() and sys/poll.h

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 5209 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 5172 AC_CHECK_FUNCS(strlcpy strlcat socket)
36 michael 5052
37     dnl AIX fun
38     AC_C_BIGENDIAN
39    
40    
41     AC_CONFIG_SUBDIRS(src/libopm)
42    
43 michael 5122 AC_CONFIG_FILES(Makefile doc/Makefile src/Makefile)
44     AC_OUTPUT
45 michael 5052
46    
47 michael 5110 echo "###############################################################################"
48     echo "Configuration complete. Type make (or gmake on some *BSD machines) to compile."
49 michael 5052 echo
50 michael 5110 echo "HOPM will be installed in ${prefix}. To change this, run:"
51 michael 5052 echo " ./configure --prefix=DIRECTORY"
52 michael 5110 echo "###############################################################################"

Properties

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