summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/xine-config.in15
1 files changed, 14 insertions, 1 deletions
diff --git a/misc/xine-config.in b/misc/xine-config.in
index 4081407dd..019f9b2b2 100644
--- a/misc/xine-config.in
+++ b/misc/xine-config.in
@@ -16,6 +16,8 @@ Options:
[--version]
[--libs]
[--cflags]
+ [--plugindir]
+ [--skindir]
EOF
exit $1
}
@@ -56,6 +58,12 @@ while test $# -gt 0; do
--libs)
echo_libs=yes
;;
+ --plugindir)
+ echo_plugindir=yes
+ ;;
+ --skindir)
+ echo_skindir=yes
+ ;;
*)
usage 1 1>&2
;;
@@ -78,4 +86,9 @@ fi
if test "$echo_libs" = "yes"; then
echo -L@libdir@ -lxine
fi
-
+if test "$echo_plugindir" = "yes"; then
+ echo "@XINE_PLUGINPATH@"
+fi
+if test "$echo_skindir" = "yes"; then
+ echo "@XINE_SKINPATH@"
+fi