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
dc7e074f
Kaydet (Commit)
dc7e074f
authored
Ock 10, 2013
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make it possible to even try building the OpenGL transitions for Windows
Change-Id: Id9b688a22518aedb8959120f909832f0cd84b324
üst
b0a827aa
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
11 deletions
+22
-11
configure.ac
configure.ac
+22
-11
No files found.
configure.ac
Dosyayı görüntüle @
dc7e074f
...
@@ -867,8 +867,7 @@ AC_ARG_ENABLE(cairo-canvas,
...
@@ -867,8 +867,7 @@ AC_ARG_ENABLE(cairo-canvas,
AC_ARG_ENABLE(opengl,
AC_ARG_ENABLE(opengl,
AS_HELP_STRING([--disable-opengl],
AS_HELP_STRING([--disable-opengl],
[Determines whether to build the OpenGL 3D slide transitions component.]),
[Determines whether to build the OpenGL 3D slide transitions component.]))
,enable_opengl=yes)
AC_ARG_ENABLE(dbus,
AC_ARG_ENABLE(dbus,
AS_HELP_STRING([--disable-dbus],
AS_HELP_STRING([--disable-dbus],
...
@@ -9702,14 +9701,32 @@ dnl ===================================================================
...
@@ -9702,14 +9701,32 @@ dnl ===================================================================
AC_MSG_CHECKING([whether to build the OpenGL Transitions component])
AC_MSG_CHECKING([whether to build the OpenGL Transitions component])
ENABLE_OPENGL=
ENABLE_OPENGL=
if test "$_os" = "Darwin"; then
if test -z "$enable_opengl"; then
if test $_os = WINNT; then
# By default disable the OpenGL transitions for Windows (the code doesn't even compile
# currently). In other words, use --enable-opengl only if you plan to hack on that code for
# Windows.
enable_opengl=no
else
enable_opengl=yes
fi
fi
if test "x$enable_opengl" = "xno"; then
AC_MSG_RESULT([no])
elif test "$_os" = "Darwin"; then
# We use frameworks on Mac OS X, no need for detail checks
# We use frameworks on Mac OS X, no need for detail checks
ENABLE_OPENGL=TRUE
ENABLE_OPENGL=TRUE
SYSTEM_MESA_HEADERS=YES
SYSTEM_MESA_HEADERS=YES
AC_MSG_RESULT([yes])
AC_MSG_RESULT([yes])
elif test $_os = WINNT; then
# Experimental: try to use OpenGL on Windows
ENABLE_OPENGL=TRUE
# We need the internal "Mesa" headers.
SYSTEM_MESA_HEADERS=NO
BUILD_TYPE="$BUILD_TYPE MESA"
AC_MSG_RESULT([yes])
else
else
if test "x$enable_opengl" != "xno"; then
if test "$_os" != "WINNT"; then
save_LDFLAGS=$LDFLAGS
save_LDFLAGS=$LDFLAGS
LDFLAGS="$LDFLAGS -lm"
LDFLAGS="$LDFLAGS -lm"
AC_MSG_RESULT([yes])
AC_MSG_RESULT([yes])
...
@@ -9738,12 +9755,6 @@ else
...
@@ -9738,12 +9755,6 @@ else
SYSTEM_MESA_HEADERS=NO
SYSTEM_MESA_HEADERS=NO
BUILD_TYPE="$BUILD_TYPE MESA"
BUILD_TYPE="$BUILD_TYPE MESA"
fi
fi
else
AC_MSG_RESULT([not on Windows])
fi
else
AC_MSG_RESULT([no])
fi
fi
fi
AC_SUBST(SYSTEM_MESA_HEADERS)
AC_SUBST(SYSTEM_MESA_HEADERS)
...
...
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