dnl dnl Copyright 2001 The Regents of the University of California dnl All Rights Reserved dnl dnl Permission to use, copy, modify and distribute any part of this dnl iffinder software package for educational, research and non-profit dnl purposes, without fee, and without a written agreement is hereby dnl granted, provided that the above copyright notice, this paragraph dnl and the following paragraphs appear in all copies. dnl dnl Those desiring to incorporate this into commercial products or use dnl for commercial purposes should contact the Technology Transfer dnl Office, University of California, San Diego, 9500 Gilman Drive, La dnl Jolla, CA 92093-0910, Ph: (858) 534-5815, FAX: (858) 534-7345. dnl dnl IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY dnl PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL dnl DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS dnl SOFTWARE, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF dnl THE POSSIBILITY OF SUCH DAMAGE. dnl dnl THE SOFTWARE PROVIDED HEREIN IS ON AN "AS IS" BASIS, AND THE dnl UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, dnl SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. THE UNIVERSITY dnl OF CALIFORNIA MAKES NO REPRESENTATIONS AND EXTENDS NO WARRANTIES dnl OF ANY KIND, EITHER IMPLIED OR EXPRESS, INCLUDING, BUT NOT LIMITED dnl TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A dnl PARTICULAR PURPOSE, OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE dnl ANY PATENT, TRADEMARK OR OTHER RIGHTS. dnl dnl The iffinder software package is developed by Ken Keys at the dnl University of California, San Diego under the Cooperative Association dnl for Internet Data Analysis (CAIDA) Program. dnl dnl Process this file with autoconf to produce a configure script. AC_REVISION([$Id: configure.in,v 1.2 2001/08/09 18:59:10 kkeys Exp $]) dnl initialization dnl enable_foo=yes AC_INIT(iffinder.c) dnl options dnl AC_ARG_ENABLE(foo, [ --disable-foo do not support foo]) AC_CONFIG_HEADER(config.h) AC_PREFIX_DEFAULT(/usr/local) dnl Checks for programs. AC_PROG_INSTALL AC_PROG_CC AC_SEARCH_LIBS(socket, socket) AC_SEARCH_LIBS(gethostbyname, nsl) AC_HEADER_STDC AC_CHECK_HEADERS(sys/select.h sys/time.h unistd.h) AC_C_CONST AC_C_INLINE AC_TYPE_OFF_T AC_HEADER_TIME AC_C_BIGENDIAN AC_PROG_GCC_TRADITIONAL AC_TYPE_SIGNAL AC_CHECK_FUNCS(inet_aton select socket strerror strstr vsnprintf getpagesize) AC_OUTPUT(Makefile)