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
daab827f
Kaydet (Commit)
daab827f
authored
Kas 30, 2011
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Don't add nonexistent Java files and dirs to various env vars
üst
424c479e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
17 deletions
+21
-17
configure.in
configure.in
+5
-0
set_soenv.in
set_soenv.in
+16
-17
No files found.
configure.in
Dosyayı görüntüle @
daab827f
...
@@ -3996,6 +3996,11 @@ fi
...
@@ -3996,6 +3996,11 @@ fi
dnl ===================================================================
dnl ===================================================================
dnl Checks for JDK.
dnl Checks for JDK.
dnl ===================================================================
dnl ===================================================================
# Note that JAVA_HOME as for now always means the *build* platform's
# JAVA_HOME. Whether all the complexity here actually is needed any
# more or not, no idea.
if test "$SOLAR_JAVA" != ""; then
if test "$SOLAR_JAVA" != ""; then
_gij_longver=0
_gij_longver=0
AC_MSG_CHECKING([the installed JDK])
AC_MSG_CHECKING([the installed JDK])
...
...
set_soenv.in
Dosyayı görüntüle @
daab827f
...
@@ -880,14 +880,10 @@ $ETC = $ds."etc";
...
@@ -880,14 +880,10 @@ $ETC = $ds."etc";
$BIN
=
$ds
.
"bin"
;
$BIN
=
$ds
.
"bin"
;
$LIB
=
$ds
.
"lib"
;
$LIB
=
$ds
.
"lib"
;
$LIB64
=
$ds
.
"lib"
;
$LIB64
=
$ds
.
"lib"
;
$LIB64
.=
"64"
$LIB64
.=
"64"
if
(
$platform
=~
m/x86_64-.*-linux/
);
if
(
$platform
=~
m/x86_64-.*-linux/
);
$LIB64
.=
"64"
if
((
$platform
=~
m/powerpc64-.*-linux/
)
&&
(
'@SIZEOF_LONG@'
eq
'8'
));
$LIB64
.=
"64"
$LIB64
.=
"64"
if
((
$platform
=~
m/s390x-.*-linux/
)
&&
(
'@SIZEOF_LONG@'
eq
'8'
));
if
((
$platform
=~
m/powerpc64-.*-linux/
)
&&
(
'@SIZEOF_LONG@'
eq
'8'
));
$LIB64
.=
$ds
.
"x64"
if
(
$platform
=~
m/cygwin/
);
$LIB64
.=
"64"
if
((
$platform
=~
m/s390x-.*-linux/
)
&&
(
'@SIZEOF_LONG@'
eq
'8'
));
$LIB64
.=
$ds
.
"x64"
if
(
$platform
=~
m/cygwin/
);
$INC
=
$ds
.
"inc"
;
$INC
=
$ds
.
"inc"
;
$INCLUDE
=
$ds
.
"include"
;
$INCLUDE
=
$ds
.
"include"
;
$DEV
=
$ds
.
"dev"
;
$DEV
=
$ds
.
"dev"
;
...
@@ -972,10 +968,12 @@ $SOLARENVINC = '$SOLARENV'.$INC;
...
@@ -972,10 +968,12 @@ $SOLARENVINC = '$SOLARENV'.$INC;
$DMAKEROOT
=
'$SOLARENVINC'
.
$ds
.
"startup"
;
$DMAKEROOT
=
'$SOLARENVINC'
.
$ds
.
"startup"
;
# Location of JDK classes .zip file.
# Location of JDK classes .zip file.
# but in jdk 1.2 it is called rt.jar and it lives in jre/lib
# but in jdk 1.2 it is called rt.jar and it lives in jre/lib
$CLASSPATH
=
'$JAVA_HOME'
.
$ds
.
'jre'
.
$LIB
.
$ds
.
"rt.jar"
.
$wps
.
'.'
;
$CLASSPATH
=
''
;
# Location of the JDK supported standard classes.zip file.
$CLASSPATH
.=
'$JAVA_HOME'
.
$ds
.
'jre'
.
$LIB
.
$ds
.
"rt.jar"
if
(
-
f
$JAVA_HOME
.
$ds
.
'jre'
.
$LIB
.
$ds
.
"rt.jar"
);
# see above for why the change
$CLASSPATH
.=
$wps
.
'.'
if
(
$CLASSPATH
ne
''
);
$XCLASSPATH
=
'$JAVA_HOME'
.
$ds
.
'jre'
.
$LIB
.
$ds
.
"rt.jar"
.
$wps
.
'.'
;
# Why do we need XCLASSPATH when it has the exact same value as CLASSPATH?
$XCLASSPATH
=
$CLASSPATH
;
# Location of the translations module
# Location of the translations module
$L10N_MODULE
=
PathFormat
(
$SRC_ROOT
.
"/translations"
);
$L10N_MODULE
=
PathFormat
(
$SRC_ROOT
.
"/translations"
);
...
@@ -1248,10 +1246,11 @@ elsif ($platform =~ m/linux|netbsd|aix|freebsd|openbsd|dragonfly/)
...
@@ -1248,10 +1246,11 @@ elsif ($platform =~ m/linux|netbsd|aix|freebsd|openbsd|dragonfly/)
if
(
$XLIB
ne
"/usr/lib"
&&
$XLIB
ne
"/usr/lib64"
&&
$XLIB
ne
"no_x_libraries"
)
{
if
(
$XLIB
ne
"/usr/lib"
&&
$XLIB
ne
"/usr/lib64"
&&
$XLIB
ne
"no_x_libraries"
)
{
$SOLARLIB
.=
$L
.
$XLIB
;
$SOLARLIB
.=
$L
.
$XLIB
;
}
}
$JAVALIB
=
$L
.
'$JAVA_HOME'
.
$LIB64
.
$JAVALIB
=
''
;
$L
.
$JRELIBDIR
.
$JAVALIB
.=
$L
.
'$JAVA_HOME'
.
$LIB64
if
(
-
d
$JAVA_HOME
.
$LIB64
);
$L
.
$JRETOOLKITDIR
.
$JAVALIB
.=
$L
.
$JRELIBDIR
if
(
-
d
$JRELIBDIR
);
$L
.
$JRETHREADDIR
;
$JAVALIB
.=
$L
.
$JRETOOLKITDIR
if
(
-
d
$JRETOOLKITDIR
);
$JAVALIB
.=
$L
.
$JRETHREADDIR
if
(
-
d
$JRETHREADDIR
);;
}
}
elsif
(
$platform
=~
m/cygwin|mingw32/
)
elsif
(
$platform
=~
m/cygwin|mingw32/
)
{
$SOLARLIB
=
$L
.
$par_dir
.
$LIB
.
{
$SOLARLIB
=
$L
.
$par_dir
.
$LIB
.
...
@@ -1280,7 +1279,7 @@ $SOLARINC = $I.$cur_dir.
...
@@ -1280,7 +1279,7 @@ $SOLARINC = $I.$cur_dir.
$I
.
'$SOLARENV'
.
$INC
.
$I
.
'$SOLARENV'
.
$INC
.
$I
.
'$SRC_ROOT'
.
$ds
.
"res"
;
$I
.
'$SRC_ROOT'
.
$ds
.
"res"
;
if
(
$platform
=~
m/solaris|linux|freebsd|netbsd|aix|openbsd|dragonfly/
)
if
(
$platform
=~
m/solaris|linux|freebsd|netbsd|aix|openbsd|dragonfly/
&&
'@CROSS_COMPILING@'
ne
'YES'
)
{
{
if
(
$platform
=~
m/solaris/
&&
!
$CC
=~
"gcc"
)
if
(
$platform
=~
m/solaris/
&&
!
$CC
=~
"gcc"
)
{
{
...
...
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