diff options
author | Martin Neubauer <m.ne@gmx.net> | 2024-12-31 09:35:34 +0100 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2024-12-31 09:36:43 +0100 |
commit | c8ea8c20274e8974737189257cda8ed08c324797 (patch) | |
tree | d972588eab1bd65b199312a254f3f922e7710dba /ftp | |
parent | devel/py-ruamel.yaml: update to 0.18.7 (diff) |
ftp/libfilezilla: fix build on 15
- missed the Makefile patch because I build on an older version of 15
PR: 283373
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/libfilezilla/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ftp/libfilezilla/Makefile b/ftp/libfilezilla/Makefile index d9377f7017af..d69893dc0472 100644 --- a/ftp/libfilezilla/Makefile +++ b/ftp/libfilezilla/Makefile @@ -20,4 +20,10 @@ USE_LDCONFIG= yes GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${CHOSEN_COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 191 +EXTRA_PATCHES= ${PATCHDIR}/extra-patch-lib_libfilezilla_string.hpp +.endif + +.include <bsd.port.post.mk> |