6 |
|
# |
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) |
9 |
> |
AC_INIT(idar, 1.2, bugs@i-scream.org) |
10 |
> |
AM_INIT_AUTOMAKE(idar, 1.2) |
11 |
|
|
12 |
|
# Revision number (automatically updated) |
13 |
|
AC_REVISION($Revision$) |
35 |
|
] |
36 |
|
) |
37 |
|
|
38 |
+ |
# 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 -I${withval}/include/ncurses ${CPPFLAGS}" |
47 |
+ |
fi |
48 |
+ |
] |
49 |
+ |
) |
50 |
+ |
|
51 |
|
# Checks for header files |
52 |
|
AC_HEADER_STDC |
53 |
|
AC_CHECK_HEADERS(ukcprog.h,,[AC_MSG_ERROR([need ukcprog.h])]) |
59 |
|
AC_FUNC_MALLOC |
60 |
|
AC_FUNC_REALLOC |
61 |
|
AC_FUNC_FORK |
62 |
+ |
AC_CHECK_FUNCS(strlcpy) |
63 |
+ |
AC_CHECK_FUNCS(atoll) |
64 |
|
|
65 |
+ |
# 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 |
|
# Figure out details about the host - we need the OS |
74 |
|
AC_CANONICAL_HOST |
75 |
|
|
76 |
|
# Set things up for different OS's |
77 |
< |
# We define the name of the OS so the code can act accordingly |
55 |
< |
# We also need to add the right LDFLAGS |
77 |
> |
# We need to add the right LDFLAGS |
78 |
|
case $host_os in |
79 |
|
solaris2.*) |
80 |
< |
LIBS="$LIBS -lnsl -lsocket -Wl,-Bstatic -lukcprog -Wl,-Bdynamic" |
80 |
> |
LIBS="$LIBS -lnsl -lsocket" |
81 |
|
;; |
60 |
– |
freebsd4.*) |
61 |
– |
LIBS="$LIBS -lukcprog -static" |
62 |
– |
;; |
63 |
– |
linux-gnu) |
64 |
– |
LIBS="$LIBS -lukcprog -static" |
65 |
– |
;; |
66 |
– |
*) |
67 |
– |
AC_MSG_ERROR([Cannot build on unknown OS: $host_os]) |
68 |
– |
;; |
82 |
|
esac |
83 |
|
|
71 |
– |
# Library checks that need to be done after the OS specific stuff |
84 |
|
AC_CHECK_LIB(ukcprog, fpgetline,[:],[AC_MSG_ERROR([need libukcprog])]) |
85 |
+ |
LIBS="$LIBS -lukcprog" |
86 |
|
|
87 |
< |
# Need libxml2 |
88 |
< |
AM_PATH_XML2 |
89 |
< |
CFLAGS="$CFLAGS $XML_CFLAGS" |
90 |
< |
LIBS="$LIBS $XML_LIBS" |
87 |
> |
# Check for the --with-server-name option |
88 |
> |
AC_ARG_WITH([server-name], [ --with-server-name=NAME default server name (default: i-scream)], [servername=$withval], [servername=[i-scream]]) |
89 |
> |
AC_DEFINE_UNQUOTED([DEF_SERVER_NAME], ["$servername"], [Default Server Name]) |
90 |
> |
|
91 |
> |
# Check for the --with-server-port option |
92 |
> |
AC_ARG_WITH([server-port], [ --with-server-port=PORT default server port (default: 4510)], [serverport=$withval], [serverport=[4510]]) |
93 |
> |
AC_DEFINE_UNQUOTED([DEF_SERVER_PORT], [$serverport], [Default Server Port]) |
94 |
|
|
95 |
|
# And finish by changing these files |
96 |
|
AC_CONFIG_FILES([Makefile]) |