Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
412c1562
Commit
412c1562
authored
Feb 10, 2007
by
Måns Rullgård
Browse files
check for gnu make
Originally committed as revision 7915 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
d5697779
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure
View file @
412c1562
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment