mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-11 13:10:07 +00:00
Fix have_base_pc / have_base_x_pc typo.
2005-08-15 Owen Taylor <otaylor@redhat.com> * configure.in: Fix have_base_pc / have_base_x_pc typo. * gdk/x11/gdkdrawable-x11.c gtk/gtksettings.c: Remove panoxft.h includes. (#313417, James Andrewartha) * configure.in: Add fontconfig to X_PACKAGES, since we use it for FcNameConstant(). (More of #313417)
This commit is contained in:
parent
cbd1435c88
commit
013a0b0f11
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
2005-08-15 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* configure.in: Fix have_base_pc / have_base_x_pc typo.
|
||||
|
||||
* gdk/x11/gdkdrawable-x11.c gtk/gtksettings.c: Remove panoxft.h includes.
|
||||
(#313417, James Andrewartha)
|
||||
|
||||
* configure.in: Add fontconfig to X_PACKAGES, since we use it for
|
||||
FcNameConstant(). (More of #313417)
|
||||
|
||||
2005-08-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkfilechooserdefault.c: When using gtk_dialog_run() for
|
||||
|
@ -1,3 +1,13 @@
|
||||
2005-08-15 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* configure.in: Fix have_base_pc / have_base_x_pc typo.
|
||||
|
||||
* gdk/x11/gdkdrawable-x11.c gtk/gtksettings.c: Remove panoxft.h includes.
|
||||
(#313417, James Andrewartha)
|
||||
|
||||
* configure.in: Add fontconfig to X_PACKAGES, since we use it for
|
||||
FcNameConstant(). (More of #313417)
|
||||
|
||||
2005-08-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkfilechooserdefault.c: When using gtk_dialog_run() for
|
||||
|
@ -1,3 +1,13 @@
|
||||
2005-08-15 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* configure.in: Fix have_base_pc / have_base_x_pc typo.
|
||||
|
||||
* gdk/x11/gdkdrawable-x11.c gtk/gtksettings.c: Remove panoxft.h includes.
|
||||
(#313417, James Andrewartha)
|
||||
|
||||
* configure.in: Add fontconfig to X_PACKAGES, since we use it for
|
||||
FcNameConstant(). (More of #313417)
|
||||
|
||||
2005-08-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkfilechooserdefault.c: When using gtk_dialog_run() for
|
||||
|
17
configure.in
17
configure.in
@ -1023,8 +1023,8 @@ AC_SUBST(GDK_PIXBUF_DEP_CFLAGS)
|
||||
GDK_PIXBUF_XLIB_PACKAGES=
|
||||
GDK_PIXBUF_XLIB_EXTRA_CFLAGS=
|
||||
GDK_PIXBUF_XLIB_EXTRA_LIBS=
|
||||
|
||||
X_PACKAGES=
|
||||
|
||||
X_PACKAGES=fontconfig
|
||||
GDK_EXTRA_LIBS="$GDK_WLIBS"
|
||||
GDK_EXTRA_CFLAGS=
|
||||
|
||||
@ -1033,12 +1033,21 @@ GTK_DEP_PACKAGES_FOR_X=
|
||||
GTK_DEP_LIBS_FOR_X=
|
||||
|
||||
if test "x$gdktarget" = "xx11"; then
|
||||
#
|
||||
# We use fontconfig very peripherally when decoding the default
|
||||
# settings.
|
||||
#
|
||||
if $PKG_CONFIG --exists fontconfig; then : ; else
|
||||
AC_MSG_ERROR([
|
||||
*** fontconfig (http://www.fontconfig.org) is required by the X11 backend.])
|
||||
fi
|
||||
|
||||
#
|
||||
# Check for basic X packages; we use pkg-config if available
|
||||
#
|
||||
if $PKG_CONFIG --exists x11 xext; then
|
||||
have_base_x_pc=true
|
||||
X_PACKAGES="x11 xext"
|
||||
X_PACKAGES="$X_PACKAGES x11 xext"
|
||||
x_libs="`pkg-config --libs x11 xext`"
|
||||
|
||||
# Strip out any .la files that pkg-config might give us (this happens
|
||||
@ -1285,7 +1294,7 @@ if test "x$gdktarget" = "xx11"; then
|
||||
X_PACKAGES="$X_PACKAGES xfixes"
|
||||
fi
|
||||
|
||||
if $have_base_pc ; then
|
||||
if $have_base_x_pc ; then
|
||||
GDK_EXTRA_LIBS="$x_extra_libs"
|
||||
else
|
||||
GDK_EXTRA_LIBS="$X_LIBS $x_extra_libs -lX11 $GDK_EXTRA_LIBS"
|
||||
|
@ -29,8 +29,6 @@
|
||||
#include "gdkx.h"
|
||||
#include "gdkregion-generic.h"
|
||||
|
||||
#include <pango/pangoxft.h>
|
||||
|
||||
#include <cairo-xlib.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
|
@ -29,10 +29,6 @@
|
||||
#include "x11/gdkx.h"
|
||||
#endif
|
||||
|
||||
#if 0
|
||||
#include <pango/pangoxft.h>
|
||||
#endif
|
||||
|
||||
typedef struct _GtkSettingsValuePrivate GtkSettingsValuePrivate;
|
||||
|
||||
typedef enum
|
||||
|
Loading…
Reference in New Issue
Block a user