diff options
author | antoine <antoine@FreeBSD.org> | 2016-10-20 06:08:17 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2016-10-20 06:08:17 +0800 |
commit | aa52294ec7cf98b4b845ba09a6682e6bd0a1463e (patch) | |
tree | 9b9c893b32c81706c681c4918d9d01bc32bc910a /textproc | |
parent | 6e644f79cf43c2ffcc2ccf7b86e56826661a1d3d (diff) | |
download | freebsd-ports-graphics-aa52294ec7cf98b4b845ba09a6682e6bd0a1463e.tar.gz freebsd-ports-graphics-aa52294ec7cf98b4b845ba09a6682e6bd0a1463e.tar.zst freebsd-ports-graphics-aa52294ec7cf98b4b845ba09a6682e6bd0a1463e.zip |
Fix build with clang 3.9
PR: 212687
Submitted by: emaste
Approved by: maintainer timeout (1 month)
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/scim/files/patch-src_ltdl.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/textproc/scim/files/patch-src_ltdl.cpp b/textproc/scim/files/patch-src_ltdl.cpp new file mode 100644 index 00000000000..376e74e6baf --- /dev/null +++ b/textproc/scim/files/patch-src_ltdl.cpp @@ -0,0 +1,11 @@ +--- src/ltdl.cpp.orig 2008-11-02 06:42:40 UTC ++++ src/ltdl.cpp +@@ -3361,7 +3361,7 @@ lt_dlopenext ( + { + lt_dlhandle handle = 0; + char * tmp = 0; +- char * ext = 0; ++ const char * ext = 0; + size_t len; + int errors = 0; + |