summaryrefslogtreecommitdiff
path: root/gtk-config.in
diff options
context:
space:
mode:
authorOwen Taylor <owt1@cornell.edu>1998-04-06 04:31:15 +0000
committerOwen Taylor <otaylor@src.gnome.org>1998-04-06 04:31:15 +0000
commit61ca241924aeb563c8a86206581af7f151504963 (patch)
treeb63d5399f6fb5421fbc6a65795b77b2b7cc55eb7 /gtk-config.in
parent79d880ccb79d98689769fa6556f40989802d05a9 (diff)
downloadgtk+-61ca241924aeb563c8a86206581af7f151504963.tar.gz
Make tab key move in reading order (left-to-right top to bottom) - which
Mon Apr 6 00:28:28 1998 Owen Taylor <owt1@cornell.edu> * gtk/gtkcontainer.c (gtk_container_focus_tab): Make tab key move in reading order (left-to-right top to bottom) - which might have been the original intended behavior modulo sorting bugs. * gtk-config.in: Never output -I/usr/include from --cflags
Diffstat (limited to 'gtk-config.in')
-rw-r--r--gtk-config.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk-config.in b/gtk-config.in
index eb191f2e07..029c7be2e9 100644
--- a/gtk-config.in
+++ b/gtk-config.in
@@ -39,11 +39,12 @@ while test $# -gt 0; do
echo @GTK_VERSION@
;;
--cflags)
- libdir=@libdir@
- echo -I$libdir/glib/include -I@includedir@ @x_cflags@
+ if test @includedir@ != /usr/include ; then
+ includes=-I@includedir@
+ fi
+ echo -I@libdir@/glib/include $includes @x_cflags@
;;
--libs)
- libdir=@libdir@
echo -L@libdir@ @x_ldflags@ -lgtk -lgdk -lglib @x_libs@ -lm
;;
*)