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
a14d7766
Kaydet (Commit)
a14d7766
authored
Şub 28, 2011
tarafından
Philipp Lohmann [pl]
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
rsvglibs: add glib dependency.
üst
e0df9bc3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
337 additions
and
0 deletions
+337
-0
glib-2.28.1.patch
glib/glib-2.28.1.patch
+41
-0
makefile.mk
glib/makefile.mk
+293
-0
build.lst
glib/prj/build.lst
+3
-0
d.lst
glib/prj/d.lst
+0
-0
No files found.
glib/glib-2.28.1.patch
0 → 100644
Dosyayı görüntüle @
a14d7766
--- misc/glib-2.28.1/gio/gzlibcompressor.c 2011-02-11 16:23:12.000000000 +0100
+++ misc/build/glib-2.28.1/gio/gzlibcompressor.c 2011-02-25 15:59:17.000000000 +0100
@@ -73,7 +73,7 @@
g_zlib_compressor_set_gzheader (GZlibCompressor *compressor)
{
/* On win32, these functions were not exported before 1.2.4 */
-#if !defined (G_OS_WIN32) || ZLIB_VERNUM >= 0x1240
+#if (!defined (G_OS_WIN32) && ! defined(BUILD_OS_APPLEOSX)) || ZLIB_VERNUM >= 0x1240
const gchar *filename;
if (compressor->format != G_ZLIB_COMPRESSOR_FORMAT_GZIP ||
--- misc/glib-2.28.1/gio/gzlibdecompressor.c 2011-02-11 16:23:12.000000000 +0100
+++ misc/build/glib-2.28.1/gio/gzlibdecompressor.c 2011-02-25 16:00:43.000000000 +0100
@@ -76,7 +76,7 @@
g_zlib_decompressor_set_gzheader (GZlibDecompressor *decompressor)
{
/* On win32, these functions were not exported before 1.2.4 */
-#if !defined (G_OS_WIN32) || ZLIB_VERNUM >= 0x1240
+#if (!defined (G_OS_WIN32) && !defined(BUILD_OS_APPLEOSX)) || ZLIB_VERNUM >= 0x1240
if (decompressor->format != G_ZLIB_COMPRESSOR_FORMAT_GZIP)
return;
@@ -376,7 +376,7 @@
*bytes_read = inbuf_size - decompressor->zstream.avail_in;
*bytes_written = outbuf_size - decompressor->zstream.avail_out;
-#if !defined (G_OS_WIN32) || ZLIB_VERNUM >= 0x1240
+#if (!defined (G_OS_WIN32) && !defined(BUILD_OS_APPLEOSX)) || ZLIB_VERNUM >= 0x1240
if (decompressor->header_data != NULL &&
decompressor->header_data->gzheader.done == 1)
{
--- misc/glib-2.28.1/glib/gatomic.c 2011-02-11 16:23:12.000000000 +0100
+++ misc/build/glib-2.28.1/glib/gatomic.c 2011-02-25 15:51:45.000000000 +0100
@@ -28,6 +28,7 @@
#endif
#include "gatomic.h"
+#include "gthread.h"
#include "gthreadprivate.h"
/**
glib/makefile.mk
0 → 100644
Dosyayı görüntüle @
a14d7766
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
=
.
PRJNAME
=
glib
TARGET
=
so_glib
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
.IF
"$(SYSTEM_GLIB)"
==
"YES"
all
:
@echo
"An already available installation of glib should exist on your system."
@echo
"Therefore the version provided here does not need to be built in addition."
.ENDIF
# --- Files --------------------------------------------------------
GLIBVERSION
=
2.28.1
TARFILE_NAME
=
$(PRJNAME)
-
$(GLIBVERSION)
TARFILE_MD5
=
9f6e85e1e38490c3956f4415bcd33e6e
PATCH_FILES
=
glib-2.28.1.patch
CONFIGURE_LDFLAGS
=
"-L
$(SOLARLIBDIR)
"
CONFIGURE_DIR
=
CONFIGURE_ACTION
=
$(AUGMENT_LIBRARY_PATH)
\
.
$/
configure
--prefix
=
$(SRC_ROOT)$/$(PRJNAME)$/$(MISC)
\
CFLAGS
=
"
$(ARCH_FLAGS)
$(EXTRA_CFLAGS)
-I
$(SOLARINCDIR)$/
external"
\
LDFLAGS
=
"
$(CONFIGURE_LDFLAGS)
"
CONFIGURE_FLAGS
=
--disable-fam
.IF
"$(OS)"
==
"MACOSX"
CONFIGURE_FLAGS
+=
CPPFLAGS
=
"
$(ARCH_FLAGS)
$(EXTRA_CDEFS)
"
.ENDIF
BUILD_ACTION
=
$(AUGMENT_LIBRARY_PATH)
$(GNUMAKE)
BUILD_DIR
=
$(CONFIGURE_DIR)
.IF
"$(OS)"
==
"MACOSX"
OUT2LIB
+=
gio/.libs/libgio-2.0.0.dylib
OUT2LIB
+=
glib/.libs/libglib-2.0.0.dylib
OUT2LIB
+=
gmodule/.libs/libgmodule-2.0.0.dylib
OUT2LIB
+=
gobject/.libs/libgobject-2.0.0.dylib
OUT2LIB
+=
gthread/.libs/libgthread-2.0.0.dylib
OUT2INC
+=
glib/glib.h
OUT2INC
+=
glib/glib-object.h
OUT2INC
+=
gmodule/gmodule.h
OUT2INC
+=
gio/gdesktopappinfo.h
OUT2INC
+=
gio/gunixcredentialsmessage.h
OUT2INC
+=
gio/gunixinputstream.h
OUT2INC
+=
gio/gunixsocketaddress.h
OUT2INC
+=
gio/gfiledescriptorbased.h
OUT2INC
+=
gio/gunixfdlist.h
OUT2INC
+=
gio/gunixmounts.h
OUT2INC
+=
gio/gunixconnection.h
OUT2INC
+=
gio/gunixfdmessage.h
OUT2INC
+=
gio/gunixoutputstream.h
OUT2INC
+=
gio/gaction.h
OUT2INC
+=
gio/gfileicon.h
OUT2INC
+=
gio/gproxyaddressenumerator.h
OUT2INC
+=
gio/gactiongroup.h
OUT2INC
+=
gio/gfileinfo.h
OUT2INC
+=
gio/gproxyresolver.h
OUT2INC
+=
gio/gappinfo.h
OUT2INC
+=
gio/gfileinputstream.h
OUT2INC
+=
gio/gresolver.h
OUT2INC
+=
gio/gapplication.h
OUT2INC
+=
gio/gfileiostream.h
OUT2INC
+=
gio/gseekable.h
OUT2INC
+=
gio/gapplicationcommandline.h
OUT2INC
+=
gio/gfilemonitor.h
OUT2INC
+=
gio/gsettings.h
OUT2INC
+=
gio/gasyncinitable.h
OUT2INC
+=
gio/gfilenamecompleter.h
OUT2INC
+=
gio/gsettingsbackend.h
OUT2INC
+=
gio/gasyncresult.h
OUT2INC
+=
gio/gfileoutputstream.h
OUT2INC
+=
gio/gsimpleaction.h
OUT2INC
+=
gio/gbufferedinputstream.h
OUT2INC
+=
gio/gfilterinputstream.h
OUT2INC
+=
gio/gsimpleactiongroup.h
OUT2INC
+=
gio/gbufferedoutputstream.h
OUT2INC
+=
gio/gfilteroutputstream.h
OUT2INC
+=
gio/gsimpleasyncresult.h
OUT2INC
+=
gio/gcancellable.h
OUT2INC
+=
gio/gicon.h
OUT2INC
+=
gio/gsimplepermission.h
OUT2INC
+=
gio/gcharsetconverter.h
OUT2INC
+=
gio/ginetaddress.h
OUT2INC
+=
gio/gsocket.h
OUT2INC
+=
gio/gcontenttype.h
OUT2INC
+=
gio/ginetsocketaddress.h
OUT2INC
+=
gio/gsocketaddress.h
OUT2INC
+=
gio/gconverter.h
OUT2INC
+=
gio/ginitable.h
OUT2INC
+=
gio/gsocketaddressenumerator.h
OUT2INC
+=
gio/gconverterinputstream.h
OUT2INC
+=
gio/ginputstream.h
OUT2INC
+=
gio/gsocketclient.h
OUT2INC
+=
gio/gconverteroutputstream.h
OUT2INC
+=
gio/gio.h
OUT2INC
+=
gio/gsocketconnectable.h
OUT2INC
+=
gio/gcredentials.h
OUT2INC
+=
gio/gioenums.h
OUT2INC
+=
gio/gsocketconnection.h
OUT2INC
+=
gio/gdatainputstream.h
OUT2INC
+=
gio/gioenumtypes.h
OUT2INC
+=
gio/gsocketcontrolmessage.h
OUT2INC
+=
gio/gdataoutputstream.h
OUT2INC
+=
gio/gioerror.h
OUT2INC
+=
gio/gsocketlistener.h
OUT2INC
+=
gio/gdbusaddress.h
OUT2INC
+=
gio/giomodule.h
OUT2INC
+=
gio/gsocketservice.h
OUT2INC
+=
gio/gdbusauthobserver.h
OUT2INC
+=
gio/gioscheduler.h
OUT2INC
+=
gio/gsrvtarget.h
OUT2INC
+=
gio/gdbusconnection.h
OUT2INC
+=
gio/giostream.h
OUT2INC
+=
gio/gtcpconnection.h
OUT2INC
+=
gio/gdbuserror.h
OUT2INC
+=
gio/giotypes.h
OUT2INC
+=
gio/gtcpwrapperconnection.h
OUT2INC
+=
gio/gdbusintrospection.h
OUT2INC
+=
gio/gloadableicon.h
OUT2INC
+=
gio/gthemedicon.h
OUT2INC
+=
gio/gdbusmessage.h
OUT2INC
+=
gio/gmemoryinputstream.h
OUT2INC
+=
gio/gthreadedsocketservice.h
OUT2INC
+=
gio/gdbusmethodinvocation.h
OUT2INC
+=
gio/gmemoryoutputstream.h
OUT2INC
+=
gio/gtlsbackend.h
OUT2INC
+=
gio/gdbusnameowning.h
OUT2INC
+=
gio/gmount.h
OUT2INC
+=
gio/gtlscertificate.h
OUT2INC
+=
gio/gdbusnamewatching.h
OUT2INC
+=
gio/gmountoperation.h
OUT2INC
+=
gio/gtlsclientconnection.h
OUT2INC
+=
gio/gdbusproxy.h
OUT2INC
+=
gio/gnativevolumemonitor.h
OUT2INC
+=
gio/gtlsconnection.h
OUT2INC
+=
gio/gdbusserver.h
OUT2INC
+=
gio/gnetworkaddress.h
OUT2INC
+=
gio/gtlsserverconnection.h
OUT2INC
+=
gio/gdbusutils.h
OUT2INC
+=
gio/gnetworkservice.h
OUT2INC
+=
gio/gvfs.h
OUT2INC
+=
gio/gdrive.h
OUT2INC
+=
gio/goutputstream.h
OUT2INC
+=
gio/gvolume.h
OUT2INC
+=
gio/gemblem.h
OUT2INC
+=
gio/gpermission.h
OUT2INC
+=
gio/gvolumemonitor.h
OUT2INC
+=
gio/gemblemedicon.h
OUT2INC
+=
gio/gpollableinputstream.h
OUT2INC
+=
gio/gzlibcompressor.h
OUT2INC
+=
gio/gfile.h
OUT2INC
+=
gio/gpollableoutputstream.h
OUT2INC
+=
gio/gzlibdecompressor.h
OUT2INC
+=
gio/gfileattribute.h
OUT2INC
+=
gio/gproxy.h
OUT2INC
+=
gio/gfileenumerator.h
OUT2INC
+=
gio/gproxyaddress.h
OUT2INC
+=
glib/galloca.h
OUT2INC
+=
glib/gconvert.h
OUT2INC
+=
glib/gi18n.h
OUT2INC
+=
glib/goption.h
OUT2INC
+=
glib/gscanner.h
OUT2INC
+=
glib/gthreadpool.h
OUT2INC
+=
glib/garray.h
OUT2INC
+=
glib/gdataset.h
OUT2INC
+=
glib/giochannel.h
OUT2INC
+=
glib/gpattern.h
OUT2INC
+=
glib/gsequence.h
OUT2INC
+=
glib/gtimer.h
OUT2INC
+=
glib/gasyncqueue.h
OUT2INC
+=
glib/gdate.h
OUT2INC
+=
glib/gkeyfile.h
OUT2INC
+=
glib/gpoll.h
OUT2INC
+=
glib/gshell.h
OUT2INC
+=
glib/gtimezone.h
OUT2INC
+=
glib/gatomic.h
OUT2INC
+=
glib/gdatetime.h
OUT2INC
+=
glib/glist.h
OUT2INC
+=
glib/gprimes.h
OUT2INC
+=
glib/gslice.h
OUT2INC
+=
glib/gtree.h
OUT2INC
+=
glib/gbacktrace.h
OUT2INC
+=
glib/gdir.h
OUT2INC
+=
glib/gmacros.h
OUT2INC
+=
glib/gprintf.h
OUT2INC
+=
glib/gslist.h
OUT2INC
+=
glib/gtypes.h
OUT2INC
+=
glib/gbase64.h
OUT2INC
+=
glib/gerror.h
OUT2INC
+=
glib/gmain.h
OUT2INC
+=
glib/gqsort.h
OUT2INC
+=
glib/gspawn.h
OUT2INC
+=
glib/gunicode.h
OUT2INC
+=
glib/gbitlock.h
OUT2INC
+=
glib/gfileutils.h
OUT2INC
+=
glib/gmappedfile.h
OUT2INC
+=
glib/gquark.h
OUT2INC
+=
glib/gstdio.h
OUT2INC
+=
glib/gurifuncs.h
OUT2INC
+=
glib/gbookmarkfile.h
OUT2INC
+=
glib/ghash.h
OUT2INC
+=
glib/gmarkup.h
OUT2INC
+=
glib/gqueue.h
OUT2INC
+=
glib/gstrfuncs.h
OUT2INC
+=
glib/gutils.h
OUT2INC
+=
glib/gcache.h
OUT2INC
+=
glib/ghook.h
OUT2INC
+=
glib/gmem.h
OUT2INC
+=
glib/grand.h
OUT2INC
+=
glib/gstring.h
OUT2INC
+=
glib/gvariant.h
OUT2INC
+=
glib/gchecksum.h
OUT2INC
+=
glib/ghostutils.h
OUT2INC
+=
glib/gmessages.h
OUT2INC
+=
glib/gregex.h
OUT2INC
+=
glib/gtestutils.h
OUT2INC
+=
glib/gvarianttype.h
OUT2INC
+=
glib/gcompletion.h
OUT2INC
+=
glib/gi18n-lib.h
OUT2INC
+=
glib/gnode.h
OUT2INC
+=
glib/grel.h
OUT2INC
+=
glib/gthread.h
OUT2INC
+=
glib/gwin32.h
OUT2INC
+=
gobject/gbinding.h
OUT2INC
+=
gobject/gmarshal.h
OUT2INC
+=
gobject/gparamspecs.h
OUT2INC
+=
gobject/gtypemodule.h
OUT2INC
+=
gobject/gvaluecollector.h
OUT2INC
+=
gobject/gboxed.h
OUT2INC
+=
gobject/gobject.h
OUT2INC
+=
gobject/gsignal.h
OUT2INC
+=
gobject/gtypeplugin.h
OUT2INC
+=
gobject/gvaluetypes.h
OUT2INC
+=
gobject/gclosure.h
OUT2INC
+=
gobject/gobjectnotifyqueue.c
OUT2INC
+=
gobject/gsourceclosure.h
OUT2INC
+=
gobject/gvalue.h
OUT2INC
+=
gobject/genums.h
OUT2INC
+=
gobject/gparam.h
OUT2INC
+=
gobject/gtype.h
OUT2INC
+=
gobject/gvaluearray.h
.ELIF
"$(OS)"
==
"WNT"
.ELSE
.ENDIF
# --- Targets ------------------------------------------------------
.INCLUDE
:
set_ext.mk
.INCLUDE
:
target.mk
.INCLUDE
:
tg_ext.mk
glib/prj/build.lst
0 → 100644
Dosyayı görüntüle @
a14d7766
gl glib : gettext NULL
gl glib usr1 - all gl_mkout NULL
gl glib nmake - all gl_glib NULL
glib/prj/d.lst
0 → 100644
Dosyayı görüntüle @
a14d7766
This diff is collapsed.
Click to expand it.
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