head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2004.03.19.21.58.05; author ericw; state Exp; branches; next ; desc @@ 1.1 log @Initial revision. SDL based SVG viewer demo, using Cairo. @ text @dnl Process this file with autoconf to produce a configure script. AC_INIT(main.c) dnl Every other copy of the package version number gets its value from here AM_INIT_AUTOMAKE(demo, 0.1.0) dnl create a config.h file (Automake will add -DHAVE_CONFIG_H) AM_CONFIG_HEADER(config.h) AC_SUBST(VERSION) ISODATE=`date +%Y-%m-%d` AC_SUBST(ISODATE) AC_CANONICAL_HOST dnl Checks for programs. AC_PROG_INSTALL AC_PROG_CC dnl Checks for libraries. dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(unistd.h sys/param.h sys/time.h time.h sys/mkdev.h sys/sysmacros.h string.h memory.h fcntl.h dirent.h sys/ndir.h ndir.h alloca.h locale.h ) jm_CHECK_TYPE_STRUCT_UTIMBUF AC_HEADER_MAJOR AC_FUNC_ALLOCA AC_STRUCT_TM AC_STRUCT_ST_BLOCKS AC_FUNC_CLOSEDIR_VOID AC_CHECK_FUNCS(mkfifo) AC_CHECK_FUNC(mknod) dnl Checks for typedefs, structures, and compiler characteristics. dnl Checks for library functions. AC_OUTPUT(Makefile) @