PBProject -> Xcode

This commit is contained in:
AJ Kelly
2010-05-12 12:21:02 -05:00
parent 42e2d09d90
commit 6f98b30294
45 changed files with 0 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/sh
for i in ffmpeg/libavcodec/ppc/*.[hc] \
ffmpeg/libswscale/yuv2rgb_altivec.c; do
sed -i '' -e '1i\
#ifdef __ppc__
$a\
#endif' $i
done
for i in ffmpeg/libavcodec/i386/*.[hc]; do
sed -i '' -e '1i\
#ifdef __i386__
$a\
#endif' $i
done