]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Tweak the GTK Makefile to build with GTK2 by default, while leaving
authorSimon Tatham <anakin@pobox.com>
Thu, 25 Jan 2007 19:44:12 +0000 (19:44 +0000)
committerSimon Tatham <anakin@pobox.com>
Thu, 25 Jan 2007 19:44:12 +0000 (19:44 +0000)
a means (`make GTK_CONFIG=gtk-config') of falling back to GTK1.

[originally from svn r7159]

mkfiles.pl

index ca51b765337b5daa43c2d1a2920574ceb7e404d5..3cc580cb95fb71628f99c1628121009d5b0715ea 100755 (executable)
@@ -924,12 +924,18 @@ if (defined $makefiles{'gtk'}) {
     "# You can define this path to point at your tools if you need to\n".
     "# TOOLPATH = /opt/gcc/bin\n".
     "CC = \$(TOOLPATH)cc\n".
+    "# You can manually set this to `gtk-config' or `pkg-config gtk+-1.2'\n".
+    "# (depending on what works on your system) if you want to enforce\n".
+    "# building with GTK 1.2, or you can set it to `pkg-config gtk+-2.0'\n".
+    "# if you want to enforce 2.0. The default is to try 2.0 and fall back\n".
+    "# to 1.2 if it isn't found.\n".
+    "GTK_CONFIG = sh -c 'pkg-config gtk+-2.0 \$\$0 2>/dev/null || gtk-config \$\$0'\n".
     "\n".
     &splitline("CFLAGS = -O2 -Wall -Werror -g " .
               (join " ", map {"-I$dirpfx$_"} @srcdirs) .
-              " `gtk-config --cflags`").
+              " `\$(GTK_CONFIG) --cflags`").
                 " -D _FILE_OFFSET_BITS=64\n".
-    "XLDFLAGS = `gtk-config --libs`\n".
+    "XLDFLAGS = `\$(GTK_CONFIG) --libs`\n".
     "ULDFLAGS =#\n".
     "INSTALL=install\n",
     "INSTALL_PROGRAM=\$(INSTALL)\n",