mirror of
https://github.com/libretro/RetroArch
synced 2025-04-04 04:20:29 +00:00
Update build system to check for minimum SDL version.
This commit is contained in:
parent
948de95799
commit
d37bd214e6
@ -16,7 +16,7 @@ check_lib RSOUND -lrsound rsd_init
|
|||||||
check_lib ROAR -lroar roar_vs_new
|
check_lib ROAR -lroar roar_vs_new
|
||||||
check_lib JACK -ljack jack_client_open
|
check_lib JACK -ljack jack_client_open
|
||||||
|
|
||||||
check_pkgconf SDL sdl
|
check_pkgconf SDL sdl 1.2.10
|
||||||
check_critical SDL "Cannot find SDL library."
|
check_critical SDL "Cannot find SDL library."
|
||||||
|
|
||||||
check_lib CG -lCg cgCreateContext
|
check_lib CG -lCg cgCreateContext
|
||||||
|
@ -106,14 +106,15 @@ check_pkgconf()
|
|||||||
eval tmpval=\$$tmpval
|
eval tmpval=\$$tmpval
|
||||||
[ "$tmpval" = "no" ] && return 0
|
[ "$tmpval" = "no" ] && return 0
|
||||||
|
|
||||||
echo -n "Checking presence of package $2 ... "
|
echo -n "Checking presence of package $2"
|
||||||
eval HAVE_$1=no
|
eval HAVE_$1=no
|
||||||
eval $1_CFLAGS=""
|
eval $1_CFLAGS=""
|
||||||
eval $1_LIBS=""
|
eval $1_LIBS=""
|
||||||
answer=no
|
answer=no
|
||||||
minver=0.0
|
minver=0.0
|
||||||
[ ! -z $3 ] && minver=$3
|
[ ! -z $3 ] && minver=$3 && echo -n " with minimum version $minver"
|
||||||
pkg-config --atleast-version=$minver --exists "$2" && eval HAVE_$1=yes && eval $1_CFLAGS='"`pkg-config $2 --cflags`"' && eval $1_LIBS='"`pkg-config $2 --libs`"' && answer=yes
|
echo -n " ... "
|
||||||
|
pkg-config --atleast-version=$minver "$2" && eval HAVE_$1=yes && eval $1_CFLAGS='"`pkg-config $2 --cflags`"' && eval $1_LIBS='"`pkg-config $2 --libs`"' && answer=yes
|
||||||
echo $answer
|
echo $answer
|
||||||
|
|
||||||
PKG_CONF_USED="$PKG_CONF_USED $1"
|
PKG_CONF_USED="$PKG_CONF_USED $1"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user