File: configure.ac

package info (click to toggle)
complexity 1.10%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,704 kB
  • sloc: sh: 5,111; ansic: 1,936; makefile: 96
file content (37 lines) | stat: -rw-r--r-- 1,013 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
AC_INIT([Complexity],
    m4_esyscmd([cat .tarball-version]),
    [bkorb@gnu.org])

AS_BOX([Configuring AC_PACKAGE_TARNAME AC_PACKAGE_VERSION])

dnl we can't use AC_CONFIG_AUX_DIR here, because the heuristics
dnl for finding install-sh in the generated configure script
dnl consider this directory to be a subproject of gnulib proper,
dnl and will only look for install-sh in . and .. :(
dnl AC_CONFIG_AUX_DIR([build-aux])
dnl
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADER([config.h])
AC_CONFIG_FILES([Makefile doc/Makefile lib/Makefile src/Makefile tests/Makefile])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_SRCDIR([src/complexity.c])
AM_INIT_AUTOMAKE([gnu check-news 1.5 dist-xz])
AC_USE_SYSTEM_EXTENSIONS
gl_INIT

AC_PROG_CC_C99

gl_EARLY
ag_FIND_LIBOPTS
[test -z "${ao_LIBS}" && \
    ]AC_ERROR([libopts was not found])[

if autogen -MF/tmp/ag-bogus-$$ --help >/dev/null
then ag_cv_ag_supports_mf=true
else ag_cv_ag_supports_mf=false
fi
]
AM_CONDITIONAL([AG_MF],[$ag_cv_ag_supports_mf])
AM_PROG_CC_C_O

AC_OUTPUT