[MPlayer-cvslog] r31748 - trunk/configure
diego
subversion at mplayerhq.hu
Sat Jul 17 12:28:17 CEST 2010
Author: diego
Date: Sat Jul 17 12:28:17 2010
New Revision: 31748
Log:
Fix LADSPA test variable initialization so it actually works (without stddef.h).
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Sat Jul 17 11:19:39 2010 (r31747)
+++ trunk/configure Sat Jul 17 12:28:17 2010 (r31748)
@@ -6994,7 +6994,7 @@ if test "$_ladspa" = auto ; then
cat > $TMPC <<EOF
#include <ladspa.h>
int main(void) {
-const LADSPA_Descriptor *ld = NULL;
+LADSPA_Descriptor ld = {0};
return 0;
}
EOF
More information about the MPlayer-cvslog
mailing list