You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
319 B
23 lines
319 B
#! /bin/sh
|
|
|
|
# Add <vlc_common.h> before most headers
|
|
# from old toolbox
|
|
|
|
# Clean env
|
|
LC_ALL=C
|
|
export LC_ALL
|
|
LANG=C
|
|
export LANG
|
|
|
|
if test "$1" = "" ; then
|
|
exit 0
|
|
fi
|
|
|
|
## Add includes to help doxygen
|
|
case "$1" in
|
|
*/vlc_common.h|*/include/vlc/*);;
|
|
*/include/*.h) echo "#include <vlc_common.h>" ;;
|
|
esac
|
|
cat $1
|
|
exit 0
|
|
|
|
|