Complete.Org: Mailing Lists: Archives: freeciv-dev: January 2005:
[Freeciv-Dev] (PR#12013) Don't compile the old GTK+ 1.2 client unless ex
Home

[Freeciv-Dev] (PR#12013) Don't compile the old GTK+ 1.2 client unless ex

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
Subject: [Freeciv-Dev] (PR#12013) Don't compile the old GTK+ 1.2 client unless explicitly requested.
From: "Vasco Alexandre da Silva Costa" <vasc@xxxxxxxxxxxxxx>
Date: Tue, 25 Jan 2005 14:17:22 -0800
Reply-to: bugs@xxxxxxxxxxx

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

Patch attached.

Index: m4/gtk-client.m4
===================================================================
RCS file: /home/freeciv/CVS/freeciv/m4/gtk-client.m4,v
retrieving revision 1.3
diff -u -r1.3 gtk-client.m4
--- m4/gtk-client.m4    31 Jan 2004 17:49:52 -0000      1.3
+++ m4/gtk-client.m4    25 Jan 2005 22:15:39 -0000
@@ -5,7 +5,9 @@
 
 AC_DEFUN([FC_GTK_CLIENT],
 [
-  if test "$client" = gtk || test "$client" = yes ; then
+  if test "$client" = yes ; then
+    AC_MSG_WARN([Not checking for GTK; use --enable-client=gtk to enable])
+  elif test "$client" = gtk ; then
     AM_PATH_GTK(1.2.5,
       [
         AM_PATH_GDK_IMLIB(1.9.2,

[Prev in Thread] Current Thread [Next in Thread]
  • [Freeciv-Dev] (PR#12013) Don't compile the old GTK+ 1.2 client unless explicitly requested., Vasco Alexandre da Silva Costa <=