diff options
author | Andre Pang <athp@users.sourceforge.net> | 2004-11-26 06:00:32 +0000 |
---|---|---|
committer | Andre Pang <athp@users.sourceforge.net> | 2004-11-26 06:00:32 +0000 |
commit | 5c31692730e5e0a129653492ab1e79956aeb576b (patch) | |
tree | a53bcf8abb70f2ad42721e150bf525fca601461b | |
parent | 7a3e00bd3b09531cf1bf749013312b38c5704606 (diff) | |
download | xine-lib-5c31692730e5e0a129653492ab1e79956aeb576b.tar.gz xine-lib-5c31692730e5e0a129653492ab1e79956aeb576b.tar.bz2 |
Don't make xine engine depend on internal libintl if ./configure'd --without-included-gettext
CVS patchset: 7165
CVS date: 2004/11/26 06:00:32
-rw-r--r-- | src/xine-engine/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xine-engine/Makefile.am b/src/xine-engine/Makefile.am index ede3216a7..9ae4363ce 100644 --- a/src/xine-engine/Makefile.am +++ b/src/xine-engine/Makefile.am @@ -30,8 +30,10 @@ libxine_la_SOURCES = xine.c metronom.c configfile.c buffer.c \ # FIXME: these are currently unused: EXTRA_DIST = lrb.c lrb.h accel_xvmc.h - -libxine_la_DEPENDENCIES = @INTLLIBS@ $(XINEUTILS_LIB) $(zlib_dep) \ +if INCLUDED_INTL +INCLUDED_INTLLIBS = @INTLLIBS@ +endif +libxine_la_DEPENDENCIES = $(INCLUDED_INTLLIBS) $(XINEUTILS_LIB) $(zlib_dep) \ $(dirent_lib) $(pthread_dep) $(LIBXINEPOSIX) libxine_la_LIBADD = $(THREAD_LIBS) $(DYNAMIC_LD_LIBS) @INTLLIBS@ $(ZLIB_LIBS) \ -lm $(XINEUTILS_LIB) $(LIBICONV) $(FT2_LIBS) \ |