Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
412c1562
Commit
412c1562
authored
Feb 10, 2007
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
check for gnu make
Originally committed as revision 7915 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
d5697779
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
configure
configure
+8
-6
No files found.
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