You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
730 B
32 lines
730 B
# -*- 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
|