diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2004-03-09 20:27:51 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2004-03-09 20:27:51 +0000 |
commit | 02602525de8960f31f6c919c67923b6957cdb443 (patch) | |
tree | 752381bdcbf64bb56e515595198544eb93570f7e /audio/jack/files/patch-jack.h | |
parent | o) fix annoying message when killall didn't find any lost slaves (diff) |
Add JACK an audio server
Requested by: epilogue@allstream.net
Notes
Notes:
svn path=/head/; revision=103465
Diffstat (limited to 'audio/jack/files/patch-jack.h')
-rw-r--r-- | audio/jack/files/patch-jack.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/audio/jack/files/patch-jack.h b/audio/jack/files/patch-jack.h new file mode 100644 index 000000000000..74a2c0732793 --- /dev/null +++ b/audio/jack/files/patch-jack.h @@ -0,0 +1,17 @@ +--- jack/types.h.org Tue Mar 9 20:12:17 2004 ++++ jack/types.h Tue Mar 9 20:12:22 2004 +@@ -22,6 +22,14 @@ + #define __jack_types_h__ + + #include <inttypes.h> ++#ifndef PRIu32 ++#define PRIi32 "i" /* int32_t */ ++#define PRIu32 "u" /* uint32_t */ ++#define PRIu64 "llu" /* uint64_t */ ++#define SCNu64 "llu" /* uint64_t */ ++#define PRId32 "d" /* int32_t */ ++#define PRIx64 "llx" /* uint64_t */ ++#endif + + typedef char shm_name_t[32]; + typedef int32_t jack_shmsize_t; |