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
fe6330f1
Kaydet (Commit)
fe6330f1
authored
Nis 03, 2008
tarafından
Kurt Zenker
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
INTEGRATION: CWS vcl87 (1.252.2); FILE MERGED
2008/03/12 18:47:41 pl 1.252.2.1: #i76650# RandR support
üst
c7d7c90a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
2 deletions
+35
-2
configure.in
config_office/configure.in
+35
-2
No files found.
config_office/configure.in
Dosyayı görüntüle @
fe6330f1
...
...
@@ -3,7 +3,7 @@ dnl * vi:set sw=3 ts=3 et:
dnl
*
dnl
*
Name
:
configure
.
in
dnl
*
Auth
:
Willem
van
Dorp
,
Ross
Nicholson
,
Oisin
Boydell
-
Sun
Microsystems
Ireland
dnl
*
Date
:
$
Date
:
2008
-
04
-
03
1
6
:
49
:
30
$
dnl
*
Date
:
$
Date
:
2008
-
04
-
03
1
7
:
27
:
56
$
dnl
*
dnl
*
Desc
:
This
file
serves
as
input
for
the
GNU
autoconf
package
dnl
*
in
order
to
create
a
configure
script
.
...
...
@@ -12,7 +12,7 @@ dnl * necessary to build OpenOffice.org
dnl
*
dnl
*
dnl
******************************************************************/
AC_REVISION
(
$
Revision
:
1.25
7
$
)
AC_REVISION
(
$
Revision
:
1.25
8
$
)
AC_PREREQ
(
2.50
)
AC_INIT
()
echo
"$@"
>
config
.
parms
...
...
@@ -259,6 +259,9 @@ AC_ARG_ENABLE(crypt-link,
AC_ARG_ENABLE
(
xrender
-
link
,
[
--
enable
-
xrender
-
link
link
with
libXrender
instead
of
dynamically
open
it
],,)
AC_ARG_ENABLE
(
randr
,
[
--
disable
-
randr
disable
RandR
support
in
the
vcl
project
],,
enable_randr
=
yes
)
AC_ARG_WITH
(
myspell
-
dicts
,
[
--
without
-
myspell
-
dicts
Removes
myspell
dictionaries
from
openoffice
.
org
installation
set
,
for
people
building
for
specific
...
...
@@ -802,6 +805,7 @@ case "$build_os" in
build_cairo=yes
test_kde=yes
test_cups=yes
test_randr=yes
_os=SunOS
dnl ===========================================================
...
...
@@ -828,6 +832,7 @@ case "$build_os" in
build_cairo=yes
test_kde=yes
test_cups=yes
test_randr=yes
if getconf GNU_LIBPTHREAD_VERSION |grep -q NPTL; then
PTHREAD_CFLAGS="-DNPTL"
fi
...
...
@@ -846,6 +851,7 @@ case "$build_os" in
test_cups=yes
test_gtk=yes
build_cairo=yes
test_randr=no
_os=Darwin
if test "$enable_systray" = "yes" && test "$enable_gtk" != "no"; then
AC_MSG_WARN([Disabling gtk-quickstarter - not supported on Mac. Use --disable-systray])
...
...
@@ -856,6 +862,7 @@ case "$build_os" in
os2*)
test_x=no
test_cups=no
test_randr=no
test_gtk=no
_os=OS2
;;
...
...
@@ -864,6 +871,7 @@ case "$build_os" in
build_cairo=yes
test_kde=yes
test_cups=yes
test_randr=yes
AC_MSG_CHECKING([the FreeBSD operating system release])
if test -n "$with_os_version"; then
OSVERSION="$with_os_version"
...
...
@@ -887,6 +895,7 @@ case "$build_os" in
;;
osf)
test_cups=no
test_randr=no
_os=OSF1
;;
netbsd)
...
...
@@ -894,16 +903,19 @@ case "$build_os" in
build_cairo=yes
test_kde=yes
test_cups=no
test_randr=yes
PTHREAD_CFLAGS="-pthread"
PTHREAD_LIBS="-pthread -lpthread"
_os=NetBSD
;;
irix*)
test_cups=no
test_randr=no
_os=IRIX
;;
aix*)
test_cups=no
test_randr=no
PTHREAD_LIBS=-pthread
echo "AIX is an alpha port --- Use at own risk" >> warn
_os=AIX
...
...
@@ -1082,6 +1094,19 @@ else
fi
AC_SUBST(ENABLE_FONTCONFIG)
dnl ===================================================================
dnl Build options
dnl ===================================================================
AC_MSG_CHECKING([whether to enable RandR support])
if test "$test_randr" = "yes" -a \( "$enable_randr" = "yes" -o "$enable_randr" = "TRUE" \) ; then
ENABLE_RANDR="TRUE"
AC_MSG_RESULT([yes])
else
ENABLE_RANDR=""
AC_MSG_RESULT([no])
fi
AC_SUBST(ENABLE_RANDR)
dnl ===================================================================
dnl Disable legacy binary file formats filters
dnl ===================================================================
...
...
@@ -1763,6 +1788,14 @@ if test "$test_cups" = "yes" -a "$ENABLE_CUPS" = "TRUE" ; then
[AC_MSG_ERROR([cups/cups.h could not be found. libcupsys2-dev or cups???-devel missing?])], [])
fi
dnl ===================================================================
dnl Check if X11/extensions/Xrandr.h is available
dnl ===================================================================
if test "$test_randr" = "yes" -a "$ENABLE_RANDR" = "TRUE" ; then
AC_CHECK_HEADER(X11/extensions/Xrandr.h, [],
[AC_MSG_ERROR([X11/extensions/Xrandr.h could not be found. X11 dev missing?])], [])
fi
dnl ===================================================================
dnl Check if PAM/pam_appl.h is available on Linux or FreeBSD
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