diff options
author | Tim Janik <timj@imendio.com> | 2005-11-07 15:17:13 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2005-11-07 15:17:13 +0000 |
commit | 30ddf7deedcdf348f10a918a2b4ed45f5f220a54 (patch) | |
tree | d12343b5da6809a8aeabdc2808ca88e2e0b0287f /configure.in | |
parent | 57904c8ce6071210998becb5279100c7f3caef22 (diff) | |
download | gtk+-30ddf7deedcdf348f10a918a2b4ed45f5f220a54.tar.gz |
fixed missing $X_CFLAGS setup in case x11.pc is present.
Mon Nov 7 16:15:16 2005 Tim Janik <timj@imendio.com>
* configure.in: fixed missing $X_CFLAGS setup in case x11.pc is present.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in index f21ca91c1c..069bf63067 100644 --- a/configure.in +++ b/configure.in @@ -1049,6 +1049,7 @@ if test "x$gdktarget" = "xx11"; then have_base_x_pc=true X_PACKAGES="$X_PACKAGES x11 xext" x_libs="`pkg-config --libs x11 xext`" + X_CFLAGS="`pkg-config --cflags x11 xext`" # Strip out any .la files that pkg-config might give us (this happens # with -uninstalled.pc files) |