diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-03-02 23:29:02 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-03-02 23:29:02 +0000 |
commit | 15f8a55fbac4ca6c79654fbd85e934cae90cba48 (patch) | |
tree | f074cbc30e7bd0cc8478011eb9192ce53a6ed6f2 /gtk/Makefile.am | |
parent | 93d74e2574f51386016b511054ef24130b07c89d (diff) | |
download | gtk+-15f8a55fbac4ca6c79654fbd85e934cae90cba48.tar.gz |
Add a --enable-explicit-deps option to control whether dependency
Fri Mar 1 00:46:49 2002 Owen Taylor <otaylor@redhat.com>
* configure.in: Add a --enable-explicit-deps option to control
whether dependency libraries are written into .la files and .pc
files. Default is auto: if static libraries are off and shlib
dependencies are found, don't write deps.
* gdk/Makefile.am gtk/Makefile.am sanitize-la.sh: Shell script
used to strip dependencies out of .la files.
* Makefile.am: Add a slightly modified distcheck rule that passes
--enable-gtk-doc to the configure inside.
(So that 'make dist' succeeds inside.)
* configure.in: If pango was compiled with
--disable-explicit-deps, then repeat the checks for X and
freetype ourselves so we don't depend on linking to libraries
that pango doesn't reveal in the link line. Add some more paranoia
for whether what we detect ourselves matches what Pango backends
we found.
Diffstat (limited to 'gtk/Makefile.am')
-rw-r--r-- | gtk/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am index 8c52c0f858..13666a29cd 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -569,6 +569,11 @@ libgtk_target_ldflags = $(gtk_win32_symbols) -lwsock32 endif EXTRA_LTLIBRARIES = libgtk-x11-1.3.la libgtk-linux-fb-1.3.la libgtk-win32-1.3.la +if DISABLE_EXPLICIT_DEPS +install-exec-local: + $(SHELL) $(top_srcdir)/sanitize-la.sh $(DESTDIR)$(libdir)/$(gtktargetlib) +endif + # Install a RC file for the default GTK+ theme, and key themes install-data-local: install-ms-lib install-libtool-import-lib $(mkinstalldirs) $(DESTDIR)$(datadir)/themes/Default/gtk-2.0 |