aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac15
1 files changed, 15 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..c5e2447
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,15 @@
+dnl Configure script for the Unix GTK build of puzzles.
+
+AC_INIT([puzzles], rNNNN, [anakin@pobox.com])
+AC_CONFIG_SRCDIR([midend.c])
+AM_INIT_AUTOMAKE([foreign])
+AC_PROG_CC
+if test "x$GCC" = "xyes"; then
+ : # FIXME: do something interesting enabling as many warning
+ # options as possible without breaking system headers.
+fi
+AM_PATH_GTK_2_0([2.0.0])
+AC_PROG_RANLIB
+AC_PROG_INSTALL
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT