diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-05-16 01:51:21 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-05-16 01:51:21 +0000 |
commit | f8a33b5ed41e6d266d8432b75a22203c60f30798 (patch) | |
tree | b83cb346de7ec97a8b1f890472c9f1058099ca53 /audio/faac/patches | |
parent | 09d0793cc1bc58b2722648b1510ea204f35e800e (diff) | |
download | pkgsrc-f8a33b5ed41e6d266d8432b75a22203c60f30798.tar.gz |
Initial import of faac-1.24.
FAAC is an AAC audio encoder. FAAC currently supports MPEG-4 LTP,
MAIN and LOW COMPLEXITY object types and MAIN and LOW MPEG-2 object types.
It also supports multichannel and gapless encoding.
Diffstat (limited to 'audio/faac/patches')
-rw-r--r-- | audio/faac/patches/patch-aa | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/audio/faac/patches/patch-aa b/audio/faac/patches/patch-aa new file mode 100644 index 00000000000..5eb93802842 --- /dev/null +++ b/audio/faac/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1.1.1 2004/05/16 01:51:21 xtraeme Exp $ + +--- frontend/main.c.orig 2004-05-16 03:43:03.000000000 +0200 ++++ frontend/main.c 2004-05-16 03:44:22.000000000 +0200 +@@ -39,11 +39,16 @@ + #include <windows.h> + #include <fcntl.h> + #else ++#include <sys/param.h> + #include <signal.h> + #endif + +-#if defined(__unix__) || defined(__APPLE__) ++#if defined(BSD) || defined(__APPLE__) ++#ifdef __NetBSD__ ++#include <time.h> ++#else + #include <sys/time.h> ++#endif + #include <sys/resource.h> + #include <unistd.h> + #endif |