summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-12-27 14:30:28 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-12-27 14:30:28 +0000
commitaff58bf56ef83eb8174400026a5bf8af7f8cc3bd (patch)
tree988ec00948b2f1548ba6ecfbf290005bca51b29d /misc
parentd84bc803279874f30108bd6567013151b58f8571 (diff)
downloadxine-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.in9
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