diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-02-06 08:16:35 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-02-06 08:16:35 +0800 |
commit | 391196385a1c5702d93697eace05fc416ae93f02 (patch) | |
tree | 8fb4151411235981ed9b619c7060e51bdafda2b2 /doc | |
parent | 2edc02176220d96d6386c500afaf4a680dc3a3b9 (diff) | |
download | gsoc2013-epiphany-391196385a1c5702d93697eace05fc416ae93f02.tar.gz gsoc2013-epiphany-391196385a1c5702d93697eace05fc416ae93f02.tar.zst gsoc2013-epiphany-391196385a1c5702d93697eace05fc416ae93f02.zip |
Fix xulrunner detection logic.
2006-02-06 Christian Persch <chpe@cvs.gnome.org>
* m4/gecko.m4:
Fix xulrunner detection logic.
* configure.ac:
A po/Makevars:
* src/Makefile.am:
* doc/reference/Makefile.am:
Remove AM_GLIB_GNU_GETTEXT, use plain AM_GNU_GETTEXT.
* data/glade/Makefile.am:
Fix distcheck with certs manager disabled.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/reference/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/reference/Makefile.am b/doc/reference/Makefile.am index 81d5b7bec..370b0f04f 100644 --- a/doc/reference/Makefile.am +++ b/doc/reference/Makefile.am @@ -154,7 +154,8 @@ GTKDOC_CFLAGS = -I$(top_srcdir)/src \ -I$(top_builddir)/lib/egg \ $(DEPENDENCIES_CFLAGS) \ $(GECKO_CFLAGS) \ - $(DBUS_CFLAGS) + $(DBUS_CFLAGS) \ + $(INCINTL) GTKDOC_LIBS = \ $(top_builddir)/src/libephymain.la \ @@ -167,8 +168,8 @@ GTKDOC_LIBS = \ $(top_builddir)/lib/egg/libegg.la \ $(GECKO_LIBS) \ $(DEPENDENCIES_LIBS) \ - $(DBUS_LIBS) - $(INTLLIBS) + $(DBUS_LIBS) \ + $(LIBINTL) if ENABLE_PYTHON GTKDOC_LIBS += \ |