musl-obstack/configure.ac
Jürgen Buchmüller 466f773fe1 Add AC_CONFIG_HEADERS to configure.ac
In bootstrap.sh also call autoheader to create config.h.in with
the HAVE_... macros to put into config.h when running ./configure.
2020-09-08 12:37:44 +02:00

19 lines
371 B
Text

dnl Process this file with autoconf to produce a configure script
AC_PREREQ(2.69)
AC_INIT([obstack], [1.2], [pullmoll@t-online.de])
AM_INIT_AUTOMAKE([1.16])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])
AC_PROG_CC
AC_PROG_LIBTOOL
AC_CHECK_HEADERS(stddef.h stdio.h stdint.h inttypes.h)
PKG_INSTALLDIR
AC_CONFIG_FILES([Makefile musl-obstack.pc])
AC_OUTPUT