converters/pdf2djvu: fix build on GCC architectures

When compiling with GCC, as used on GCC architectures, it errors with:
sys-uuid.cc:96:12: error: 'strlen' was not declared in this scope

assert(strlen(s) == 36U);
       ^~~~~~

sys-uuid.cc:96:12: note: 'strlen' is defined in header '<cstring>'; did you forget to '#include <cstring>'?

PR:		238780
Approved by:	samy.mahmoudi@gmail.com (maintainer timeout), tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D22025
This commit is contained in:
Piotr Kubaj 2019-10-16 15:35:58 +00:00
parent 13d4527a34
commit bc7e359cc9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=514602

View File

@ -0,0 +1,11 @@
--- sys-uuid.cc.orig 2019-06-23 11:41:41 UTC
+++ sys-uuid.cc
@@ -17,6 +17,8 @@
#include "autoconf.hh"
#include "system.hh"
+#include <cstring>
+
#if WIN32
#include <cassert>