mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
Switch to GCC from ports on GCC architectures to fix linking and include strings.h in src/fusepod_util.h to find strcasecmp: /usr/local/lib/libtag.so: undefined reference to `std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::find_last_not_of(wchar_t const*, unsigned long, unsigned long) const@GLIBCXX_3.4.21' PR: 237157 Approved by: mat (mentor), fjoe (maintainer timeout) Differential Revision: https://reviews.freebsd.org/D20113
10 lines
209 B
C++
10 lines
209 B
C++
--- 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>
|
|
|