diff options
| author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-04-30 19:27:27 +0000 |
|---|---|---|
| committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-04-30 19:27:27 +0000 |
| commit | a5f2be50aac571b898ed936a7b6b970546818caf (patch) | |
| tree | f244d1c731626d69f6bc9e6804919f98a71a65ae /sysutils/fusefs-smbnetfs/files/patch-src_fusepod__util.h | |
| parent | devel/jfrog-cli: update to 1.25.0 (diff) | |
sysutils/fusefs-smbnetfs: fix build with GCC-based architectures
This port requires USES=compiler:c11 and including strings.h in one source file to build on GCC architectures.
event.o:(.text+0x838): undefined reference to `g_atomic_int_get'
event.o:(.text+0x9c4): undefined reference to `g_atomic_int_get'
event.o:(.text+0x9dc): undefined reference to `g_atomic_int_set'
PR: 237221
Approved by: mi@ALDAN.algebra.com (maintainer timeout), mat (mentor)
Differential Revision: https://reviews.freebsd.org/D20108
Diffstat (limited to '')
| -rw-r--r-- | sysutils/fusefs-smbnetfs/files/patch-src_fusepod__util.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sysutils/fusefs-smbnetfs/files/patch-src_fusepod__util.h b/sysutils/fusefs-smbnetfs/files/patch-src_fusepod__util.h new file mode 100644 index 000000000000..e4bb07a47865 --- /dev/null +++ b/sysutils/fusefs-smbnetfs/files/patch-src_fusepod__util.h @@ -0,0 +1,10 @@ +--- src/fusepod_util.h.orig 2019-04-09 11:38:35 UTC ++++ src/fusepod_util.h +@@ -15,6 +15,7 @@ + #ifndef _FUSEPOD_UTIL_H_ + #define _FUSEPOD_UTIL_H_ + ++#include <strings.h> + #include <vector> + #include <string> + |
