diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-12-27 14:30:28 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-12-27 14:30:28 +0000 |
commit | aff58bf56ef83eb8174400026a5bf8af7f8cc3bd (patch) | |
tree | 988ec00948b2f1548ba6ecfbf290005bca51b29d /misc | |
parent | d84bc803279874f30108bd6567013151b58f8571 (diff) | |
download | xine-lib-aff58bf56ef83eb8174400026a5bf8af7f8cc3bd.tar.gz xine-lib-aff58bf56ef83eb8174400026a5bf8af7f8cc3bd.tar.bz2 |
Add intl support + more logging messages.
CVS patchset: 1308
CVS date: 2001/12/27 14:30:28
Diffstat (limited to 'misc')
-rw-r--r-- | misc/xine-config.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/misc/xine-config.in b/misc/xine-config.in index 13de1a352..97c5afc6b 100644 --- a/misc/xine-config.in +++ b/misc/xine-config.in @@ -20,6 +20,7 @@ Options: [--skindir] [--scriptdir] [--desktopdir] + [--localedir] EOF exit $1 } @@ -72,6 +73,9 @@ while test $# -gt 0; do --desktopdir) echo_desktopdir=yes ;; + --localedir) + echo_localedir=yes + ;; *) usage 1 1>&2 ;; @@ -92,7 +96,7 @@ if test "$echo_cflags" = "yes"; then fi if test "$echo_libs" = "yes"; then - echo -L@libdir@ -lxineutils -lxine @THREAD_LIBS@ + echo -L@libdir@ -lxineutils -lxine @INTLLIBS@ @THREAD_LIBS@ fi if test "$echo_plugindir" = "yes"; then echo "@XINE_PLUGINPATH@" @@ -106,3 +110,6 @@ fi if test "$echo_desktopdir" = "yes"; then echo "@XINE_DESKTOPPATH@" fi +if test "$echo_localedir" = "yes"; then + echo "@XINE_LOCALEPATH@" +fi |