OSDN Git Service

Change symbolic links to regular files.
[alstede/alstede.git] / configure.in
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ([2.63])
5 AC_INIT([alstede], [1.0.1], [issoftware@users.sourceforge.jp])
6 AC_CONFIG_SRCDIR([config.h.in])
7 AC_CONFIG_HEADERS([config.h])
8
9 AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug], [Turn on debugging]), enable_debug="$enableval", enable_fcgi="no")
10
11 AM_INIT_AUTOMAKE([$PACKAGE_NAME], [$PACKAGE_VERSION])
12
13 # Checks for programs.
14 AC_PROG_CXX
15 AC_PROG_INSTALL
16
17 # Checks for libraries.
18 AC_CHECK_LIB([boost_filesystem], [-lboost_filesystem])
19 AC_CHECK_LIB([islib], [-lislib])
20
21 # Checks for header files.
22 AC_CHECK_HEADERS([unistd.h])
23
24 # Checks for typedefs, structures, and compiler characteristics.
25 AC_HEADER_STDBOOL
26 AC_TYPE_SIZE_T
27
28 # Checks for library functions.
29 AC_CHECK_FUNCS([tzset])
30
31 AM_CONDITIONAL([DEBUG], [test "$enable_debug" = yes])
32 AM_CONDITIONAL([GXX], [test "$GXX" = yes])
33
34 AC_CONFIG_FILES([Makefile])
35
36 AC_OUTPUT