diff options
author | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2006-10-06 19:01:59 +0000 |
---|---|---|
committer | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2006-10-06 19:01:59 +0000 |
commit | e910cff1d282b557e8ddcb10ce1d5796769cc3b6 (patch) | |
tree | 1f123eb1eea88dc777abe3502c1f5c56ccd33c58 /devel/libzrtpcpp | |
parent | 32d243feb23544b031c1719180f42a6bd5f235be (diff) | |
download | ports-e910cff1d282b557e8ddcb10ce1d5796769cc3b6.tar.gz ports-e910cff1d282b557e8ddcb10ce1d5796769cc3b6.zip |
Notes
Diffstat (limited to 'devel/libzrtpcpp')
-rw-r--r-- | devel/libzrtpcpp/Makefile | 5 | ||||
-rw-r--r-- | devel/libzrtpcpp/files/patch-src-libzrtpcpp_ZrtpPacketBase.h | 10 |
2 files changed, 14 insertions, 1 deletions
diff --git a/devel/libzrtpcpp/Makefile b/devel/libzrtpcpp/Makefile index b1581e430e60..8e94fe55eff0 100644 --- a/devel/libzrtpcpp/Makefile +++ b/devel/libzrtpcpp/Makefile @@ -7,6 +7,7 @@ PORTNAME= libzrtpcpp PORTVERSION= 0.9.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR=ccrtp @@ -30,6 +31,8 @@ USE_LDCONFIG= yes post-patch: @cd ${WRKSRC}/src && \ - ${FIND} * -type f -exec ${REINPLACE_CMD} -i "" -e "s|<malloc.h>|<stdlib.h>|g" "{}" \; + ${FIND} * -type f -exec ${REINPLACE_CMD} -i "" -e "s|<malloc.h>|<stdlib.h>|g" "{}" \; && \ + ${FIND} * -type f -exec ${REINPLACE_CMD} -i "" -e "s|<stdint.h>|<inttypes.h>|g" "{}" \; + @${REINPLACE_CMD} -e "s|-lpthread|${PTHREAD_LIBS}|g" ${WRKSRC}/${CONFIGURE_SCRIPT} .include <bsd.port.mk> diff --git a/devel/libzrtpcpp/files/patch-src-libzrtpcpp_ZrtpPacketBase.h b/devel/libzrtpcpp/files/patch-src-libzrtpcpp_ZrtpPacketBase.h new file mode 100644 index 000000000000..5820b16b1a95 --- /dev/null +++ b/devel/libzrtpcpp/files/patch-src-libzrtpcpp_ZrtpPacketBase.h @@ -0,0 +1,10 @@ +--- src/libzrtpcpp/ZrtpPacketBase.h Fri Oct 6 13:49:31 2006 ++++ src/libzrtpcpp/ZrtpPacketBase.h Fri Oct 6 13:49:55 2006 +@@ -27,6 +27,7 @@ + #include <stdint.h> + #include <string.h> + #include <malloc.h> ++#include <sys/types.h> + #include <netinet/in.h> + + #include <libzrtpcpp/zrtpPacket.h> |