diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-09-10 14:31:43 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-09-10 14:31:43 +0000 |
commit | af3b0d2c3e72cd4adafc9af71fffe430c18fe0f5 (patch) | |
tree | 5687c291123e94a7f1552c1b0a7352a340840253 | |
parent | f5a4d8bbe8f274b68fdd94bbe09f996d47fa2b9c (diff) | |
download | xine-lib-af3b0d2c3e72cd4adafc9af71fffe430c18fe0f5.tar.gz xine-lib-af3b0d2c3e72cd4adafc9af71fffe430c18fe0f5.tar.bz2 |
We need a way to know which is the official logo.
CVS patchset: 2647
CVS date: 2002/09/10 14:31:43
-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 |