summaryrefslogtreecommitdiffstats
path: root/abs/core/faac
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2010-11-30 23:52:49 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2010-11-30 23:52:49 (GMT)
commitef974fb08972483d6852c9d5b2f23e1d33343b76 (patch)
treefa5aad1563681bf14a0fed3cdf8f599f7e8e853c /abs/core/faac
parentba6da4b6e7eab74dd3dcac947a11361b1b9f1eed (diff)
downloadlinhes_pkgbuild-ef974fb08972483d6852c9d5b2f23e1d33343b76.zip
linhes_pkgbuild-ef974fb08972483d6852c9d5b2f23e1d33343b76.tar.gz
linhes_pkgbuild-ef974fb08972483d6852c9d5b2f23e1d33343b76.tar.bz2
Housekeeping
Diffstat (limited to 'abs/core/faac')
-rw-r--r--abs/core/faac/libmp4v2.patch11
-rw-r--r--abs/core/faac/pipe-output.patch18
2 files changed, 0 insertions, 29 deletions
diff --git a/abs/core/faac/libmp4v2.patch b/abs/core/faac/libmp4v2.patch
deleted file mode 100644
index b2c0165..0000000
--- a/abs/core/faac/libmp4v2.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- faac/configure.in 2006-08-13 14:17:26.000000000 +0000
-+++ faac-patched/configure.in 2007-01-29 19:18:45.000000000 +0000
-@@ -35,6 +35,8 @@
-
- if test x$external_mp4v2 = xyes; then
- AC_MSG_NOTICE([*** Building with external mp4v2 ***])
-+ MY_DEFINE(HAVE_LIBMP4V2)
-+ LIBS="-lmp4v2 $LIBS"
- else
- if test x$WITHMP4V2 = xyes; then
- AC_MSG_NOTICE([*** Building with internal mp4v2 ***])
diff --git a/abs/core/faac/pipe-output.patch b/abs/core/faac/pipe-output.patch
deleted file mode 100644
index a8581f3..0000000
--- a/abs/core/faac/pipe-output.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- faac/frontend/main.c 2004-12-08 11:07:17.000000000 +0000
-+++ faac-patched/frontend/main.c 2007-01-29 19:17:26.000000000 +0000
-@@ -918,7 +918,14 @@
- {
- #endif
- /* open the aac output file */
-- outfile = fopen(aacFileName, "wb");
-+ if (aacFileName[0] == '-')
-+ {
-+ outfile = stdout;
-+ }
-+ else
-+ {
-+ outfile = fopen(aacFileName, "wb");
-+ }
- if (!outfile)
- {
- fprintf(stderr, "Couldn't create output file %s\n", aacFileName);