dnl Process this file with autoconf to produce a configure script. dnl $Id: configure.ac,v 1.7 2005/10/10 19:16:54 hiram Exp $ AC_INIT(jday.h) AM_INIT_AUTOMAKE(jday, $VERSION) AM_MAINTAINER_MODE dnl default will be to build static library since it is so tiny. dnl However, the build can make shared libraries with --enable-shared dnl if desired dnl Substitute variables AC_SUBST(PACKAGE) AC_SUBST(VERSION,2.4) AC_SUBST([ACLOCAL_AMFLAGS]) dnl Checks for programs. AC_PROG_CC AC_PROG_CPP AC_PROG_INSTALL AM_PROG_LIBTOOL dnl Checks for header files. AC_HEADER_STDC dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_STRUCT_TM dnl Checks for library functions. AC_CHECK_FUNCS(putenv) AX_CREATE_PKGCONFIG_INFO AC_OUTPUT(Makefile)