chiark / gitweb /
GTK 3 port: use GdkRGBA for the window background colour.
[sgt-puzzles.git] / configure.ac
index 4281e965c53e39229330989044dd8411a74defc3..c5bb6f93f19d7d1ec83c7cbc428da0b390010a6f 100644 (file)
@@ -1,6 +1,6 @@
 dnl Configure script for the Unix GTK build of puzzles.
 
-AC_INIT([puzzles], rNNNN, [anakin@pobox.com])
+AC_INIT([puzzles], [6.66], [anakin@pobox.com])
 AC_CONFIG_SRCDIR([midend.c])
 AM_INIT_AUTOMAKE([foreign])
 AC_PROG_CC
@@ -9,7 +9,7 @@ AM_PATH_GTK_2_0([2.0.0])
 if test "x$GCC" = "xyes"; then
   AC_MSG_CHECKING([for usable gcc warning flags])
   gccwarningflags=
-  for flag in -Wall -Werror -ansi -pedantic; do
+  for flag in -Wall -Werror -std=c89 -pedantic; do
     ac_save_CFLAGS="$CFLAGS"
     ac_save_LIBS="$LIBS"
     CFLAGS="$CFLAGS$gccwarningflags $flag $GTK_CFLAGS"