summaryrefslogtreecommitdiff
path: root/poppler/Form.h
diff options
context:
space:
mode:
authorRoland Hieber <r.hieber@pengutronix.de>2017-08-11 11:44:26 +0200
committerAlbert Astals Cid <aacid@kde.org>2017-08-12 01:12:27 +0200
commita9581e624fa62b3905b790ac10d1349b1f96048a (patch)
tree21f006f880e3ef327d467a9dc56d25f10ac361ad /poppler/Form.h
parentf0ecbc6f988aa19ffb2b7e583dca4e609f2f6c65 (diff)
Form.h: fix error: 'vector' in namespace 'std' does not name a type
Bug #102147 Original error message while compiling with OSELAS.Toolchain-2016.06.1-arm-v7a-linux-gnueabi, gcc-5.4.0-glibc-2.23-binutils-2.26-kernel-4.6-sanitized: make[5]: Entering directory '/ptx/work/dude/WORK_B/rhi/OSELAS.BSP-Miele-PST/platform-cpu20/build-target/poppler-0.57.0/qt4/src' CXX libpoppler_qt4_la-poppler-form.lo In file included from poppler-form.cc:26:0: ../../poppler/Form.h:544:14: error: 'vector' in namespace 'std' does not name a template type ../../poppler/Form.h:556:8: error: 'vector' in namespace 'std' does not name a template type Makefile:735: recipe for target 'libpoppler_qt4_la-poppler-form.lo' failed configure arguments were: --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=/usr/lib --host=arm-v7a-linux-gnueabi --build=x86_64-host-linux-gnu --enable-option-checking --disable-silent-rules --disable-dependency-tracking --enable-shared --enable-fast-install --enable-libtool-lock --enable-xpdf-headers --enable-build-type=release --disable-single-precision --enable-fixedpoint --enable-cmyk --disable-relocatable --enable-libopenjpeg=none --disable-libnss --disable-libtiff --enable-largefile --enable-zlib --disable-zlib-uncompress --enable-libcurl --enable-dctdecoder=libjpeg --enable-libpng --disable-splash-output --enable-cairo-output --enable-poppler-glib --disable-introspection --disable-gtk-doc --disable-gtk-doc-html --disable-gtk-doc-pdf --enable-poppler-qt4 --disable-poppler-qt5 --enable-poppler-cpp --disable-gtk-test --enable-utils --disable-compile-warnings --enable-cms=lcms1 --without-x --with-font-configuration=fontconfig --without-libiconv-prefix --with-testdatadir= Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
Diffstat (limited to 'poppler/Form.h')
-rw-r--r--poppler/Form.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/poppler/Form.h b/poppler/Form.h
index d73ab898..c0550084 100644
--- a/poppler/Form.h
+++ b/poppler/Form.h
@@ -13,6 +13,7 @@
// Copyright 2013 Adrian Johnson <ajohnson@redneon.com>
// Copyright 2015 André Guerreiro <aguerreiro1985@gmail.com>
// Copyright 2015 André Esser <bepandre@hotmail.com>
+// Copyright 2017 Roland Hieber <r.hieber@pengutronix.de>
//
//========================================================================
@@ -27,6 +28,7 @@
#include "Annot.h"
#include <set>
+#include <vector>
class GooString;
class Array;