Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
bb6a12ca
Kaydet (Commit)
bb6a12ca
authored
Eki 31, 2012
tarafından
Rene Engelhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix sdext build with poppler >= 0.19.x
Change-Id: I655e8e15c7f7a8c292b3a1820ee48c29e847d05a
üst
e5b645bc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
7 deletions
+8
-7
configure.ac
configure.ac
+0
-3
pdfioutdev_gpl.cxx
sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
+3
-1
pdfioutdev_gpl.hxx
sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
+5
-3
No files found.
configure.ac
Dosyayı görüntüle @
bb6a12ca
...
@@ -9788,9 +9788,6 @@ if test "x$enable_ext_pdfimport" != "xno" -a "x$enable_extension_integration" !=
...
@@ -9788,9 +9788,6 @@ if test "x$enable_ext_pdfimport" != "xno" -a "x$enable_extension_integration" !=
AC_MSG_RESULT([external])
AC_MSG_RESULT([external])
SYSTEM_POPPLER=YES
SYSTEM_POPPLER=YES
PKG_CHECK_MODULES( POPPLER, poppler >= 0.8.0 )
PKG_CHECK_MODULES( POPPLER, poppler >= 0.8.0 )
# sdext test fails with 0.20.0
PKG_CHECK_MODULES( POPPLER_NOT_0_20_0, poppler < 0.20.0,
, [AC_MSG_ERROR([Poppler 0.20.x is broken, do not use --with-system-poppler or use a different version])])
AC_LANG_PUSH([C++])
AC_LANG_PUSH([C++])
save_CXXFLAGS=$CXXFLAGS
save_CXXFLAGS=$CXXFLAGS
save_CPPFLAGS=$CPPFLAGS
save_CPPFLAGS=$CPPFLAGS
...
...
sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
Dosyayı görüntüle @
bb6a12ca
...
@@ -489,7 +489,9 @@ void PDFOutDev::endPage()
...
@@ -489,7 +489,9 @@ void PDFOutDev::endPage()
printf
(
"endPage
\n
"
);
printf
(
"endPage
\n
"
);
}
}
#if POPPLER_CHECK_VERSION(0, 17, 0)
#if POPPLER_CHECK_VERSION(0, 19, 0)
void
PDFOutDev
::
processLink
(
AnnotLink
*
link
)
#elif POPPLER_CHECK_VERSION(0, 17, 0)
void
PDFOutDev
::
processLink
(
AnnotLink
*
link
,
Catalog
*
)
void
PDFOutDev
::
processLink
(
AnnotLink
*
link
,
Catalog
*
)
#else
#else
void
PDFOutDev
::
processLink
(
Link
*
link
,
Catalog
*
)
void
PDFOutDev
::
processLink
(
Link
*
link
,
Catalog
*
)
...
...
sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
Dosyayı görüntüle @
bb6a12ca
...
@@ -189,10 +189,12 @@ namespace pdfi
...
@@ -189,10 +189,12 @@ namespace pdfi
// virtual void cvtDevToUser(double dx, double dy, double *ux, double *uy);
// virtual void cvtDevToUser(double dx, double dy, double *ux, double *uy);
// virtual void cvtUserToDev(double ux, double uy, int *dx, int *dy);
// virtual void cvtUserToDev(double ux, double uy, int *dx, int *dy);
#if POPPLER_CHECK_VERSION(0, 17, 0)
virtual
void
processLink
(
AnnotLink
*
link
,
Catalog
*
catalog
);
#else
//----- link borders
//----- link borders
#if POPPLER_CHECK_VERSION(0, 19, 0)
virtual
void
processLink
(
AnnotLink
*
link
);
#elif POPPLER_CHECK_VERSION(0, 17, 0)
virtual
void
processLink
(
AnnotLink
*
link
,
Catalog
*
catalog
);
#else
virtual
void
processLink
(
Link
*
link
,
Catalog
*
catalog
);
virtual
void
processLink
(
Link
*
link
,
Catalog
*
catalog
);
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment