"Fossies" - the Fresh Open Source Software Archive

Member "detox-1.4.5/configure.ac" (15 Aug 2021, 411 Bytes) of package /linux/privat/detox-1.4.5.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. See also the latest Fossies "Diffs" side-by-side code changes report for "configure.ac": 1.4.4_vs_1.4.5.

    1 # Process this file with autoconf to produce a configure script.
    2 AC_INIT([detox], [1.4.5], [detox.dharple at gmail.com], [], [https://github.com/dharple/detox])
    3 AM_INIT_AUTOMAKE([foreign -Wall -Werror])
    4 
    5 AC_PROG_CC
    6 AC_PROG_LEX([noyywrap])
    7 AC_PROG_YACC
    8 
    9 AC_CHECK_FUNCS([getopt_long])
   10 AC_STRUCT_ST_BLOCKS
   11 
   12 AC_SYS_LARGEFILE
   13 
   14 AC_CONFIG_HEADERS([src/config.h])
   15 AC_CONFIG_FILES([
   16  Makefile
   17  src/Makefile
   18 ])
   19 AC_OUTPUT