diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-03-13 21:00:56 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-03-13 21:00:56 +0000 |
commit | 6ac3ed82f111e1ce8784b7180a938a57f3f91ede (patch) | |
tree | 4c5c2f649d78e51f7edb9ab15c263c734afd95da | |
parent | - Fix build on 4.x (USE_GETOPT_LONG) (diff) |
- Fix build (USE_GETOPT_LONG)
-rw-r--r-- | net/b2bua/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/net/b2bua/Makefile b/net/b2bua/Makefile index 97629143267a..2a64e226aa6f 100644 --- a/net/b2bua/Makefile +++ b/net/b2bua/Makefile @@ -18,18 +18,13 @@ COMMENT= A back-to-back (B2B) SIP user agent LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2 USE_GMAKE= yes +USE_GETOPT_LONG= yes ALL_TARGET= b2bua CFLAGS+= -Wno-deprecated 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 @@ -40,4 +35,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/sip/b2b/b2bConfig.xml \ ${PREFIX}/etc/b2bConfig.xml.sample -.include <bsd.port.post.mk> +.include <bsd.port.mk> |