• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Documentation/H05-Apr-2020-16,17413,702

Examples/H05-Apr-2020-2,1891,694

Headers/H05-Apr-2020-44,41519,034

NSCharacterSets/H05-Apr-2020-85

NSTimeZones/H03-May-2022-16148

Resources/H05-Apr-2020-6,5496,387

Source/H03-May-2022-249,202218,709

Support/Foundation/H05-Apr-2020-3433

Tests/H05-Apr-2020-36,22330,212

Tools/H05-Apr-2020-35,62128,867

base.xcodeproj/H05-Apr-2020-4,1994,182

config/H05-Apr-2020-2,0951,678

macosx/H05-Apr-2020-2,0481,953

.gitignoreH A D05-Apr-20201.5 KiB6757

.travis.ymlH A D05-Apr-20203.1 KiB7473

ANNOUNCEH A D05-Apr-20208.6 KiB176163

CODEOWNERSH A D05-Apr-2020226 65

COPYINGH A D05-Apr-202017.6 KiB340281

COPYINGv3H A D05-Apr-202034.3 KiB676553

ChangeLogH A D05-Apr-2020763.6 KiB22,20017,036

ChangeLog.1H A D05-Apr-2020415.8 KiB10,8728,290

ChangeLog.2H A D05-Apr-2020608.8 KiB16,20212,191

GNUmakefileH A D05-Apr-20202.5 KiB8336

INSTALLH A D05-Apr-20205.1 KiB131100

MISSINGH A D05-Apr-202026.5 KiB948831

MakefileH A D05-Apr-20201,012 292

Makefile.postambleH A D05-Apr-20203.6 KiB11730

NEWSH A D05-Apr-202050.9 KiB1,280993

READMEH A D05-Apr-20202.5 KiB6548

README.initializeH A D05-Apr-2020929 1915

VersionH A D05-Apr-2020652 2116

base.make.inH A D05-Apr-20203 KiB9376

config.mak.inH A D05-Apr-20203.1 KiB9074

configureH A D03-May-2022434.1 KiB14,53611,640

configure.acH A D05-Apr-2020133.7 KiB3,5333,204

cross.configH A D05-Apr-2020865 3028

gnustep-base.script.spec.inH A D05-Apr-20201.1 KiB4536

gnustep-base.spec.inH A D05-Apr-2020974 2320

gnustep-base.spec.oldH A D05-Apr-20205.9 KiB223188

install.shH A D05-Apr-2020155 115

standalone.confH A D05-Apr-20203.7 KiB9851

travis-deps.shH A D05-Apr-20201.9 KiB6353

README

11 Readme
2********
3
4The GNUstep Base Library is a library of general-purpose, non-graphical
5Objective C objects.  For example, it includes classes for strings,
6object collections, byte streams, typed coders, invocations,
7notifications, notification dispatchers, moments in time, network ports,
8remote object messaging support (distributed objects), and event loops.
9
10   It provides functionality that aims to implement the non-graphical
11portion of the Apple's Cocoa frameworks (the Foundation library) which
12came from the OpenStep standard.
13
141.1 Initial reading
15===================
16
17The file 'NEWS' has the library's feature history.
18
19   The files 'INSTALL' or 'GNUstep-HOWTO' (from the web site) gives
20instructions for installing the library.
21
221.2 License
23===========
24
25The GNUstep libraries and library resources are covered under the GNU
26Lesser Public License.  This means you can use these libraries in any
27program (even non-free programs).  If you distribute the libraries along
28with your program, you must make the improvements you have made to the
29libraries freely available.  You should read the COPYING.LIB file for
30more information.  All files in the 'Source', 'Headers'
31'NSCharacterSets', 'NSTimeZones', and 'Resources' directories and
32subdirectories under this are covered under the LGPL.
33
34   GNUstep tools, test programs, and other files are covered under the
35GNU Public License.  This means if you make changes to these programs,
36you cannot charge a fee, other than distribution fees, for others to use
37the program.  You should read the COPYING file for more information.
38All files in the 'Documentation', 'Examples', 'Tools', 'config', and
39'macosx' directories are covered under the GPL.
40
41   With GNUstep-Base, we strongly recommend the use of the ffcall
42libraries, which provides stack frame handling for NSInvocation and
43NSConnection.  "Ffcall is under GNU GPL. As a special exception, if used
44in GNUstep or in derivate works of GNUstep, the included parts of ffcall
45are under GNU LGPL" (Text in quotes provided by the author of ffcall).
46
471.3 How can you help?
48=====================
49
50   * Give us feedback!  Tell us what you like; tell us what you think
51     could be better.
52
53     Please log bug reports on the GNUstep project page
54     <http://savannah.gnu.org/bugs/?group=gnustep> or send bug reports
55     to <bug-gnustep@gnu.org>.
56
57     Happy hacking!
58
59   Copyright (C) 2005 Free Software Foundation
60
61   Copying and distribution of this file, with or without modification,
62are permitted in any medium without royalty provided the copyright
63notice and this notice are preserved.
64
65

README.initialize

1The libobjc included with older versions of gcc does not have a thread-safe
2implementation of the initialize method. This means that any classes not
3already used may be incorrectly initialised, potentially causing strange
4behaviors and crashes.
5
6To put this into context, the runtime bug has been known for several years
7and only rarely causes problems ... the easy workaround being to ensure that
8any classes used by a new thread have already been used in the main thread
9before the new thread starts.
10
11If you are worried, please build/run GNUstep with a runtime which supports
12the +initialize method. The GNUstep stable runtime (libobjc) and clang
13runtime (libobjc2), available from the GNUstep website and subversion
14repository, should both work.
15
16To disable this warning (eg. for an application which does not suffer any
17problems caused by this runtime bug), please set the GSSilenceInitializeWarning
18user default to YES.");
19