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
09cd5c46
Kaydet (Commit)
09cd5c46
authored
Haz 03, 2012
tarafından
David Tardon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
do not check for win-specific stuff on mingw
Change-Id: I8316e1ce35d059938da35651c0fa1412b8648a7d
üst
38b32390
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
14 deletions
+12
-14
configure.in
configure.in
+12
-14
No files found.
configure.in
Dosyayı görüntüle @
09cd5c46
...
@@ -2523,7 +2523,7 @@ AC_SUBST(MAC_OS_X_VERSION_MAX_ALLOWED)
...
@@ -2523,7 +2523,7 @@ AC_SUBST(MAC_OS_X_VERSION_MAX_ALLOWED)
dnl ===================================================================
dnl ===================================================================
dnl Windows specific tests and stuff
dnl Windows specific tests and stuff
dnl ===================================================================
dnl ===================================================================
if test "$_os" = "WINNT"; then
if test "$_os" = "WINNT"
-a "$WITH_MINGW" != yes
; then
dnl Set the CL_X64 variable if we are building a 64-bit LibreOffice.
dnl Set the CL_X64 variable if we are building a 64-bit LibreOffice.
AC_MSG_CHECKING([whether to build a 64-bit LibreOffice])
AC_MSG_CHECKING([whether to build a 64-bit LibreOffice])
if test "$enable_cl_x64" = "" -o "$enable_cl_x64" = "no"; then
if test "$enable_cl_x64" = "" -o "$enable_cl_x64" = "no"; then
...
@@ -2533,7 +2533,6 @@ if test "$_os" = "WINNT"; then
...
@@ -2533,7 +2533,6 @@ if test "$_os" = "WINNT"; then
CL_X64="TRUE"
CL_X64="TRUE"
AC_MSG_RESULT([yes])
AC_MSG_RESULT([yes])
fi
fi
AC_SUBST(CL_X64)
AC_MSG_CHECKING([whether to use DirectX])
AC_MSG_CHECKING([whether to use DirectX])
if test "$enable_directx" = "yes" -o "$enable_directx" = ""; then
if test "$enable_directx" = "yes" -o "$enable_directx" = ""; then
...
@@ -2543,7 +2542,6 @@ if test "$_os" = "WINNT"; then
...
@@ -2543,7 +2542,6 @@ if test "$_os" = "WINNT"; then
ENABLE_DIRECTX=""
ENABLE_DIRECTX=""
AC_MSG_RESULT([no])
AC_MSG_RESULT([no])
fi
fi
AC_SUBST(ENABLE_DIRECTX)
AC_MSG_CHECKING([whether to use ActiveX])
AC_MSG_CHECKING([whether to use ActiveX])
if test "$enable_activex" = "yes" -o "$enable_activex" = "TRUE" -o "$enable_activex" = ""; then
if test "$enable_activex" = "yes" -o "$enable_activex" = "TRUE" -o "$enable_activex" = ""; then
...
@@ -2554,27 +2552,27 @@ if test "$_os" = "WINNT"; then
...
@@ -2554,27 +2552,27 @@ if test "$_os" = "WINNT"; then
DISABLE_ACTIVEX="TRUE"
DISABLE_ACTIVEX="TRUE"
AC_MSG_RESULT([no])
AC_MSG_RESULT([no])
fi
fi
AC_SUBST(DISABLE_ACTIVEX)
AC_MSG_CHECKING([whether to use ATL])
AC_MSG_CHECKING([whether to use ATL])
if test "$enable_atl" = "yes" -o "$enable_atl" = "TRUE"; then
if test "$enable_atl" = "yes" -o "$enable_atl" = "TRUE"
-o "$enable_atl" = ""
; then
DISABLE_ATL=""
DISABLE_ATL=""
AC_MSG_RESULT([yes])
AC_MSG_RESULT([yes])
elif test "$enable_atl" = ""; then
if test "$WITH_MINGW" = "yes"; then
DISABLE_ATL="TRUE"
AC_MSG_RESULT([no])
else
DISABLE_ATL=""
AC_MSG_RESULT([yes])
fi
else
else
DISABLE_ATL="TRUE"
DISABLE_ATL="TRUE"
AC_MSG_RESULT([no])
AC_MSG_RESULT([no])
fi
fi
AC_SUBST(DISABLE_ATL)
else
CL_X64=""
ENABLE_DIRECTX=""
DISABLE_ACTIVEX="TRUE"
DISABLE_ATL="TRUE"
fi
fi
AC_SUBST(CL_X64)
AC_SUBST(ENABLE_DIRECTX)
AC_SUBST(DISABLE_ACTIVEX)
AC_SUBST(DISABLE_ATL)
dnl ===================================================================
dnl ===================================================================
dnl Test the gcc version
dnl Test the gcc version
dnl ===================================================================
dnl ===================================================================
...
...
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