From d3a53b82aa57f5090d95b69e6f567b06eb544df9 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sun, 10 Feb 2013 20:06:08 +0100 Subject: initial commit of 1.13 sources --- configure.ac | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..d1b1041 --- /dev/null +++ b/configure.ac @@ -0,0 +1,31 @@ +# Process this file with autoconf to produce a configure script. +AC_INIT(libvformat, 1.13, Nick ) +AC_CONFIG_SRCDIR([vf_iface.h]) +#AC_CONFIG_HEADER([config.h]) + +AM_INIT_AUTOMAKE(libvformat, 1.13) +AM_CONFIG_HEADER(config.h) + +# Checks for programs. +# AC_PROG_CC + +# Checks for libraries. +AC_PROG_RANLIB +AC_PROG_LIBTOOL + +# Checks for header files. +AC_HEADER_STDC +AC_CHECK_HEADERS([stdlib.h string.h]) + +# Checks for typedefs, structures, and compiler characteristics. +AC_C_CONST +AC_STRUCT_TM + +# Checks for library functions. +AC_FUNC_MKTIME +AC_FUNC_STAT +AC_CHECK_FUNCS([atexit memset strstr]) + +AC_OUTPUT([Makefile src/Makefile vformat/Makefile test/Makefile doc/Makefile]) +AC_CONFIG_FILES([]) + -- cgit v1.1-32-gdbae