ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/hopm/branches/1.1.x/configure.ac
Revision: 5266
Committed: Thu Jan 1 18:49:40 2015 UTC (11 years, 6 months ago) by michael
Content type: application/pkix-attr-cert
Original Path: hopm/trunk/configure.ac
File size: 1288 byte(s)
Log Message:
- Removed obsolete AC_HEADER_TIME

File Contents

# User Rev Content
1 michael 5052 dnl Process this file with autoconf to produce a configure script.
2 michael 5266 AC_INIT([hopm], [TRUNK], [bugs@ircd-hybrid.org])
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 check for yacc
16     AC_PROG_INSTALL
17     AC_PROG_YACC
18    
19     dnl check for lexx
20     AM_PROG_LEX
21    
22     dnl check if we need -lsocket or -lnsl
23 michael 5062 AC_SEARCH_LIBS([socket],[socket],,[AC_MSG_ERROR([socket library not found])])
24     AC_CHECK_FUNC(getaddrinfo, [], AC_SEARCH_LIBS(getaddrinfo, nsl))
25     AC_CHECK_FUNC(getnameinfo, [], AC_SEARCH_LIBS(getnameinfo, nsl))
26 michael 5052
27 michael 5264 AC_CHECK_FUNCS(strlcpy strlcat)
28 michael 5052
29     dnl AIX fun
30     AC_C_BIGENDIAN
31    
32 michael 5260 AC_CONFIG_FILES(Makefile doc/Makefile src/Makefile src/libopm/Makefile src/libopm/src/Makefile)
33 michael 5122 AC_OUTPUT
34 michael 5052
35    
36 michael 5110 echo "###############################################################################"
37     echo "Configuration complete. Type make (or gmake on some *BSD machines) to compile."
38 michael 5052 echo
39 michael 5110 echo "HOPM will be installed in ${prefix}. To change this, run:"
40 michael 5052 echo " ./configure --prefix=DIRECTORY"
41 michael 5110 echo "###############################################################################"

Properties

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