"Fossies" - the Fresh Open Source Software Archive

Member "giis_4.6.2/src/configure.ac" (27 Mar 2012, 668 Bytes) of package /linux/misc/old/giis_4.6.2.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 #                                               -*- Autoconf -*-
    2 # Process this file with autoconf to produce a configure script.
    3 
    4 AC_PREREQ(2.61)
    5 AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
    6 AC_CONFIG_SRCDIR([init.c])
    7 AC_CONFIG_HEADER([config.h])
    8 
    9 # Checks for programs.
   10 AC_PROG_CC
   11 
   12 # Checks for libraries.
   13 # FIXME: Replace `main' with a function in `-lm':
   14 AC_CHECK_LIB([m], [main])
   15 
   16 # Checks for header files.
   17 AC_HEADER_STDC
   18 AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h])
   19 
   20 # Checks for typedefs, structures, and compiler characteristics.
   21 
   22 # Checks for library functions.
   23 AC_CHECK_FUNCS([memset mkdir rmdir])
   24 
   25 AC_CONFIG_FILES([Makefile])
   26 AC_OUTPUT