diff options
author | kris <kris@FreeBSD.org> | 2004-03-13 05:31:07 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-13 05:31:07 +0000 |
commit | c9dcf29cd89650f4f9fcc38f9fc29e41d062c307 (patch) | |
tree | 2cec537b387136e49820aa7c9981a61ad4d75557 | |
parent | 1b14d0246a31f026c857a027fbcc1898b102a48d (diff) | |
download | FreeBSD-ports-c9dcf29cd89650f4f9fcc38f9fc29e41d062c307.zip FreeBSD-ports-c9dcf29cd89650f4f9fcc38f9fc29e41d062c307.tar.gz |
BROKEN on 4.x: Does not compile
-rw-r--r-- | net/b2bua/Makefile | 8 | ||||
-rw-r--r-- | textproc/iiimf-protocol-lib/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/net/b2bua/Makefile b/net/b2bua/Makefile index 9741d97..9762914 100644 --- a/net/b2bua/Makefile +++ b/net/b2bua/Makefile @@ -24,6 +24,12 @@ MAKE_ENV= PTHREAD_LDFLAGS="${PTHREAD_LIBS}" \ PTHREAD_LIBNAME="${PTHREAD_LIBNAME}" \ VOCAL_USE_SYSTEM_LIBXML=true +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on 4.x" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/sip/b2b/bin.nodebug.FreeBSD.${MACHINE_ARCH}/b2bua \ ${PREFIX}/bin @@ -34,4 +40,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/sip/b2b/b2bConfig.xml \ ${PREFIX}/etc/b2bConfig.xml.sample -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/textproc/iiimf-protocol-lib/Makefile b/textproc/iiimf-protocol-lib/Makefile index e8cea2e..4c0e1d3 100644 --- a/textproc/iiimf-protocol-lib/Makefile +++ b/textproc/iiimf-protocol-lib/Makefile @@ -27,6 +27,12 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX} \ --includedir=${PREFIX}/include/iiimf/iiimp +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on 4.x" +.endif + post-patch: ${REINPLACE_CMD} -e "s,-lpthread,-pthread,g" \ -e "s,-D_POSIX_C_SOURCE=199506L,,g" \ @@ -34,4 +40,4 @@ post-patch: -e "s,/usr/lib/im,${PREFIX}/lib/im,g" \ ${WRKSRC}/configure -.include <bsd.port.mk> +.include <bsd.port.post.mk> |