freebsd-ports/graphics/gwenview-kde4/files/extra-patch-importer__fileutils.cpp
Raphael Kubo da Costa 6f971d8396 Make it build on FreeBSD 7.
There's a call to mkdtemp(), which is supposed to be in stdlib.h. However,
until FreeBSD 8 the definition was only in unistd.h, so we need to include that
header for 7.
2012-05-30 22:40:39 +00:00

10 lines
253 B
C++

--- importer/fileutils.cpp~ 2012-05-30 19:27:44.000000000 -0300
+++ importer/fileutils.cpp 2012-05-30 19:27:57.000000000 -0300
@@ -39,6 +39,7 @@
#include <errno.h>
#include <stdlib.h>
#include <string.h>
+#include <unistd.h>
namespace Gwenview
{