diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2004-06-05 16:06:12 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2004-06-05 16:06:12 +0000 |
commit | 6613d192c8d75188e97c6e078e77e504c90c4ce9 (patch) | |
tree | 9bec2c8f95c517794d3528bb942c3a4fe178376f /misc | |
parent | 5cc73fecf51bb01721518d0924ff1074068df731 (diff) | |
download | xine-lib-6613d192c8d75188e97c6e078e77e504c90c4ce9.tar.gz xine-lib-6613d192c8d75188e97c6e078e77e504c90c4ce9.tar.bz2 |
From: Daniel Mack
Mac OSX video out support.
patch to configure.ac to follow
CVS patchset: 6642
CVS date: 2004/06/05 16:06:12
Diffstat (limited to 'misc')
-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 a1ddb013c..d78125b04 100644 --- a/misc/xine-config.in +++ b/misc/xine-config.in @@ -21,6 +21,7 @@ Options: [--datadir] [--scriptdir] [--localedir] + [--objcflags] EOF exit $1 } @@ -76,6 +77,9 @@ while test $# -gt 0; do --localedir) echo_localedir=yes ;; + --objcflags) + echo_objcflags=yes + ;; *) usage 1 1>&2 ;; @@ -114,3 +118,6 @@ fi if test "$echo_localedir" = "yes"; then echo "@XINE_LOCALEPATH@" fi +if test "$echo_objcflags" = "yes"; then + echo "@OBJCFLAGS@" +fi |