1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
|
AC_PREREQ([2.61])
AC_INIT([Argus Client Programs],[3.0.8],[bug-report@qosient.com],[argus-clients],[http://qosient.com/argus])
AC_CONFIG_SRCDIR([clients/ra.c])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_HEADER([include/argus_config.h])
AC_CANONICAL_TARGET
AC_QOSIENT_PERL(V_PERL)
AC_LBL_C_INIT(V_CCOPT, V_INCLS)
AC_PROG_LN_S
AC_PROG_LEX
AC_PROG_INSTALL
AC_PROG_RANLIB
AC_PROG_YACC
AC_CHECK_PROGS(V_RANLIB, ranlib, @true)
AC_QOSIENT_LEX_AND_YACC(V_LEX, V_YACC, argus_)
AC_QOSIENT_READLINE(V_READLINE, V_INCLS)
CMU_SASL2(V_INCLS)
AC_CMU_MYSQL
AC_CHECK_HEADERS(zlib.h, [AC_CHECK_LIB(z, uncompress, ZLIB="-lz")])
AC_QOSIENT_FLOWTOOLS(V_FLOWTOOLS, V_INCLS)
if test ! -z "$V_FLOWTOOLS"; then
AC_DEFINE([ARGUS_FLOWTOOLS], [], [Using Flow Tools library])
if test -f "$V_FLOWTOOLS"; then
if test -f lib/libft.a; then
rm -rf lib/libft.a
fi
ftdir=`echo $V_FLOWTOOLS | sed -e 's/\.\./..\/../'`
V_FTDEP=$ftdir
else
if test "$V_FLOWTOOLS" = "-lft" ; then
if test -f lib/libft.a; then
rm -rf lib/libft.a
fi
fi
fi
fi
AC_QOSIENT_PCRE(V_PCRE, V_INCLS)
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS([sys/types.h sys/sockio.h sys/file.h string.h fcntl.h syslog.h])
AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h limits.h libintl.h malloc.h memory.h netdb.h netinet/in.h net/if_dl.h])
AC_CHECK_HEADERS([stdlib.h stddef.h string.h strings.h sys/file.h sys/ioctl.h sys/param.h sys/socket.h])
AC_CHECK_HEADERS([sys/mount.h sys/time.h sys/vfs.h syslog.h termios.h unistd.h values.h ifaddrs.h])
AC_C_CONST
AC_C_INLINE
AC_SYS_LARGEFILE
AC_LBL_UNALIGNED_ACCESS
AC_LBL_DEVEL(V_CCOPT)
AC_QOSIENT_DEBUG(V_CCOPT)
AC_QOSIENT_MEMORY
AC_TYPE_INT8_T
AC_TYPE_UINT8_T
AC_TYPE_INT16_T
AC_TYPE_UINT16_T
AC_TYPE_INT32_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_TYPE_UID_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_HEADER_TIME
AC_STRUCT_TM
AC_STRUCT_TIMEZONE
AC_FUNC_ALLOCA
AC_FUNC_VPRINTF
AC_FUNC_CLOSEDIR_VOID
AC_FUNC_ERROR_AT_LINE
AC_FUNC_FORK
AC_PROG_GCC_TRADITIONAL
AC_FUNC_MALLOC
AC_FUNC_MEMCMP
AC_FUNC_MKTIME
AC_FUNC_REALLOC
AC_FUNC_SELECT_ARGTYPES
AC_TYPE_SIGNAL
AC_FUNC_STAT
AC_FUNC_STRFTIME
AC_FUNC_STRTOD
AC_CHECK_FUNCS(backtrace)
AC_CHECK_FUNCS(openlog syslog)
AC_CHECK_FUNCS(vfprintf strlcpy)
AC_CHECK_FUNCS(strftime)
AC_CHECK_FUNCS(inet_aton)
AC_CHECK_FUNCS(setlinebuf)
AC_CHECK_FUNCS(strerror strtof)
AC_CHECK_FUNCS(floorf remainderf)
AC_CHECK_FUNCS(timegm)
needsnprintf=no
AC_CHECK_FUNCS(vsnprintf snprintf,, [needsnprintf=yes])
if test $needsnprintf = yes; then
AC_LIBOBJ(snprintf)
fi
AC_LBL_LIBRARY_NET
AC_CHECK_FUNCS([ether_hostton getaddrinfo gethostname])
AC_CHECK_FUNCS([alarm bzero endgrent endpwent floor gethostbyaddr gethostbyname getpass gettimeofday inet_ntoa isascii localtime_r])
AC_CHECK_FUNCS([memchr memmove memset mkdir modf pow putenv realpath regcomp select setenv socket sqrt strcasecmp strchr])
AC_CHECK_FUNCS([strdup strerror strlcat strncasecmp strpbrk strerror strrchr strstr strtol strtof srandomdev tzset])
case "$target_os" in
*) COMPATLIB="-lm"
esac
AC_QOSIENT_THREADS(V_THREADS)
AC_QOSIENT_TCPWRAP(V_WRAPDEP, V_INCLS)
if test ! -z "$V_WRAPDEP"; then
if test -f "$V_WRAPDEP"; then
if test -f lib/libwrap.a; then
rm -rf lib/libwrap.a
fi
wrapdir=`echo $V_WRAPDEP | sed -e 's/^\.\./..\/../'`
ln -s $wrapdir lib/libwrap.a
V_WRAPDEP="../lib/libwrap.a"
else
if test "$V_WRAPDEP" = "-lwrap" ; then
if test -f lib/libwrap.a; then
rm -rf lib/libwrap.a
fi
case "$target_os" in
linux*)
V_WRAPDEP="$V_WRAPDEP -lnsl";;
esac
fi
fi
AC_DEFINE([HAVE_TCP_WRAPPER], [], [Using Tcp wrappers])
WRAPLIBS="$V_WRAPDEP"
fi
AC_CHECK_FUNCS(xdrmem_create)
if test "$ac_cv_func_xdrmem_create" = yes ; then
AC_DEFINE([HAVE_XDR], [], [Using system XDR library])
else
case "$target_cpu" in
cygwin*)
;;
esac
fi
CURSESLIB=""
saved_CPPFLAGS=$CPPFLAGS
saved_LDFLAGS=$LDFLAGS
saved_LIBS=$LIBS
case "$target_os" in
solaris*)
NCURSES_INCLS="-I/usr/include/ncurses"
NCURSES_LDFLAGS="-L/usr/gnu/lib"
CPPFLAGS="${saved_CPPFLAGS} ${NCURSES_INCLS}"
LDFLAGS="${saved_LDFLAGS} ${NCURSES_LDFLAGS}"
AC_CHECK_HEADERS(ncurses.h, CURSESLIB="-lncurses",
[AC_CHECK_HEADERS(curses.h, CURSESLIB="-lcurses")],)
if test "$CURSESLIB" = "-lncurses"; then
AC_CHECK_LIB(ncurses, initscr,
[AC_DEFINE([ARGUS_CURSES], [], [Using ncurses])
CURSES_INCLS="-I/usr/include/ncurses"
LIBS="$LIBS -L/usr/gnu/lib" ],)
else
if test "$CURSESLIB" = "-lcurses"; then
AC_DEFINE([ARGUS_CURSES], [], [Using curses])
fi
fi
CPPFLAGS="${saved_CPPFLAGS}"
LDFLAGS="${saved_LDFLAGS}"
;;
*)
AC_CHECK_HEADERS(ncurses.h, [AC_CHECK_LIB(ncurses, initscr,
CURSESLIB="-lncurses")],
[AC_CHECK_HEADERS(curses.h, AC_CHECK_LIB(curses, initscr,
CURSESLIB="-lcurses"))
],)
if test "$CURSESLIB" = "-lncurses"; then
AC_DEFINE([ARGUS_CURSES], [], [Using ncurses])
else
if test "$CURSESLIB" = "-lcurses"; then
AC_DEFINE([ARGUS_CURSES], [], [Using curses])
fi
fi
;;
esac
case "$target_cpu" in
*86)
have_x86=yes;
;;
powerpc-apple*)
;;
powerpc64-*-linux-gnu)
V_CCOPT="$V_CCOPT -m64 -fPIC"
;;
esac
case "$target_os" in
aix*)
dnl Workaround to enable certain features
have_sun=yes;
;;
darwin*)
have_darwin=yes;
;;
hpux9*)
have_hpux_nine=yes;
;;
hpux10.0*)
;;
hpux10.1*)
;;
hpux*)
dnl HPUX 10.20 and above is similar to HPUX 9...
have_hpux_ten=yes;
;;
sinix*)
AC_MSG_CHECKING(if SINIX compiler defines sinix)
AC_CACHE_VAL(ac_cv_cc_sinix_defined,
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[int i = sinix;]])],[ac_cv_cc_sinix_defined=yes],[ac_cv_cc_sinix_defined=no]))
AC_MSG_RESULT($ac_cv_cc_sinix_defined)
if test "$ac_cv_cc_sinix_defined" = "no" ; then
AC_DEFINE([sinix], [], [Description])
fi
;;
solaris*)
AC_DEFINE(ARGUS_SOLARIS,1,[On solaris])
AC_MSG_CHECKING(for LD_LIBRARY_PATH, since you appear to be running Solaris)
if test "x$LD_LIBRARY_PATH" != "x" ; then
LIBS="$LIBS -R$LD_LIBRARY_PATH"
AC_MSG_RESULT(yes -- added LD_LIBRARY_PATH to run-time linker path)
else
AC_MSG_RESULT(no -- this may be a problem in a few seconds)
fi
COMPATLIB="-lsocket -lnsl -lrt $COMPATLIB"
;;
linux*)
;;
cygwin*)
have_cygwin=yes;
V_INCLS="$V_INCLS -I../include/cygwin-include"
;;
esac
if test "$have_x86" = yes ; then
AC_DEFINE([CONFIG_X86_BSWAP], [], [System has x86 endian support])
fi
if test "$have_darwin" = yes ; then
AC_DEFINE([HAVE_DARWIN], [], [Mac OS X])
fi
if test "$have_hpux_nine" = yes ; then
AC_DEFINE([HAVE_HPUX9], [], [HPUX 9])
fi
if test "$have_hpux_ten" = yes ; then
AC_DEFINE([HAVE_HPUX10_20], [], [HPUX 10])
fi
if test "$have_sun" = yes ; then
AC_DEFINE([_SUN], [], [Description])
fi
if test "$have_cygwin" = yes ; then
AC_DEFINE([CYGWIN], [], [Using cygwin])
fi
AC_QOSIENT_GEOIP(V_GEOIPDEP, V_INCLS)
AC_CACHE_CHECK([tm_gmtoff in struct tm], tcl_cv_member_tm_gmtoff, [
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
if test $tcl_cv_member_tm_gmtoff = yes ; then
AC_DEFINE([HAVE_TM_GMTOFF], [], [tm_gmtoff in struct tm])
fi
AC_CACHE_CHECK([sys_errlist in stdio.h], arg_cv_sys_errlist, [
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
if test $arg_cv_sys_errlist = yes ; then
AC_DEFINE([ARGUS_SYS_ERRLIST], [], [sys_errlist in stdio.h])
fi
if test "$V_FLOWTOOLS" = "-lft" ; then
LIBS="$LIBS $V_FLOWTOOLS"
fi
INSTALL_LIB="../lib"
INSTALL_BIN="../bin"
DIRS="./common ./include ./clients"
if test "$with_examples" != no; then
DIRS="$DIRS ./examples"
fi
if test "$with_pluribus" != no; then
AC_DEFINE([ARGUS_PLURIBUS], [], [Building for pluribus])
fi
V_INCLS_EXAMPLES=`echo $V_INCLS | sed -e 's/\.\./..\/../'`
AC_SUBST(PACKAGE_VERSION)
AC_SUBST(LIBS)
AC_SUBST(DIRS)
AC_SUBST(INCLS)
AC_SUBST(V_CCOPT)
AC_SUBST(V_INCLS)
AC_SUBST(V_INCLS_EXAMPLES)
AC_SUBST(V_RANLIB)
AC_SUBST(V_YACC)
AC_SUBST(V_LEX)
AC_SUBST(V_PERL)
AC_SUBST(V_THREADS)
AC_SUBST(V_FTDEP)
AC_SUBST(V_PCRE)
AC_SUBST(V_READLINE)
AC_SUBST(V_GEOIPDEP)
AC_SUBST(WRAPLIBS)
AC_SUBST(COMPATLIB)
AC_SUBST(ZLIB)
AC_SUBST(CURSESLIB)
AC_SUBST(CURSES_INCLS)
AC_SUBST(INSTALL_LIB)
AC_SUBST(INSTALL_BIN)
AC_SUBST(PCRE_CFLAGS)
AC_CONFIG_FILES([
Makefile
./common/Makefile
./include/Makefile
./clients/Makefile
./lib/argus-clients.pc
])
AS_IF([test "$with_examples" != no],
[AC_CONFIG_FILES([
./examples/Makefile
./examples/raconvert/Makefile
./examples/radark/Makefile
./examples/radecode/Makefile
./examples/radump/Makefile
./examples/raevent/Makefile
./examples/rafilter/Makefile
./examples/ragraph/Makefile
./examples/ragrep/Makefile
./examples/rahisto/Makefile
./examples/rahosts/Makefile
./examples/ralabel/Makefile
])
AS_IF([test "$ARGUS_MYSQL_MAKEFILE" != no],
[AC_CONFIG_FILES([
./examples/ramysql/Makefile
])
])
AC_CONFIG_FILES([
./examples/rapath/Makefile
./examples/rapolicy/Makefile
./examples/raports/Makefile
./examples/rarpwatch/Makefile
./examples/raservices/Makefile
./examples/rastream/Makefile
./examples/rastrip/Makefile
./examples/ratop/Makefile
./examples/ratimerange/Makefile
./examples/ratemplate/Makefile
])
])
AC_OUTPUT
if test -f .devel ; then
make depend
fi
|