diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-09-27 21:31:03 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-09-27 21:31:03 +0000 |
commit | 81b60830e8aa59b2d7fddeb48c678ba9df7e13c3 (patch) | |
tree | 9680dabda62c2e372dd097549e080a0b09f35c50 /misc/xine-config.in | |
parent | 7c0dbc610fa7a3325794a0da7590a687e4a1c1f9 (diff) | |
download | xine-lib-81b60830e8aa59b2d7fddeb48c678ba9df7e13c3.tar.gz xine-lib-81b60830e8aa59b2d7fddeb48c678ba9df7e13c3.tar.bz2 |
Add desktop stuff from patches by Miguel Freitas <miguel@cetuc.puc-rio.br>
Fixed xine.m4 installation from Andrew Meredith <andrew@anvil.org>
CVS patchset: 705
CVS date: 2001/09/27 21:31:03
Diffstat (limited to 'misc/xine-config.in')
-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 8879e9fe6..5cc1c4c45 100644 --- a/misc/xine-config.in +++ b/misc/xine-config.in @@ -18,6 +18,7 @@ Options: [--cflags] [--plugindir] [--skindir] + [--desktopdir] EOF exit $1 } @@ -64,6 +65,9 @@ while test $# -gt 0; do --skindir) echo_skindir=yes ;; + --desktopdir) + echo_desktopdir=yes + ;; *) usage 1 1>&2 ;; @@ -92,3 +96,6 @@ fi if test "$echo_skindir" = "yes"; then echo "@XINE_SKINPATH@" fi +if test "$echo_desktopdir" = "yes"; then + echo "@XINE_DESKTOPPATH@" +fi |