[Galago-commits] r2715 - trunk/galago-sharp

galago-commits at freedesktop.org galago-commits at freedesktop.org
Wed Apr 12 00:58:51 PDT 2006


Author: chipx86
Date: 2006-04-12 00:58:48 -0700 (Wed, 12 Apr 2006)
New Revision: 2715

Modified:
   trunk/galago-sharp/ChangeLog
   trunk/galago-sharp/configure.ac
Log:
Added a --with-galago-svn flag for bypassing the automatic determination of .tar.gz vs SVN.


Modified: trunk/galago-sharp/ChangeLog
===================================================================
--- trunk/galago-sharp/ChangeLog	2006-04-12 07:44:18 UTC (rev 2714)
+++ trunk/galago-sharp/ChangeLog	2006-04-12 07:58:48 UTC (rev 2715)
@@ -1,3 +1,9 @@
+Wed Apr 12 00:58:13 PDT 2006  Christian Hammond <chipx86 at chipx86.com>
+
+	* configure.ac:
+	  - Added a --with-galago-svn flag for bypassing the automatic
+	    determination of .tar.gz vs SVN.
+
 Wed Apr 12 00:43:49 PDT 2006  Christian Hammond <chipx86 at chipx86.com>
 
 	* configure.ac:

Modified: trunk/galago-sharp/configure.ac
===================================================================
--- trunk/galago-sharp/configure.ac	2006-04-12 07:44:18 UTC (rev 2714)
+++ trunk/galago-sharp/configure.ac	2006-04-12 07:58:48 UTC (rev 2715)
@@ -148,11 +148,17 @@
 dnl ################################################################
 dnl # Check if we want to use a tarball or svn for updates
 dnl ################################################################
-if test "x$GALAGO_SHARP_DEVEL_VERSION" != "x0"; then
-	use_libgalago_svn=yes;
-else
-	use_libgalago_svn=no;
-fi
+AC_ARG_WITH([galago-svn], AC_HELP_STRING([--with-galago-svn],
+                                         [Build against libgalago SVN]),
+[
+	use_libgalago_svn=yes
+],[
+	if test "x$GALAGO_SHARP_DEVEL_VERSION" != "x0"; then
+		use_libgalago_svn=yes;
+	else
+		use_libgalago_svn=no;
+	fi
+])
 
 AM_CONDITIONAL(USE_LIBGALAGO_SVN, test "x$use_libgalago_svn" = "xyes",
                [Define if using libgalago SVN.])



More information about the galago-commits mailing list