diff options
author | fjoe <fjoe@FreeBSD.org> | 2007-01-21 20:40:45 +0800 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2007-01-21 20:40:45 +0800 |
commit | e8a33729b4c48dccd1a4f78c8f700b278bfb3e31 (patch) | |
tree | be1f7968709007f83bbca62397f74aa924ed211f /x11-toolkits | |
parent | b6dd5a2ea1763df5392ecf4a06befb12c6dcfe66 (diff) | |
download | freebsd-ports-gnome-e8a33729b4c48dccd1a4f78c8f700b278bfb3e31.tar.gz freebsd-ports-gnome-e8a33729b4c48dccd1a4f78c8f700b278bfb3e31.tar.zst freebsd-ports-gnome-e8a33729b4c48dccd1a4f78c8f700b278bfb3e31.zip |
Fix ignoring wxgtk2-unicode on 4.x (requires wchar_t).
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/wxgtk26/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11-toolkits/wxgtk26/Makefile b/x11-toolkits/wxgtk26/Makefile index 84b596d90bc8..c1fc72213875 100644 --- a/x11-toolkits/wxgtk26/Makefile +++ b/x11-toolkits/wxgtk26/Makefile @@ -98,4 +98,10 @@ post-patch: s|pkg_config_args --libs|pkg_config_args pangox --libs|g' \ ${WRKSRC}/configure -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${WXGTK_FLAVOR} == "gtk2-unicode" && ${OSVERSION} < 500000 +IGNORE= requires wchar_t +.endif + +.include <bsd.port.post.mk> |