summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-04 14:14:28 +0000
committeratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-04 14:14:28 +0000
commita33e4c00b4c25b47a5ff7df6c56ce842a0355b26 (patch)
tree1f27081f435e2092ad992559a28ef524cda4cb10 /configure
parent311e18349a4ea3873841bc9802c8a2b41ff97101 (diff)
downloadmpv-a33e4c00b4c25b47a5ff7df6c56ce842a0355b26.tar.bz2
mpv-a33e4c00b4c25b47a5ff7df6c56ce842a0355b26.tar.xz
Changed to detect sdl in non-standard location, as suggested by Martin Aumueller <lists@reserv.at>.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@993 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 11 insertions, 5 deletions
diff --git a/configure b/configure
index 417d010f5b..1e19508495 100755
--- a/configure
+++ b/configure
@@ -126,7 +126,9 @@ params:
--with-win32libdir=DIR windows codec files
--with-csslibdir=DIR directory contains libcss.so shared library
--with-cssincdir=DIR directory contains libcss header file (css.h)
- (--with-css* only needed, if libCSS autodetect fails)
+ (--with-css* only needed, if libCSS autodetect fails)
+ --with-sdl-config=PATH specify location of sdl-config if it's not in your PATH
+ (example: --with-sdl-cofig=/usr/sdl/bin/sdl-config)
--size-x=SIZE default screen width
--size-y=SIZE default screen height
@@ -176,6 +178,7 @@ else
fi
_skip_cc_check=no
+_sdlconfig='sdl-config'
for ac_option
do
@@ -195,6 +198,9 @@ do
--disable-x11)
_x11=no
;;
+ --with-sdl-config=*)
+ _sdlconfig=`echo $ac_option | cut -d '=' -f 2`
+ ;;
esac
done
@@ -469,9 +475,9 @@ $_cc $TMPC -o $TMPO -lpthread &> /dev/null || \
# Atmosfear: added SDL versioncheck and autodetect; removed warnings.
_sdl=no
-if $_cc $TMPC -o $TMPO -L/usr/lib/ -L/usr/local/lib/ -lSDL -lpthread &> /dev/null ; then
- if test `sdl-config --version | sed s/[=[:punct:]=]//g` -gt 116 ; then
- if test `sdl-config --version | sed s/[=[:punct:]=]//g` -lt 121 ; then
+if $_cc $TMPC -o $TMPO `$_sdlconfig --libs` &> /dev/null ; then
+ if test `$_sdlconfig --version | sed s/[=[:punct:]=]//g` -gt 116 ; then
+ if test `$_sdlconfig --version | sed s/[=[:punct:]=]//g` -lt 121 ; then
_sdlbuggy='#define BUGGY_SDL'
else
_sdlbuggy='#undef BUGGY_SDL'
@@ -894,7 +900,7 @@ if [ $_xv = yes ]; then
fi
if [ $_sdl = yes ]; then
- _sdllib='-lSDL -lpthread'
+ _sdllib=`$_sdlconfig --libs`
fi
if [ $_dga = yes ]; then