diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-08-09 01:40:46 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-08-09 01:40:46 +0000 |
commit | ceb74567faa000289bae9f4110ae7752d762f597 (patch) | |
tree | a72eb55482a54ffd947b145608e1fbffd5033ff8 /examples | |
parent | 38070eff87be3dd0c592ba53b11a10618b092250 (diff) | |
download | pango-ceb74567faa000289bae9f4110ae7752d762f597.tar.gz |
Some fixes from #90267
Thu Aug 8 21:37:48 2002 Owen Taylor <otaylor@redhat.com>
Some fixes from #90267
* configure.in: Fix case where freetype2 is not in
default include path. Quiet some warnings if
/usr/lib/qt* doesn't exist.
* examples/Makefile.am: Fix problem where if no
Qt was found, -I /include was in the CFLAGS.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index bcbb7d23..73b34e90 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -5,12 +5,13 @@ aliasdir = $(sysconfdir)/pango INCLUDES = -DG_DISABLE_DEPRECATED -I$(top_srcdir) $(QT_INCLUDES) $(GLIB_CFLAGS) $(FONTCONFIG_CFLAGS) $(FREETYPE_CFLAGS) ################################################### -QT_INCLUDES=-I $(QTDIR)/include -QT_LIBS=-L$(QTDIR)/lib -lqt -MOC=$(QTDIR)/bin/moc if BUILD_QT_TEST +QT_INCLUDES=-I$(QTDIR)/include +QT_LIBS=-L$(QTDIR)/lib -lqt +MOC=$(QTDIR)/bin/moc + viewer_programs = pango-viewer BUILT_SOURCES=moc_viewer-qt.cc |