Complete.Org: Mailing Lists: Archives: freeciv-dev: February 2005:
[Freeciv-Dev] (PR#12279) daily snapshot is broken
Home

[Freeciv-Dev] (PR#12279) daily snapshot is broken

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
Subject: [Freeciv-Dev] (PR#12279) daily snapshot is broken
From: "Jason Short" <jdorje@xxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 17 Feb 2005 08:57:03 -0800
Reply-to: bugs@xxxxxxxxxxx

<URL: http://bugs.freeciv.org/Ticket/Display.html?id=12279 >

Since Feb 3rd.  I think this is because Vasco bumped the min-version of 
GTK up to 2.4 (freeciv.org has 2.2), after we'd already removed gui-xaw 
and gui-gtk from automatic detection.

 From mklatest.log:

   22:34:27 Building distribution tarball.
   22:36:38 Autogen run failed.

Of course no GTK is needed to run make dist.  The configure line already 
has a --disable-client but this should be added to autogen.sh.  I think.

-jason

? output
Index: mklatest
===================================================================
RCS file: /home/freeciv/CVS/admin_bin/mklatest,v
retrieving revision 1.51
diff -u -r1.51 mklatest
--- mklatest    22 Dec 2004 17:42:12 -0000      1.51
+++ mklatest    17 Feb 2005 16:54:53 -0000
@@ -191,7 +191,8 @@
 log "Building distribution tarball."
 cd freeciv
 rm -r freeciv-*
-./autogen.sh >/dev/null || error "Autogen run failed."
+./autogen.sh --disable-client --disable-server >/dev/null \
+    || error "Autogen run failed."
 make dist >/dev/null 2>&1 || error "Make dist failed."
 
 # Rename the freeciv-<version> directory as freeciv-cvs-$TODAY.  Since

[Prev in Thread] Current Thread [Next in Thread]
  • [Freeciv-Dev] (PR#12279) daily snapshot is broken, Jason Short <=