diff mbox

[1/3] Check for sdl-config before calling it

Message ID 1264594205-14940-1-git-send-email-lool@dooz.org
State New
Headers show

Commit Message

Loïc Minier Jan. 27, 2010, 12:10 p.m. UTC
Check whether sdl-config is available before calling it, otherwise
./configure triggers a warning:
    ./configure: 957: sdl-config: not found

If neither the .pc file not sdl-config are present, disable SDL support.

Signed-off-by: Loïc Minier <lool@dooz.org>
---
 configure |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

Comments

Ben Taylor Jan. 27, 2010, 12:47 p.m. UTC | #1
On Wed, Jan 27, 2010 at 7:10 AM, Loïc Minier <lool@dooz.org> wrote:
> Check whether sdl-config is available before calling it, otherwise
> ./configure triggers a warning:
>    ./configure: 957: sdl-config: not found
>
> If neither the .pc file not sdl-config are present, disable SDL support.
>
> Signed-off-by: Loïc Minier <lool@dooz.org>
> ---
>  configure |    7 ++++++-
>  1 files changed, 6 insertions(+), 1 deletions(-)
>
> diff --git a/configure b/configure
> index 1f6de41..27ab724 100755
> --- a/configure
> +++ b/configure
> @@ -997,9 +997,14 @@ fi
>  if $pkgconfig sdl --modversion >/dev/null 2>&1; then
>   sdlconfig="$pkgconfig sdl"
>   _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
> -else
> +elif which sdl-config >/dev/null 2>&1; then
>   sdlconfig='sdl-config'
>   _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
> +else
> +  if test "$sdl" = "yes" ; then
> +    feature_not_found "sdl"
> +  fi
> +  sdl=no
>  fi
>
>  sdl_too_old=no


Glad to see someone working on Solaris.  Wondering why you're using
the which command, when you just created a "has" function in the other
patch segments, and just replaced all the other instances of which.
Paolo Bonzini Jan. 27, 2010, 1:02 p.m. UTC | #2
> Glad to see someone working on Solaris.  Wondering why you're using
> the which command, when you just created a "has" function in the other
> patch segments, and just replaced all the other instances of which.

This is patch 1/3, patch 2/3 creates "has" and uses it here too.

Paolo
diff mbox

Patch

diff --git a/configure b/configure
index 1f6de41..27ab724 100755
--- a/configure
+++ b/configure
@@ -997,9 +997,14 @@  fi
 if $pkgconfig sdl --modversion >/dev/null 2>&1; then
   sdlconfig="$pkgconfig sdl"
   _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
-else
+elif which sdl-config >/dev/null 2>&1; then
   sdlconfig='sdl-config'
   _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
+else
+  if test "$sdl" = "yes" ; then
+    feature_not_found "sdl"
+  fi
+  sdl=no
 fi
 
 sdl_too_old=no