ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/idar/configure.in
Revision: 1.12
Committed: Tue Jan 6 17:02:47 2004 UTC (20 years, 5 months ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Changes since 1.11: +4 -4 lines
Log Message:
Post-release version increments.

File Contents

# User Rev Content
1 tdb 1.1 # -*- Autoconf -*-
2     # Process this file with autoconf to produce a configure script.
3     #
4     # configure.in for i-scream idar
5 tdb 1.12 # $Id: configure.in,v 1.11 2004/01/05 15:59:52 tdb Exp $
6 tdb 1.1 #
7    
8     # Change these to change the package name and version
9 tdb 1.12 AC_INIT(idar, 1.2.1, bugs@i-scream.org)
10     AM_INIT_AUTOMAKE(idar, 1.2.1)
11 tdb 1.1
12     # Revision number (automatically updated)
13 tdb 1.12 AC_REVISION($Revision: 1.11 $)
14 tdb 1.1
15     # Might work with older autoconfs... but tested on 2.57
16     AC_PREREQ(2.57)
17    
18     # The file we use to pass #define's to the source
19     AM_CONFIG_HEADER(config.h)
20    
21     # Checks for programs
22     AC_PROG_CC
23     AC_PROG_INSTALL
24    
25     # User specified libukcprog prefix
26     AC_ARG_WITH([libukcprog-prefix],
27     [ --with-libukcprog-prefix=PATH libukcprog is in PATH],
28     [
29     if test -d "$withval/lib"; then
30     LDFLAGS="-L${withval}/lib ${LDFLAGS}"
31     fi
32     if test -d "$withval/include"; then
33     CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
34     fi
35     ]
36     )
37    
38 tdb 1.2 # User specified curses/ncurses prefix
39     AC_ARG_WITH([curses-prefix],
40     [ --with-curses-prefix=PATH curses (or ncurses) is in PATH],
41     [
42     if test -d "$withval/lib"; then
43     LDFLAGS="-L${withval}/lib ${LDFLAGS}"
44     fi
45     if test -d "$withval/include"; then
46 tdb 1.9 CPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${CPPFLAGS}"
47 tdb 1.2 fi
48     ]
49     )
50    
51 tdb 1.1 # Checks for header files
52     AC_HEADER_STDC
53     AC_CHECK_HEADERS(ukcprog.h,,[AC_MSG_ERROR([need ukcprog.h])])
54    
55     # Checks for typedefs, structures, and compiler characteristics
56     AC_C_CONST
57    
58     # Checks for library functions
59     AC_FUNC_MALLOC
60     AC_FUNC_REALLOC
61     AC_FUNC_FORK
62 tdb 1.3 AC_CHECK_FUNCS(strlcpy)
63     AC_CHECK_FUNCS(atoll)
64 tdb 1.1
65 tdb 1.2 # Need curses or ncurses
66     MP_WITH_CURSES
67    
68     # Need libxml2
69     AM_PATH_XML2
70     CFLAGS="$CFLAGS $XML_CFLAGS"
71     LIBS="$LIBS $XML_LIBS"
72    
73 tdb 1.1 # Figure out details about the host - we need the OS
74     AC_CANONICAL_HOST
75    
76     # Set things up for different OS's
77 tdb 1.11 # We need to add the right LDFLAGS
78 tdb 1.1 case $host_os in
79     solaris2.*)
80 tdb 1.11 LIBS="$LIBS -lnsl -lsocket"
81 tdb 1.1 ;;
82     esac
83 tdb 1.11
84     AC_CHECK_LIB(ukcprog, fpgetline,[:],[AC_MSG_ERROR([need libukcprog])])
85     LIBS="$LIBS -lukcprog"
86 tdb 1.6
87     # Check for the --with-server-name option
88 tdb 1.10 AC_ARG_WITH([server-name], [ --with-server-name=NAME default server name (default: i-scream)], [servername=$withval], [servername=[i-scream]])
89 tdb 1.6 AC_DEFINE_UNQUOTED([DEF_SERVER_NAME], ["$servername"], [Default Server Name])
90    
91     # Check for the --with-server-port option
92 tdb 1.10 AC_ARG_WITH([server-port], [ --with-server-port=PORT default server port (default: 4510)], [serverport=$withval], [serverport=[4510]])
93 tdb 1.6 AC_DEFINE_UNQUOTED([DEF_SERVER_PORT], [$serverport], [Default Server Port])
94 tdb 1.1
95     # And finish by changing these files
96     AC_CONFIG_FILES([Makefile])
97    
98     AC_OUTPUT