pkgsrc/audio/daapd/patches/patch-ag
marino d47a7f3cbd audio/daapd: Fix DragonFly breakage
To allow this package to build on DragonFly:
1) Fix bad #elif
2) Add <string.h> for DragonFly
This shouldn't affect the binary package for other platforms, and it's
never built on DragonFly, so no PKGREVISION bump required.
2011-11-20 17:46:34 +00:00

13 lines
338 B
Text

$NetBSD: patch-ag,v 1.1 2011/11/20 17:46:34 marino Exp $
--- daaplib/include/daap/basic.h.orig 2011-11-20 17:12:14.236503000 +0000
+++ daaplib/include/daap/basic.h
@@ -53,7 +53,7 @@
typedef int32_t s32;
typedef int16_t s16;
typedef int8_t s8;
- #elif
+ #else
#error "uh - no idea what the int types could be!"
#endif