]> Pileus Git - ~andy/gtk/commitdiff
Fix export of a few (currently unused) configure variables
authorMatthias Clasen <mclasen@redhat.com>
Thu, 7 Oct 2010 11:47:58 +0000 (07:47 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 7 Oct 2010 11:50:30 +0000 (07:50 -0400)
Turns out that autoconf eats all the m4_define magic before
AC_INIT.

configure.ac

index 12943e0042be882828904e698e0dbb249f04aa95..139040b1d313e3e28abe4e9a0e9a0a5899207bde 100644 (file)
@@ -2,6 +2,14 @@
 # require autoconf 2.54
 AC_PREREQ([2.62])
 
+AC_INIT([gtk+], [gtk_version],
+        [http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B],
+        [gtk+])
+
+AC_CONFIG_HEADER([config.h])
+AC_CONFIG_SRCDIR([gdk/gdktypes.h])
+AC_CONFIG_MACRO_DIR([m4])
+
 # Making releases:
 #   GTK_MICRO_VERSION += 1;
 #   GTK_INTERFACE_AGE += 1;
@@ -48,14 +56,6 @@ AC_SUBST(CAIRO_REQUIRED_VERSION)
 AC_SUBST(GDK_PIXBUF_REQUIRED_VERSION)
 
 
-AC_INIT([gtk+], [gtk_version],
-        [http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B],
-       [gtk+])
-
-AC_CONFIG_HEADER([config.h])
-AC_CONFIG_SRCDIR([gdk/gdktypes.h])
-AC_CONFIG_MACRO_DIR([m4])
-
 # Save this value here, since automake will set cflags later
 cflags_set=${CFLAGS+set}