1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

graphics/ipe: Update patch to support DragonFly

DragonFly 3.4 uses char* prototype for iconv while the upcoming
DragonFly 3.6 uses const char* iconv prototype like FreeBSD does.
Modify the iconv patch to allow graphics/ipe to build on both
DragonFly releases.
This commit is contained in:
John Marino 2013-10-07 09:04:10 +00:00
parent 3504cd779a
commit 237fc7e2cf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=329666

View File

@ -1,11 +1,23 @@
--- ipelib/ipedoc.cpp.orig
--- ipelib/ipedoc.cpp.orig 2013-03-15 13:37:02.000000000 +0000
+++ ipelib/ipedoc.cpp
@@ -850,7 +850,7 @@
@@ -41,6 +41,7 @@
#include "ipelatex.h"
#include <errno.h>
+#include <sys/param.h>
#ifdef IPE_USE_ICONV
#include <iconv.h>
@@ -850,7 +851,12 @@ int Document::runLatex(String &texLog)
if (!file)
return ErrWritingSource;
- char *inbuf = (char *) utf8.data();
+#if defined(__FreeBSD__) || \
+ (defined(__DragonFly__) && __DragonFly_version > 300502)
+ const char *inbuf = utf8.data();
+#else
char *inbuf = (char *) utf8.data();
+#endif
size_t inbytesleft = utf8.size();
FileStream fstream(file);