diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2007-07-02 11:30:38 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2007-07-02 11:30:38 +0000 |
commit | 6e1ee96e3c10e6275a79b349502fc79532bf7403 (patch) | |
tree | 6afc133419b49746c6b65be7e2b8cc77e47d60d6 /devel/openzz | |
parent | ea3e2694ddf66d5b1dd5243c05ec107c1933906a (diff) | |
download | ports-6e1ee96e3c10e6275a79b349502fc79532bf7403.tar.gz ports-6e1ee96e3c10e6275a79b349502fc79532bf7403.zip |
- Fix the build with newish GCC [1]
- Stop caring for OSVERSIONs <= 500027
Reported by: pointyhat (logs) [1]
Notes
Notes:
svn path=/head/; revision=194636
Diffstat (limited to 'devel/openzz')
-rw-r--r-- | devel/openzz/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/devel/openzz/Makefile b/devel/openzz/Makefile index 54770417b320..38cd00906f70 100644 --- a/devel/openzz/Makefile +++ b/devel/openzz/Makefile @@ -23,13 +23,8 @@ USE_AUTOTOOLS= libtool:15 GNU_CONFIGURE= yes USE_LDCONFIG= yes -.include <bsd.port.pre.mk> - post-patch: @${REINPLACE_CMD} -e "s/cfree/free/g" ${WRKSRC}/src/list.c -.if ${OSVERSION} <= 500027 - @${FIND} ${WRKSRC}/src -type f | ${XARGS} ${REINPLACE_CMD} \ - -e 's|<stdint.h>|<inttypes.h>|' -.endif + @${REINPLACE_CMD} -e "s/argv\[\]/*argv/" ${WRKSRC}/src/zzbind.h -.include <bsd.port.post.mk> +.include <bsd.port.mk> |