diff options
author | schwarz <schwarz> | 2006-04-20 10:55:35 +0000 |
---|---|---|
committer | schwarz <schwarz> | 2006-04-20 10:55:35 +0000 |
commit | 76c8040785369c46ec837130361502cbd2f310ae (patch) | |
tree | 75150955bbbdb1de0bb058c621e88a9ed8d3811a | |
parent | 4dca35a458b49bc74604cec3e16d3d02a9a38701 (diff) | |
download | pkgsrc-76c8040785369c46ec837130361502cbd2f310ae.tar.gz |
added a hack that overcomes a problem with the IRIX 5.3 header files
-rw-r--r-- | net/openslp/hacks.mk | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/net/openslp/hacks.mk b/net/openslp/hacks.mk new file mode 100644 index 00000000000..86d0af577b8 --- /dev/null +++ b/net/openslp/hacks.mk @@ -0,0 +1,17 @@ +# $NetBSD: hacks.mk,v 1.1 2006/04/20 10:55:35 schwarz Exp $ + +.if !defined(LIBEXIF_HACKS_MK) +LIBEXIF_HACKS_MK= # defined + +### [Fri Dec 30 21:00:59 CET 2005 : schwarz] +### make sys/types.h not conflict with inttypes.h +### (issue is specific to IRIX 5.3) +### +.if ${LOWER_OPSYS} == "irix5.3" +PKG_HACKS+= sys_types_h-inttypes_h-conflict +post-wrapper: + ${MKDIR} ${BUILDLINK_DIR}/include/sys && ${GREP} -v '^typedef.*[^u_]int[12368]*_t;' /usr/include/sys/types.h > ${BUILDLINK_DIR}/include/sys/types.h +# should match int8_t, int16_t, and int32_t (only) +.endif + +.endif |