diff options
author | Ewald Snel <esnel@users.sourceforge.net> | 2002-12-05 20:06:06 +0000 |
---|---|---|
committer | Ewald Snel <esnel@users.sourceforge.net> | 2002-12-05 20:06:06 +0000 |
commit | 350d8307f1b7b4bdf6a949291f49a7bdb25ffbb5 (patch) | |
tree | 90dc2e9e7d14b310e221f5d39384a286b5f0785c | |
parent | 1db65c3b35b0756439b6e2152eba36126621549d (diff) | |
download | xine-lib-350d8307f1b7b4bdf6a949291f49a7bdb25ffbb5.tar.gz xine-lib-350d8307f1b7b4bdf6a949291f49a7bdb25ffbb5.tar.bz2 |
Library path moved from 'CFLAGS' to 'LIBS' (fixes compiler problems)
CVS patchset: 3427
CVS date: 2002/12/05 20:06:06
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 40c1691fe..9395e24a9 100644 --- a/configure.ac +++ b/configure.ac @@ -385,8 +385,8 @@ dnl dnl xine_check use Xv functions API. dnl if test x$ac_have_xv = "xyes"; then - EXTRA_X_LIBS="$XV_LIBS -lXext" - EXTRA_X_CFLAGS="-L$xv_path" + EXTRA_X_LIBS="-L$xv_path $XV_LIBS -lXext" + EXTRA_X_CFLAGS="" fi AC_SUBST(XV_LIB) AC_SUBST(EXTRA_X_LIBS) |