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
6f0e0df6
Kaydet (Commit)
6f0e0df6
authored
Mar 21, 2012
tarafından
Herbert Dürr
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
get rid of PKG_CHECK_MODULES_MACHACK
üst
017256f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
21 deletions
+13
-21
acinclude.m4
acinclude.m4
+0
-19
configure.in
configure.in
+13
-2
No files found.
acinclude.m4
deleted
100644 → 0
Dosyayı görüntüle @
017256f7
dnl @synopsis PKG_CHECK_MODULES_MACHACK
dnl PKG_CHECK_MODULES_MACHACK is like PKG_CHECK_MODULES but sneaks in an extra
dnl argument between the first and second, denoting a program to call instead of
dnl pkg-config on Mac OS X (aka Darwin):
AC_DEFUN([PKG_CHECK_MODULES_MACHACK],
[if test "$_os" = "Darwin"; then
AC_MSG_CHECKING($1_CFLAGS)
$1_CFLAGS=`$2 --cflags`
AC_MSG_RESULT($$1_CFLAGS)
AC_MSG_CHECKING($1_LIBS)
$1_LIBS=`$2 --libs`
AC_MSG_RESULT($$1_LIBS)
AC_SUBST($1_CFLAGS)
AC_SUBST($1_LIBS)
else
PKG_CHECK_MODULES($1, $3, $4, $5, $6)
fi
])
configure.in
Dosyayı görüntüle @
6f0e0df6
...
@@ -3925,7 +3925,12 @@ if test -n "$with_system_libxslt" -o -n "$with_system_libs" -o \
...
@@ -3925,7 +3925,12 @@ if test -n "$with_system_libxslt" -o -n "$with_system_libs" -o \
AC_MSG_RESULT
([
external
])
AC_MSG_RESULT
([
external
])
SYSTEM_LIBXSLT
=
YES
SYSTEM_LIBXSLT
=
YES
PKG_CHECK_MODULES_MACHACK
(
LIBXSLT
,
xslt
-
config
,
libxslt
)
if
test
"$_os"
!= "Darwin"; then
PKG_CHECK_MODULES
(
LIBXSLT
,
libxslt
)
else
LIBXSLT_CFLAGS
=`
xslt
-
config
--
cflags
`
LIBXSLT_LDLAGS
=`
xslt
-
config
--
libs
`
fi
dnl
Check
for
xsltproc
dnl
Check
for
xsltproc
AC_PATH_PROG
(
XSLTPROC
,
xsltproc
,
no
)
AC_PATH_PROG
(
XSLTPROC
,
xsltproc
,
no
)
...
@@ -3951,8 +3956,14 @@ if test -n "$with_system_libxml" -o -n "$with_system_libs" -o \
...
@@ -3951,8 +3956,14 @@ if test -n "$with_system_libxml" -o -n "$with_system_libs" -o \
test
"$with_system_libxml"
!= "no"; then
test
"$with_system_libxml"
!= "no"; then
AC_MSG_RESULT
([
external
])
AC_MSG_RESULT
([
external
])
SYSTEM_LIBXML
=
YES
SYSTEM_LIBXML
=
YES
PKG_CHECK_MODULES_MACHACK
(
LIBXML
,
xml2
-
config
,
libxml
-
2.0
>=
2.0
)
BUILD_TYPE
=
"$BUILD_TYPE LIBXMLSEC"
BUILD_TYPE
=
"$BUILD_TYPE LIBXMLSEC"
if
test
"$_os"
!= "Darwin"; then
PKG_CHECK_MODULES
(
LIBXML
,
libxml
-
2.0
>=
2.0
)
else
LIBXML_CFLAGS
=`
xml2
-
config
--
cflags
`
LIBXML_LDLAGS
=`
xml2
-
config
--
libs
`
fi
else
else
AC_MSG_RESULT
([
internal
])
AC_MSG_RESULT
([
internal
])
SYSTEM_LIBXML
=
NO
SYSTEM_LIBXML
=
NO
...
...
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