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
ffa651bd
Kaydet (Commit)
ffa651bd
authored
Nis 12, 2013
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix embarassing mess up around gtk+ version detection.
Change-Id: I5a24235f5bb6791f64ba752b01cf185e7a7287cb
üst
694ac815
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
gtkinst.cxx
vcl/unx/gtk/app/gtkinst.cxx
+6
-2
No files found.
vcl/unx/gtk/app/gtkinst.cxx
Dosyayı görüntüle @
ffa651bd
...
@@ -69,9 +69,13 @@ extern "C"
...
@@ -69,9 +69,13 @@ extern "C"
(
int
)
gtk_major_version
,
(
int
)
gtk_minor_version
,
(
int
)
gtk_major_version
,
(
int
)
gtk_minor_version
,
(
int
)
gtk_micro_version
);
(
int
)
gtk_micro_version
);
#endif
#endif
if
(
(
int
)
gtk_major_version
<
2
||
((
int
)
gtk_major_version
==
2
&&
(
int
)
gtk_minor_version
<
4
))
if
(
gtk_major_version
<
2
||
// very unlikely sanity check
(
gtk_major_version
==
2
&&
gtk_minor_version
<
4
)
)
{
g_warning
(
"require a newer gtk than %d.%d for gdk_threads_set_lock_functions"
,
(
int
)
gtk_major_version
,
gtk_minor_version
);
g_warning
(
"require a newer gtk than %d.%d for gdk_threads_set_lock_functions"
,
(
int
)
gtk_major_version
,
gtk_minor_version
);
return
NULL
;
return
NULL
;
}
/* #i92121# workaround deadlocks in the X11 implementation
/* #i92121# workaround deadlocks in the X11 implementation
*/
*/
static
const
char
*
pNoXInitThreads
=
getenv
(
"SAL_NO_XINITTHREADS"
);
static
const
char
*
pNoXInitThreads
=
getenv
(
"SAL_NO_XINITTHREADS"
);
...
...
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