|
|
|
@ -0,0 +1,32 @@ |
|
|
|
# -*- Autoconf -*- |
|
|
|
# Process this file with autoconf to produce a configure script. |
|
|
|
|
|
|
|
AC_PREREQ([2.71]) |
|
|
|
AC_INIT([wtftrains],[0.0.1],[sc-bugs@shanti.im]) |
|
|
|
AC_CONFIG_SRCDIR([src/sekrits.c]) |
|
|
|
AC_CONFIG_HEADERS([config.h]) |
|
|
|
#AC_CONFIG_MACRO_DIRS([m4]) |
|
|
|
|
|
|
|
AM_PROG_AR |
|
|
|
|
|
|
|
AM_INIT_AUTOMAKE([foreign -Wall -Werror]) |
|
|
|
|
|
|
|
# Checks for programs. |
|
|
|
|
|
|
|
# Checks for libraries. |
|
|
|
PKG_CHECK_MODULES([CHECK], [check >= 0.9.6]) |
|
|
|
AC_PROG_CC |
|
|
|
LT_INIT |
|
|
|
|
|
|
|
# Checks for header files. |
|
|
|
AC_CHECK_HEADERS([stdlib.h]) |
|
|
|
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics. |
|
|
|
|
|
|
|
# Checks for library functions. |
|
|
|
AC_FUNC_MALLOC |
|
|
|
|
|
|
|
AC_CONFIG_FILES([Makefile |
|
|
|
src/Makefile |
|
|
|
tests/Makefile]) |
|
|
|
AC_OUTPUT |