diff options
-rw-r--r-- | misc/xine-config.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/misc/xine-config.in b/misc/xine-config.in index f3652b1b5..d62e94fa9 100644 --- a/misc/xine-config.in +++ b/misc/xine-config.in @@ -18,6 +18,7 @@ Options: [--cflags] [--plugindir] [--skindir] + [--logofile] [--scriptdir] [--desktopdir] [--localedir] @@ -67,6 +68,9 @@ while test $# -gt 0; do --skindir) echo_skindir=yes ;; + --logofile) + echo_logofile=yes + ;; --scriptdir) echo_scriptdir=yes ;; @@ -104,6 +108,9 @@ fi if test "$echo_skindir" = "yes"; then echo "@XINE_SKINPATH@" fi +if test "$echo_logofile" = "yes"; then + echo "@XINE_SKINPATH@/xine_logo.mpv" +fi if test "$echo_scriptdir" = "yes"; then echo "@XINE_SCRIPTPATH@" fi |