diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2008-07-31 Christophe Fergeau <teuf@gnome.org> + * configure.ac: instead of looking for .svn or {arch}, look for + autogen.sh to decide if we are compiling a version checked out from + svn or a release tarball. + +2008-07-31 Christophe Fergeau <teuf@gnome.org> + * src/itdb_device.h: * src/itdb_plist.h: move itdb_device_error_quark from itdb_plist.h to itdb_device.h diff --git a/configure.ac b/configure.ac index 2120a96..739fb0f 100644 --- a/configure.ac +++ b/configure.ac @@ -253,7 +253,7 @@ dnl Turn on the additional warnings last, so -Werror doesn't affect other tests. AC_ARG_ENABLE(more-warnings, [ --enable-more-warnings Maximum compiler warnings], set_more_warnings="$enableval",[ -if test -d "$srcdir/{arch}" || test -d "$srcdir/.svn"; then +if test -a "$srcdir/autogen.sh"; then set_more_warnings=yes else set_more_warnings=no |