aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2012-03-05 22:53:15 +0100
committerThomas White <taw@bitwiz.org.uk>2012-03-05 22:53:15 +0100
commit07dce273260af69127157bf16e8427a6c6faf2e7 (patch)
treebcc932e6972efe6d3d8e4bb0d205b5d6e2b610c7
parent7f217ef0d855a173c2389cf1f08cc992e17b6fb4 (diff)
Tidy up configure.ac (a bit)
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 712ddcd..f0c768e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,9 +1,9 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(openmoocow, 0.4.0+git, taw@bitwiz.org.uk)
+AC_INIT([openmoocow],[0.4.0+git],[taw@bitwiz.org.uk])
VERSION=AC_PACKAGE_VERSION
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE(openmoocow, "$VERSION")
AC_PROG_CC
@@ -15,7 +15,6 @@ AC_HEADER_STDC
AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h])
AC_C_CONST
AC_FUNC_MALLOC
-AC_TYPE_SIGNAL
AC_CHECK_FUNCS([strdup])
if test -z "$PKG_CONFIG"; then
@@ -43,4 +42,5 @@ fi
CFLAGS="$CFLAGS $GTK_CFLAGS $LIBSDL_CFLAGS"
LIBS="$LIBS $GTK_LIBS $LIBSDL_LIBS -lgthread-2.0"
-AC_OUTPUT(Makefile src/Makefile data/Makefile)
+AC_CONFIG_FILES([Makefile src/Makefile data/Makefile])
+AC_OUTPUT