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
a1bfd9d2
Kaydet (Commit)
a1bfd9d2
authored
Eki 13, 2015
tarafından
Samuel Mehrbrodt
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Improve checking for emscripten zlib
Change-Id: I52cff17d4d909135e40be53cd5c22a1565953762
üst
6a8396a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
+8
-9
configure.ac
configure.ac
+8
-9
No files found.
configure.ac
Dosyayı görüntüle @
a1bfd9d2
...
@@ -7420,17 +7420,16 @@ dnl and has no pkg-config for it at least on some tinderboxes,
...
@@ -7420,17 +7420,16 @@ dnl and has no pkg-config for it at least on some tinderboxes,
dnl so leaving that out for now
dnl so leaving that out for now
dnl libo_CHECK_SYSTEM_MODULE([zlib],[ZLIB],[zlib])
dnl libo_CHECK_SYSTEM_MODULE([zlib],[ZLIB],[zlib])
AC_MSG_CHECKING([which zlib to use])
AC_MSG_CHECKING([which zlib to use])
if test "$_os" = "Emscripten"; then
if test "$with_system_zlib" = "yes"; then
# Emscripten provides its own zlib
AC_MSG_RESULT([Emscripten provided])
SYSTEM_ZLIB=TRUE
elif test "$with_system_zlib" = "yes"; then
AC_MSG_RESULT([external])
AC_MSG_RESULT([external])
SYSTEM_ZLIB=TRUE
SYSTEM_ZLIB=TRUE
AC_CHECK_HEADER(zlib.h, [],
if test "$_os" != "Emscripten"; then
[AC_MSG_ERROR(zlib.h not found. install zlib)], [])
# Emscripten provides its own zlib, don't check for that
AC_CHECK_LIB(z, deflate, [ ZLIB=-lz ],
AC_CHECK_HEADER(zlib.h, [],
[AC_MSG_ERROR(zlib not found or functional)], [])
[AC_MSG_ERROR(zlib.h not found. install zlib)], [])
AC_CHECK_LIB(z, deflate, [ ZLIB=-lz ],
[AC_MSG_ERROR(zlib not found or functional)], [])
fi
else
else
AC_MSG_RESULT([internal])
AC_MSG_RESULT([internal])
SYSTEM_ZLIB=
SYSTEM_ZLIB=
...
...
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