Lukáš Lalinský e8281e1b9f Support for MP4 cover art
CCMAIL:martin.trashbox@gmail.com


git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@1039809 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
2009-10-24 16:55:54 +00:00
..
2009-10-24 16:55:54 +00:00

These are only necessary at build-time when building the entire kdesupport module; they do not need to be installed on a running system.

It can be regenerated by using something like the following from the taglib/taglib directory:

for file in `find -type f -name "*\.h"`;
do 
  dir=`dirname $file`
  strippeddir=`echo $dir | cut -c 3-`
  base=`basename $file`
  if test -z $strippeddir
  then
    echo "#include \"../taglib/$base\"" > ../include/$base
  else
    echo "#include \"../taglib/$strippeddir/$base\"" > ../include/$base
  fi
done