0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 03:52:22 +02:00

configure: Fix LADSPA test variable initialization

Don't use NULL (which would required stddef.h).

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31748 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-07-17 10:28:17 +00:00 committed by Uoti Urpala
parent a69950df91
commit fea2d4dd45

2
configure vendored
View File

@ -6622,7 +6622,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