[SCM] libav/experimental: check for gnu make

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:56:13 UTC 2013


The following commit has been merged in the experimental branch:
commit 412c1562011ffc687378d5f3f7da4cb3f427ddbb
Author: Måns Rullgård <mans at mansr.com>
Date:   Sat Feb 10 23:07:39 2007 +0000

    check for gnu make
    
    Originally committed as revision 7915 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/configure b/configure
index 530f29d..67b5148 100755
--- a/configure
+++ b/configure
@@ -808,7 +808,6 @@ case $targetos in
     fi ;;
   SunOS)
     dv1394="no"
-    make="gmake"
     FFLDFLAGS=""
     FFSERVERLDFLAGS=""
     SHFLAGS="-shared -Wl,-h,\$@"
@@ -816,13 +815,11 @@ case $targetos in
     ;;
   NetBSD)
     dv1394="no"
-    make="gmake"
     add_extralibs "-lossaudio"
     ;;
   OpenBSD)
     dv1394="no"
     need_memalign="no"
-    make="gmake"
     LIBOBJFLAGS="\$(PIC)"
     LDCONFIG="ldconfig -m \$(shlibdir)"
     SHFLAGS='-shared'
@@ -833,7 +830,6 @@ case $targetos in
     ;;
   FreeBSD)
     dv1394="no"
-    make="gmake"
     need_memalign="no"
     add_cflags "-pthread"
     ;;
@@ -844,7 +840,6 @@ case $targetos in
   BSD/OS)
     dv1394="no"
     extralibs="-lpoll -lgnugetopt -lm"
-    make="gmake"
     strip="strip -d"
     ;;
   Darwin)
@@ -886,7 +881,6 @@ case $targetos in
   IRIX*)
     targetos=IRIX
     ranlib="echo ignoring ranlib"
-    make="gmake"
     ;;
   OS/2)
     TMPE=$TMPE".exe"
@@ -1357,6 +1351,14 @@ if test $cpu != "generic"; then
     esac
 fi
 
+gnu_make(){
+    $1 --version 2>&1 | grep -q GNU
+}
+
+if ! gnu_make $make; then
+    gnu_make gmake && make=gmake || die "GNU make not found."
+fi
+
 # make sure we can execute files in $TMPDIR
 cat >$TMPE 2>>$logfile <<EOF
 #! /bin/sh

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list