Annotation of embedaddon/coova-chilli/configure.in, revision 1.1

1.1     ! misho       1: #                                               -*- Autoconf -*-
        !             2: # Process this file with autoconf to produce a configure script.
        !             3: 
        !             4: AC_PREREQ(2.57)
        !             5: AC_INIT(coova-chilli, 1.0.12, support@coova.org)
        !             6: AC_CONFIG_SRCDIR([src/cmdline.c])
        !             7: 
        !             8: AM_INIT_AUTOMAKE
        !             9: 
        !            10: AM_CONFIG_HEADER([config.h])
        !            11: 
        !            12: # Checks for programs.
        !            13: AC_PROG_CC
        !            14: 
        !            15: #JJAKO Check for libtool
        !            16: AC_PROG_LIBTOOL
        !            17: AM_PROG_LIBTOOL
        !            18: AC_ARG_PROGRAM
        !            19: 
        !            20: # Checks for libraries.
        !            21: 
        !            22: # Checks for header files.
        !            23: AC_HEADER_STDC
        !            24: AC_CHECK_HEADERS([arpa/inet.h errno.h fcntl.h \
        !            25:                  netdb.h netinet/in.h \
        !            26:                  stdint.h stdlib.h string.h \
        !            27:                  sys/ioctl.h sys/socket.h \
        !            28:                  sys/param.h sys/time.h \
        !            29:                  sys/ipc.h sys/msg.h \
        !            30:                  sys/wait.h sys/un.h \
        !            31:                  sys/stat.h sys/types.h \
        !            32:                  syslog.h resolv.h \
        !            33:                  unistd.h endian.h \
        !            34:                  net/route.h net/if.h \
        !            35:                  net/ethernet.h asm/types.h \
        !            36:                  net/if_arp.h net/if_tun.h])
        !            37: 
        !            38: # Checks for typedefs, structures, and compiler characteristics.
        !            39: AC_C_CONST
        !            40: AC_TYPE_MODE_T
        !            41: AC_HEADER_TIME
        !            42: 
        !            43: # Checks for library functions.
        !            44: AC_FUNC_FORK
        !            45: AC_PROG_GCC_TRADITIONAL
        !            46: AC_FUNC_MEMCMP
        !            47: AC_FUNC_SELECT_ARGTYPES
        !            48: AC_CHECK_FUNCS([gethostbyname getprotoent gettimeofday inet_ntoa memset select socket strdup strerror strstr strtol getline])
        !            49: AC_CHECK_LIB(resolv, res_init)
        !            50: 
        !            51: AC_SUBST(sysconfdir)
        !            52: AC_CONFIG_FILES([Makefile 
        !            53:                 bstring/Makefile 
        !            54:                 doc/Makefile 
        !            55:                 src/Makefile 
        !            56:                 www/Makefile
        !            57:                  conf/Makefile 
        !            58:                  debian/Makefile 
        !            59:                 coova-chilli.spec])
        !            60: AC_OUTPUT

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>