"Fossies" - the Fresh Open Source Software Archive 
Member "c_count-7.20/configure.in" (23 Sep 2020, 829 Bytes) of package /linux/privat/c_count-7.20.tgz:
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 last
Fossies "Diffs" side-by-side code changes report for "configure.in":
7.18_vs_7.19.
1 dnl Process this file with 'autoconf' to produce a 'configure' script
2 dnl $Id: configure.in,v 7.18 2020/09/23 00:36:07 tom Exp $
3 AC_REVISION($Revision: 7.18 $)
4 AC_PREREQ(2.25.20200802)
5 AC_INIT(c_count.c)
6 AC_CONFIG_HEADER(config.h:config.hin)
7
8 CF_CHECK_CACHE([AC_CANONICAL_SYSTEM])
9
10 AC_ARG_PROGRAM
11 AC_PROG_CC
12 AC_PROG_INSTALL
13 CF_PROG_LINT
14 CF_MAKE_PHONY
15 CF_MAKE_TAGS
16 AC_PROG_MAKE_SET
17
18 CF_ANSI_CC_REQD
19 AC_CONST
20
21 CF_WITHOUT_X
22
23 CF_ENABLE_WARNINGS
24 CF_DISABLE_ECHO
25 CF_PROG_EXT
26 CF_DISABLE_LEAKS
27 CF_WITH_MAN2HTML
28
29 AC_STDC_HEADERS
30 AC_HAVE_HEADERS(stdlib.h getopt.h string.h malloc.h)
31 AC_HAVE_FUNCS(strchr getopt)
32 CF_GETOPT_HEADER
33
34 if test $ac_cv_func_getopt = 'no'
35 then
36 CPPFLAGS="$CPPFLAGS -I\$(srcdir)/porting"
37 EXTRAOBJ=getopt\$o
38 AC_SUBST(EXTRAOBJ)
39 fi
40
41 ### output makefile and config.h
42 AC_OUTPUT(makefile,,,cat)
43 CF_MAKE_DOCS(c_count,1)