mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Detect freetype properly Make use of above.
* configure.in: Detect freetype properly * modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of above.
This commit is contained in:
parent
7fa13eaf35
commit
89709dd14f
@ -1,3 +1,7 @@
|
||||
2000-12-06 Elliot Lee <sopwith@redhat.com>
|
||||
* configure.in: Detect freetype properly
|
||||
* modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of above.
|
||||
|
||||
2000-12-06 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* gdk/linux-fb/Makefile.am:
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-06 Elliot Lee <sopwith@redhat.com>
|
||||
* configure.in: Detect freetype properly
|
||||
* modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of above.
|
||||
|
||||
2000-12-06 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* gdk/linux-fb/Makefile.am:
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-06 Elliot Lee <sopwith@redhat.com>
|
||||
* configure.in: Detect freetype properly
|
||||
* modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of above.
|
||||
|
||||
2000-12-06 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* gdk/linux-fb/Makefile.am:
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-06 Elliot Lee <sopwith@redhat.com>
|
||||
* configure.in: Detect freetype properly
|
||||
* modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of above.
|
||||
|
||||
2000-12-06 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* gdk/linux-fb/Makefile.am:
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-06 Elliot Lee <sopwith@redhat.com>
|
||||
* configure.in: Detect freetype properly
|
||||
* modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of above.
|
||||
|
||||
2000-12-06 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* gdk/linux-fb/Makefile.am:
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-06 Elliot Lee <sopwith@redhat.com>
|
||||
* configure.in: Detect freetype properly
|
||||
* modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of above.
|
||||
|
||||
2000-12-06 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* gdk/linux-fb/Makefile.am:
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-06 Elliot Lee <sopwith@redhat.com>
|
||||
* configure.in: Detect freetype properly
|
||||
* modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of above.
|
||||
|
||||
2000-12-06 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* gdk/linux-fb/Makefile.am:
|
||||
|
11
configure.in
11
configure.in
@ -534,11 +534,22 @@ if test "x$gdktarget" = "xlinux-fb"; then
|
||||
x_ldflags=
|
||||
x_libs=
|
||||
xinput_progs=
|
||||
|
||||
AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no)
|
||||
if test x$FREETYPE_CONFIG = xno ; then
|
||||
AC_MSG_ERROR([*** freetype-config not found])
|
||||
fi
|
||||
|
||||
FREETYPE_CFLAGS="`$FREETYPE_CONFIG --cflags`"
|
||||
FREETYPE_LIBS="`$FREETYPE_CONFIG --libs`"
|
||||
CFLAGS="$CFLAGS $FREETYPE_CFLAGS"
|
||||
|
||||
AM_CONDITIONAL(USE_LINUX_FB, true)
|
||||
else
|
||||
AM_CONDITIONAL(USE_LINUX_FB, false)
|
||||
fi
|
||||
AC_SUBST(FREETYPE_LIBS)
|
||||
AC_SUBST(FREETYPE_CFLAGS)
|
||||
|
||||
#
|
||||
# Check for Pango
|
||||
|
@ -8,7 +8,7 @@ INCLUDES = @STRIP_BEGIN@ \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/gdk \
|
||||
-I$(top_builddir)/gdk \
|
||||
`freetype-config --cflags`\
|
||||
@FREETYPE_CFLAGS@ \
|
||||
@GTK_DEBUG_FLAGS@ \
|
||||
@GTK_XIM_FLAGS@ \
|
||||
@GTK_LOCALE_FLAGS@ \
|
||||
@ -18,8 +18,8 @@ INCLUDES = @STRIP_BEGIN@ \
|
||||
|
||||
LDFLAGS = @STRIP_BEGIN@ \
|
||||
@GLIB_LIBS@ \
|
||||
@PANGO_CFLAGS@ \
|
||||
`freetype-config --libs` \
|
||||
@PANGO_LIBS@ \
|
||||
@FREETYPE_LIBS@ \
|
||||
-lm \
|
||||
@STRIP_END@
|
||||
|
||||
|
@ -6,7 +6,7 @@ INCLUDES = @STRIP_BEGIN@ \
|
||||
-I$(top_srcdir)/gdk \
|
||||
-I$(top_builddir)/gdk \
|
||||
-I$(top_srcdir)/gdk/linux-fb \
|
||||
`freetype-config --cflags`\
|
||||
@FREETYPE_CFLAGS@ \
|
||||
@GTK_DEBUG_FLAGS@ \
|
||||
@GTK_XIM_FLAGS@ \
|
||||
@GTK_LOCALE_FLAGS@ \
|
||||
@ -17,8 +17,7 @@ INCLUDES = @STRIP_BEGIN@ \
|
||||
LDFLAGS = @STRIP_BEGIN@ \
|
||||
@GLIB_LIBS@ \
|
||||
@PANGO_CFLAGS@ \
|
||||
-L/gnome2/lib \
|
||||
`freetype-config --libs` \
|
||||
@FREETYPE_LIBS@ \
|
||||
-lm \
|
||||
@STRIP_END@
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user