Mercurial > mplayer.hg
view help/help_check.sh @ 35652:f6c00eacd816
Add wsMapWait().
This waits for a map notify event which is required in order to paint
into the window.
Remove the waiting loop in interface.c and set a corresponding property
for the video window which, now, will regard vo_keepaspect.
This also closes Bugzilla #1357.
author | ib |
---|---|
date | Tue, 15 Jan 2013 11:54:22 +0000 |
parents | 4df5cb727be4 |
children | cb9975cda4bc |
line wrap: on
line source
#!/bin/sh # Check help message header files. CHECK=checkhelp trap "rm -f ${CHECK}.c ${CHECK}.o" EXIT CC=$1 shift for h in "$@"; do cat <<EOF > ${CHECK}.c #include <inttypes.h> #include <string.h> #include "config.h" #include "$h" void $CHECK () { EOF sed -n "s:^[ \t]*#define[ \t]\+\([0-9A-Za-z_]\+\)[ \t].*:strdup(\1);:p" "$h" >> ${CHECK}.c echo "}" >> ${CHECK}.c $CC -Werror -c -o ${CHECK}.o ${CHECK}.c || exit done