diff options
author | Stephen Torri <storri@users.sourceforge.net> | 2002-09-25 01:54:26 +0000 |
---|---|---|
committer | Stephen Torri <storri@users.sourceforge.net> | 2002-09-25 01:54:26 +0000 |
commit | b7d4ecaa6df1ddbbd2e4d61cf60b9003177c0664 (patch) | |
tree | 416922aa71c78e5b2a32698a5a747a2cb83340f8 /misc | |
parent | c577573afd619b04e2680b0577919e63194af278 (diff) | |
download | xine-lib-b7d4ecaa6df1ddbbd2e4d61cf60b9003177c0664.tar.gz xine-lib-b7d4ecaa6df1ddbbd2e4d61cf60b9003177c0664.tar.bz2 |
Added ability for xine-config.in to determine location of xine.m4
by adding -I $(prefix)/share/aclocal to the XINE_ACFLAGS.
CVS patchset: 2746
CVS date: 2002/09/25 01:54:26
Diffstat (limited to 'misc')
-rw-r--r-- | misc/xine-config.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/misc/xine-config.in b/misc/xine-config.in index 78006f158..c1ac67532 100644 --- a/misc/xine-config.in +++ b/misc/xine-config.in @@ -15,6 +15,7 @@ Options: [--exec-prefix[=DIR]] [--version] [--libs] + [--acflags] [--cflags] [--plugindir] [--datadir] @@ -56,6 +57,9 @@ while test $# -gt 0; do --version) echo @XINE_MAJOR@.@XINE_MINOR@.@XINE_SUB@ ;; + --acflags) + echo_acflags=yes + ;; --cflags) echo_cflags=yes ;; @@ -95,6 +99,10 @@ if test "$echo_exec_prefix" = "yes"; then echo $exec_prefix fi +if test "$echo_acflags" = "yes"; then + echo "@XINE_ACFLAGS@" +fi + if test "$echo_cflags" = "yes"; then echo -I@includedir@ @THREAD_CFLAGS@ fi |