[MPlayer-dev-eng] [PATCH] change #undef to #define 0 for 2 macros
Stephen Sheldon
sfsheldo at gmail.com
Sat Jul 23 22:50:24 EEST 2016
I see a lot of warnings for HAVE_LOCALTIME_R and HAVE_GMTIME_R when I
compile mplayer for windows. The attached patch makes them go away.
The macros are only used in libavutil/time_internal.h.
-------------- next part --------------
Index: configure
===================================================================
--- configure (revision 37880)
+++ configure (working copy)
@@ -3490,7 +3490,7 @@
if test "$_gmtime_r" = yes ; then
def_gmtime_r='#define HAVE_GMTIME_R 1'
else
- def_gmtime_r='#undef HAVE_GMTIME_R'
+ def_gmtime_r='#define HAVE_GMTIME_R 0'
fi
echores "$_gmtime_r"
@@ -3500,7 +3500,7 @@
if test "$_localtime_r" = yes ; then
def_localtime_r='#define HAVE_LOCALTIME_R 1'
else
- def_localtime_r='#undef HAVE_LOCALTIME_R'
+ def_localtime_r='#define HAVE_LOCALTIME_R 0'
fi
echores "$_localtime_r"
More information about the MPlayer-dev-eng
mailing list