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.2 |
# $Id: configure.in,v 1.1 2003/03/29 19:27:36 tdb Exp $ |
6 |
tdb |
1.1 |
# |
7 |
|
|
|
8 |
|
|
# Change these to change the package name and version |
9 |
|
|
AC_INIT(idar, 1.0, dev@i-scream.org.uk) |
10 |
|
|
AM_INIT_AUTOMAKE(idar, 1.0) |
11 |
|
|
|
12 |
|
|
# Revision number (automatically updated) |
13 |
tdb |
1.2 |
AC_REVISION($Revision: 1.1 $) |
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 |
|
|
CPPFLAGS="-I${withval}/include ${CPPFLAGS}" |
47 |
|
|
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 |
|
|
|
63 |
tdb |
1.2 |
# Need curses or ncurses |
64 |
|
|
MP_WITH_CURSES |
65 |
|
|
|
66 |
|
|
# Need libxml2 |
67 |
|
|
AM_PATH_XML2 |
68 |
|
|
CFLAGS="$CFLAGS $XML_CFLAGS" |
69 |
|
|
LIBS="$LIBS $XML_LIBS" |
70 |
|
|
|
71 |
tdb |
1.1 |
# Figure out details about the host - we need the OS |
72 |
|
|
AC_CANONICAL_HOST |
73 |
|
|
|
74 |
|
|
# Set things up for different OS's |
75 |
|
|
# We define the name of the OS so the code can act accordingly |
76 |
|
|
# We also need to add the right LDFLAGS |
77 |
|
|
case $host_os in |
78 |
|
|
solaris2.*) |
79 |
tdb |
1.2 |
AC_CHECK_LIB(ukcprog, fpgetline,[:],[AC_MSG_ERROR([need libukcprog])],[-lnsl -lsocket]) |
80 |
tdb |
1.1 |
LIBS="$LIBS -lnsl -lsocket -Wl,-Bstatic -lukcprog -Wl,-Bdynamic" |
81 |
|
|
;; |
82 |
|
|
freebsd4.*) |
83 |
tdb |
1.2 |
AC_CHECK_LIB(ukcprog, fpgetline,[:],[AC_MSG_ERROR([need libukcprog])]) |
84 |
tdb |
1.1 |
LIBS="$LIBS -lukcprog -static" |
85 |
|
|
;; |
86 |
|
|
linux-gnu) |
87 |
tdb |
1.2 |
AC_CHECK_LIB(ukcprog, fpgetline,[:],[AC_MSG_ERROR([need libukcprog])]) |
88 |
tdb |
1.1 |
LIBS="$LIBS -lukcprog -static" |
89 |
|
|
;; |
90 |
|
|
*) |
91 |
|
|
AC_MSG_ERROR([Cannot build on unknown OS: $host_os]) |
92 |
|
|
;; |
93 |
|
|
esac |
94 |
|
|
|
95 |
|
|
# And finish by changing these files |
96 |
|
|
AC_CONFIG_FILES([Makefile]) |
97 |
|
|
|
98 |
|
|
AC_OUTPUT |