提交 412c1562 编写于 作者: M Måns Rullgård

check for gnu make

Originally committed as revision 7915 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 d5697779
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册