view help/help_check.sh @ 35461:b7696c82c72d

Fix various issues with a playlist change. While playing, allow adding files to the list. If the current file and its position in the list don't change, playback continues. With a change of the current file or during stop mode, playback starts with track 1 again. It also fixes a wrong track number after a change which has been reported by Hans-Dieter Kosch, hdkosch kabelbw de.
author ib
date Sun, 02 Dec 2012 00:44:03 +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