diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2006-08-07 18:03:19 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2006-08-07 18:03:19 +0000 |
commit | 60951459a640ee6a43f0e2e5bffbdc0508a66999 (patch) | |
tree | f6b3ae35d7d9630a6df46bf50ccfec83069c1e1e /net-p2p | |
parent | ed901604d02c239eea77538d1a5082f16f711b64 (diff) | |
download | ports-60951459a640ee6a43f0e2e5bffbdc0508a66999.tar.gz ports-60951459a640ee6a43f0e2e5bffbdc0508a66999.zip |
Notes
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/linuxdcpp/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net-p2p/linuxdcpp/Makefile b/net-p2p/linuxdcpp/Makefile index 1a526c982409..2063cbd638ad 100644 --- a/net-p2p/linuxdcpp/Makefile +++ b/net-p2p/linuxdcpp/Makefile @@ -30,6 +30,12 @@ STRIP= SCONS_ARGS= release=1 .endif +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +IGNORE= does not compile on FreeBSD 4.x, due to lack of wide character in libc +.endif + post-extract: @${RM} ${WRKSRC}/linux/prefix.* @@ -37,4 +43,4 @@ post-patch: @${REINPLACE_CMD} -e 's|%%CC%%|${CC}|g ; s|%%CXX%%|${CXX}|g ; \ s|%%CXXFLAGS%%|${CXXFLAGS}|g' ${WRKSRC}/SConstruct -.include <bsd.port.mk> +.include <bsd.port.post.mk> |