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 38 39 40 41 42 43 44 45 46 47
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_INIT(disorder, 0.0.2, michael@freshdefense.net)
AC_CONFIG_HEADERS([config.h])
AC_PREREQ(2.64)
# Directory that contains install-sh and other auxiliary files
AC_CONFIG_AUX_DIR([config])
################################################################################
# According to (http://www.mail-archive.com/autoconf@gnu.org/msg14232.html)
# this macro should be after AC_INIT but before AM_INIT_AUTOMAKE
################################################################################
AC_CONFIG_MACRO_DIR(config)
AM_INIT_AUTOMAKE([1.11 parallel-tests foreign subdir-objects dist-zip tar-ustar filename-length-max=299])
LIB_VERSION=0:0
AC_SUBST([VERSION])
AC_SUBST([LIB_VERSION])
AC_SUBST([VERSION])
# Checks for programs.
AC_PROG_LN_S
AC_PROG_INSTALL
LT_PREREQ(2.2)
LT_INIT
CPPFLAGS="-I\$(top_srcdir) $CPPFLAGS"
# Checks for libraries.
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([stdlib.h])
AC_PROG_MAKE_SET
AC_CONFIG_FILES([
Makefile
])
AC_OUTPUT
|