mirror of https://github.com/mpv-player/mpv
revert -std=gnu99 usage, -D_GNU_SOURCE is enough for lrintf support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16211 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
bf4981f9ad
commit
851f06e138
|
@ -2403,26 +2403,13 @@ if test "$_posix4" = yes ; then
|
||||||
fi
|
fi
|
||||||
echores "$_posix4"
|
echores "$_posix4"
|
||||||
|
|
||||||
echocheck "-std=gnu99"
|
|
||||||
cat > $TMPC << EOF
|
|
||||||
int main(void) { return 0; }
|
|
||||||
EOF
|
|
||||||
_gnu99=no
|
|
||||||
cc_check -std=gnu99 && _gnu99=yes
|
|
||||||
if test "$_gnu99" = yes ; then
|
|
||||||
_opt_gnu99="-std=gnu99"
|
|
||||||
else
|
|
||||||
_opt_gnu99=""
|
|
||||||
fi
|
|
||||||
echores "$_gnu99"
|
|
||||||
|
|
||||||
echocheck "lrintf"
|
echocheck "lrintf"
|
||||||
cat > $TMPC << EOF
|
cat > $TMPC << EOF
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
int main(void) { long (*foo)(float); foo = lrintf; (void)(*foo)(0.0); return 0; }
|
int main(void) { long (*foo)(float); foo = lrintf; (void)(*foo)(0.0); return 0; }
|
||||||
EOF
|
EOF
|
||||||
_lrintf=no
|
_lrintf=no
|
||||||
cc_check $_opt_gnu99 -D_GNU_SOURCE $_ld_lm && _lrintf=yes
|
cc_check -D_GNU_SOURCE $_ld_lm && _lrintf=yes
|
||||||
if test "$_lrintf" = yes ; then
|
if test "$_lrintf" = yes ; then
|
||||||
_def_lrintf="#define HAVE_LRINTF 1"
|
_def_lrintf="#define HAVE_LRINTF 1"
|
||||||
else
|
else
|
||||||
|
@ -5524,7 +5511,7 @@ EOF
|
||||||
fi
|
fi
|
||||||
# internal faad: check if our dear gcc is able to compile it...
|
# internal faad: check if our dear gcc is able to compile it...
|
||||||
cp "`pwd`/libfaad2/cfft.c" $TMPC
|
cp "`pwd`/libfaad2/cfft.c" $TMPC
|
||||||
if ( cc_check -c -O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer $_opt_gnu99 -D_GNU_SOURCE $_inc_faad ); then
|
if ( cc_check -c -O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer -D_GNU_SOURCE $_inc_faad ); then
|
||||||
_faad_internal=yes
|
_faad_internal=yes
|
||||||
else
|
else
|
||||||
_faad_internal="no (broken gcc)"
|
_faad_internal="no (broken gcc)"
|
||||||
|
@ -6929,7 +6916,7 @@ RANLIB = $_ranlib
|
||||||
INSTALL = $_install
|
INSTALL = $_install
|
||||||
# OPTFLAGS = -O4 $_profile $_debug $_march $_mcpu $_pipe -fomit-frame-pointer -ffast-math
|
# OPTFLAGS = -O4 $_profile $_debug $_march $_mcpu $_pipe -fomit-frame-pointer -ffast-math
|
||||||
EXTRA_INC = $_inc_extra $_inc_gtk
|
EXTRA_INC = $_inc_extra $_inc_gtk
|
||||||
OPTFLAGS = -I../libvo -I../../libvo $_inc_x11 $CFLAGS \$(EXTRA_INC) $_opt_gnu99
|
OPTFLAGS = -I../libvo -I../../libvo $_inc_x11 $CFLAGS \$(EXTRA_INC)
|
||||||
STRIPBINARIES = $_stripbinaries
|
STRIPBINARIES = $_stripbinaries
|
||||||
CHARSET = $_charset
|
CHARSET = $_charset
|
||||||
HELP_FILE = $_mp_help
|
HELP_FILE = $_mp_help
|
||||||
|
|
Loading…
Reference in New Issue