6f971d8396
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.
10 lines
253 B
C++
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
|
|
{
|