blob: c5e2447ebfe19d86a600cda25d00d00f1b33e103 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|