stx_libbasic2.st
author Claus Gittinger <cg@exept.de>
Wed, 01 Oct 2014 14:45:06 +0200
changeset 3347 b59337b5891e
parent 3320 2f2efbd80f0c
child 3363 661537bcd48e
permissions -rw-r--r--
added: RandomMT19937
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     1
"
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
     3
	      All Rights Reserved
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     4
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     5
 This software is furnished under a license and may be used
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     6
 only in accordance with the terms of that license and with the
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     8
 be provided or otherwise made available to, or used by, any
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     9
 other person.  No title to or ownership of the software is
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    10
 hereby transferred.
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    11
"
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic2' }"
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
LibraryDefinition subclass:#stx_libbasic2
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
1857
50f7618b6311 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1849
diff changeset
    18
	category:'* Projects & Packages *'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    21
!stx_libbasic2 class methodsFor:'documentation'!
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    22
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    23
copyright
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    24
"
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
    26
	      All Rights Reserved
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    27
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    28
 This software is furnished under a license and may be used
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    29
 only in accordance with the terms of that license and with the
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    31
 be provided or otherwise made available to, or used by, any
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    32
 other person.  No title to or ownership of the software is
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    33
 hereby transferred.
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    34
"
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    35
!
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    36
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    37
documentation
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    38
"
3320
2f2efbd80f0c class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3300
diff changeset
    39
    Package documentation:
2f2efbd80f0c class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3300
diff changeset
    40
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    41
    This library contains additional basic (nonGUI) classes.
3320
2f2efbd80f0c class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3300
diff changeset
    42
2f2efbd80f0c class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3300
diff changeset
    43
    These are less fundamental as in libbasic and not required by most applications.
2f2efbd80f0c class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3300
diff changeset
    44
    Beside additional container classes, this includes URL support, Zip support,
2f2efbd80f0c class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3300
diff changeset
    45
    PTY, Serialline, Socket and IP addresses, and various other less frequently needed
2f2efbd80f0c class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3300
diff changeset
    46
    support stuff.
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    47
"
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    48
! !
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
!stx_libbasic2 class methodsFor:'description'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
1879
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    52
excludedFromPreRequisites
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    53
    ^ #(
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    54
        #'exept:libcrypt'    "Rc4Cipher - referenced by RandomGenerator class>>new "
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    55
        #'stx:goodies/communication'    "FTPClient - referenced by FtpURI>>writeStreamDo:create:atomic: "
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    56
        #'stx:libtool'    "FileBrowser - referenced by Archiver::ArchiverOutputParser>>parseLine:forItemClass: "
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    57
        #'stx:libview2'    "MIMETypes - referenced by Archiver::ArchiverOutputParser>>parseLine:forItemClass: "
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    58
        #'stx:libwidg'    "DialogBox - referenced by Archiver::CompressedFile>>compressFile:to: "
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    59
        #'stx:libhtml'    "HTMLParser - referenced by HTMLUtilities class>>plainTextOfHTML: "
1879
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    60
    )
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    61
!
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    62
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    63
mandatoryPreRequisites
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    64
    "list all required mandatory packages.
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    65
     Packages are mandatory, if they contain superclasses of the package's classes
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    66
     or classes which are extended by this package.
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
    67
     This list can be maintained manually or (better) generated and
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    68
     updated by scanning the superclass hierarchies
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    69
     (the browser has a menu function for that)
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    70
     However, often too much is found, and you may want to explicitely
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    71
     exclude individual packages in the #excludedFromPreRequisites method."
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
    72
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
    ^ #(
2987
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    74
        #'stx:libbasic'    "AbstractNumberVector - superclass of IntegerArray "
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    75
    )
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    76
!
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    77
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    78
referencedPreRequisites
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    79
    "list all packages containing classes referenced by the packages's members.
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    80
     This list can be maintained manually or (better) generated and
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    81
     updated by looking for global variable accesses
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    82
     (the browser has a menu function for that)
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    83
     However, often too much is found, and you may want to explicitely
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    84
     exclude individual packages in the #excludedFromPreRequisites method."
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    85
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    86
    ^ #(
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
    )
2987
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    88
!
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    89
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    90
subProjects
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    91
    "list packages which are known as subprojects.
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    92
     The generated makefile will enter those and make there as well.
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    93
     However: they are not forced to be loaded when a package is loaded;
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    94
     for those, redefine requiredPrerequisites"
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    95
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    96
    ^ #(
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    97
    )
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
! !
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
!stx_libbasic2 class methodsFor:'description - compilation'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
2248
0c599f0d812c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2232
diff changeset
   102
additionalBaseAddressDefinition_bc_dot_mak
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   103
    "this is an optional definition, which (if present) may speed up the dll-loading a little
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   104
     on win32 systems."
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   105
1703
24ee7963195e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   106
    ^ '
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   107
# see stdHeader_bc for LIBBASIC2_BASE
2248
0c599f0d812c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2232
diff changeset
   108
LIB_BASE=$(LIBBASIC2_BASE)
1703
24ee7963195e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   109
'
1690
c422f6199c5f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
   110
!
c422f6199c5f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
   111
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   112
additionalLinkLibraries_bc_dot_mak
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   113
"/    ^ '$(ZLIB) $(BZ2LIB)'
3125
00b479560820 class: stx_libbasic2
Stefan Vogel <sv@exept.de>
parents: 3109
diff changeset
   114
    ^ '$(ZLIB_DIR)\$(ZLIB) ws2_32.lib'
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   115
!
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   116
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   117
additionalLinkLibraries_make_dot_proto
1683
eb117bac0f75 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
   118
    ^ '$(ZLIB_LD_ARG) $(BZ2LIB_LD_ARG)'
eb117bac0f75 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
   119
!
eb117bac0f75 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
   120
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   121
additionalRules_bc_dot_mak
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   122
    ^ '
1806
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   123
$(ZLIB):
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   124
	cd $(ZLIB_DIR)
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   125
	$(MAKE) $(MAKE_ZLIB_ARG) $(ZLIB)
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   126
	cd ..\..\libbasic2
1806
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   127
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   128
$(BZ2LIB):
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   129
	cd $(BZ2LIB_DIR)
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   130
	$(MAKE) $(MAKE_BZ2LIB_ARG) bz2.lib
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   131
	cd ..\..\libbasic2
1806
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   132
'
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   133
!
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   134
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   135
additionalRules_make_dot_proto
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   136
    ^ '
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   137
zlib:
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   138
	cd $(ZLIB_DIR); $(MAKE) $(MAKE_ZLIB_ARG)
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   139
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   140
bz2lib:
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   141
	cd $(BZ2LIB_DIR); $(MAKE) $(MAKE_BZ2LIB_ARG) libbz2.a
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   142
'
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   143
!
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   144
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   145
additionalTargets_bc_dot_mak
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   146
"/    ^ '$(BZ2LIB) $(ZLIB)'      bz2lib doesn't work for now
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   147
    ^ '$(ZLIB)'
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   148
!
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   149
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   150
additionalTargets_make_dot_proto
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   151
    ^ 'bz2lib zlib'
1738
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   152
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   153
    "Created: / 05-09-2006 / 16:05:12 / cg"
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   154
!
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   155
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   156
localIncludes
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   157
    ^ '-I$(ZLIB_DIR)'
1732
f6a1de369941 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1723
diff changeset
   158
1739
0b7c61afb2c8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
   159
    "Created: / 06-09-2006 / 18:18:15 / cg"
1732
f6a1de369941 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1723
diff changeset
   160
!
f6a1de369941 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1723
diff changeset
   161
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   162
stcOptimizationOptions
2539
58371ca3591f changed: #stcOptimizationOptions
Claus Gittinger <cg@exept.de>
parents: 2535
diff changeset
   163
    ^ '+optinline +optinline2 +inlinenew'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
2539
58371ca3591f changed: #stcOptimizationOptions
Claus Gittinger <cg@exept.de>
parents: 2535
diff changeset
   165
    "Modified: / 21-02-2011 / 14:13:24 / cg"
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   166
! !
2248
0c599f0d812c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2232
diff changeset
   167
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   168
!stx_libbasic2 class methodsFor:'description - contents'!
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   169
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   170
classNamesAndAttributes
2360
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   171
    "lists the classes which are to be included in the project.
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   172
     Each entry in the list may be: a single class-name (symbol),
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   173
     or an array-literal consisting of class name and attributes.
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   174
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   175
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   176
    ^ #(
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   177
        "<className> or (<className> attributes...) in load order"
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   178
        ActorStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   179
        Archiver
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   180
        BTree
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   181
        BackgroundJob
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   182
        BaseNCoder
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   183
        Bezier
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   184
        BinaryTree
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   185
        BinaryTreeNode
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   186
        BitArray
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   187
        BoltLock
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   188
        CRC32Stream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   189
        CacheDictionary
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   190
        CachedValue
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   191
        CharacterSet
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   192
        Circle
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   193
        CollectingReadStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   194
        CompressionStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   195
        Curve
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   196
        DirectoryContents
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   197
        EllipticalArc
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   198
        ExternalLong
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   199
        FileSorter
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   200
        FilteringStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   201
        FourByteString
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   202
        Future
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   203
        HTMLUtilities
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   204
        HalfFloatArray
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   205
        Heap
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   206
        IdentityBag
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   207
        IncrementNotification
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   208
        InterestConverterWithParameters
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   209
        Iterator
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   210
        JISEncodedString
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   211
        Lazy
2759
bedbb76275b1 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2750
diff changeset
   212
        LazyArray
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   213
        LineSegment
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   214
        List
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   215
        MappedCollection
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   216
        Monitor
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   217
        MultiReadStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   218
        NameLookupError
2609
c18dc7ad61cf automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2600
diff changeset
   219
        OperationQueue
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   220
        PhoneticStringUtilities
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   221
        Polygon
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   222
        PrinterStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   223
        PrintfScanf
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   224
        Promise
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   225
        Queue
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   226
        Random
3347
b59337b5891e added: RandomMT19937
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   227
        (RandomMT19937 autoload)
b59337b5891e added: RandomMT19937
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   228
        (RandomParkMiller autoload)
2609
c18dc7ad61cf automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2600
diff changeset
   229
        RandomTT800
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   230
        ReindexedCollection
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   231
        RunArray
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   232
        SegmentedOrderedCollection
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   233
        SelectingReadStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   234
        SequenceWithSentinel
2609
c18dc7ad61cf automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2600
diff changeset
   235
        SerialPort
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   236
        SharedCollection
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   237
        Singleton
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   238
        SmallBag
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   239
        Socket
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   240
        SocketAddress
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   241
        SocketAddressInfo
3300
21f5f634fd13 Make SortedSet and SpilltingWriteStream compiled
Stefan Vogel <sv@exept.de>
parents: 3275
diff changeset
   242
        SortedSet
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   243
        SoundStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   244
        Spline
3300
21f5f634fd13 Make SortedSet and SpilltingWriteStream compiled
Stefan Vogel <sv@exept.de>
parents: 3275
diff changeset
   245
        SplittingWriteStream
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   246
        Stack
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   247
        StringPattern
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   248
        StringUtilities
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   249
        TSTree
3260
1a4448362d72 Added TSMultiTree, a variant of TSTree that allows for multiple values to be stored
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3244
diff changeset
   250
        TSTreeNode
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   251
        TerminalSession
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   252
        Text
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   253
        TextStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   254
        TreeSet
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   255
        URI
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   256
        UUID
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   257
        UnboxedIntegerArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   258
        UndoSupport
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   259
        UnitConverter
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   260
        VirtualArray
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   261
        ZipArchiveConstants
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   262
        #'stx_libbasic2'
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   263
        AATree
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   264
        AATreeNode
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   265
        Arrow
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   266
        ArrowedSpline
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   267
        BackgroundPeriodicalJob
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   268
        BackgroundQueueProcessingJob
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   269
        Base32Coder
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   270
        Base64Coder
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   271
        Bezier2Segment
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   272
        BooleanArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   273
        CacheDictionaryWithFactory
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   274
        FilteringLineStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   275
        HierarchicalURI
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   276
        HostAddressLookupError
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   277
        HostNameLookupError
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   278
        IPSocketAddress
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   279
        IntegerArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   280
        LineNumberReadStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   281
        LongIntegerArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   282
        PostscriptPrinterStream
3260
1a4448362d72 Added TSMultiTree, a variant of TSTree that allows for multiple values to be stored
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3244
diff changeset
   283
        RandomGenerator
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   284
        SharedQueue
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   285
        SignedIntegerArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   286
        SignedLongIntegerArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   287
        SignedWordArray
3260
1a4448362d72 Added TSMultiTree, a variant of TSTree that allows for multiple values to be stored
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3244
diff changeset
   288
        TSMultiTree
1a4448362d72 Added TSMultiTree, a variant of TSTree that allows for multiple values to be stored
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3244
diff changeset
   289
        TSMultiTreeNode
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   290
        TimedPromise
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   291
        UDSocketAddress
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   292
        Unicode32String
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   293
        WordArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   294
        ZipArchive
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   295
        ZipStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   296
        FileURI
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   297
        FtpURI
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   298
        HttpURI
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   299
        IPv6SocketAddress
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   300
        SftpURI
3347
b59337b5891e added: RandomMT19937
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   301
        (CompressionStreamTest autoload)
b59337b5891e added: RandomMT19937
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   302
        (BZip2Stream unix autoload)
3260
1a4448362d72 Added TSMultiTree, a variant of TSTree that allows for multiple values to be stored
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3244
diff changeset
   303
        (PluggableDictionary autoload)
1a4448362d72 Added TSMultiTree, a variant of TSTree that allows for multiple values to be stored
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3244
diff changeset
   304
        (PluggableSet autoload)
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   305
        (AppletalkSocketAddress autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   306
        (BIG5EncodedString autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   307
        (CollectingSharedQueueStream autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   308
        (Cons autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   309
        (ConsStream autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   310
        (DecNetSocketAddress autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   311
        (EpsonFX1PrinterStream autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   312
        (FileText autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   313
        (GBEncodedString autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   314
        (HPLjetIIPrinterStream autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   315
        (HandlerCollection autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   316
        (InternalPipeStream autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   317
        (KSCEncodedString autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   318
        (KeywordInContextIndexBuilder autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   319
        (LazyCons autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   320
        (LazyValue autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   321
        (MessageChannel autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   322
        (NumberSet autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   323
        (PowerSet autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   324
        (SequenceableCollectionSorter autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   325
        (UnixPTYStream autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   326
        (ValueLink autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   327
        (WinAPIFunction autoload)
2653
129db31677d1 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
   328
        (AVLTree autoload)
2759
bedbb76275b1 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2750
diff changeset
   329
        (Trie autoload)
2887
935939d19c75 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 2885
diff changeset
   330
        (ActiveObject autoload)
2943
3d7b1ff12bc4 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
   331
        (LoggingStream autoload)
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   332
    )
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   333
!
1767
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   334
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   335
extensionMethodNames
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   336
    "lists the extension methods which are to be included in the project.
3237
1318c25afd44 changed: TimeStamp #-
Claus Gittinger <cg@exept.de>
parents: 3177
diff changeset
   337
     Entries are pairwise elements, consisting of class-name and selector."
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   338
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   339
    ^ #(
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   340
        CharacterArray asKoelnerPhoneticCode
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   341
        CharacterArray asSoundexCode
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   342
        CharacterArray printf:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   343
        CharacterArray printf:on:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   344
        CharacterArray printfWith:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   345
        CharacterArray printfWith:with:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   346
        CharacterArray printfWith:with:with:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   347
        CharacterArray printfWith:with:with:with:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   348
        CharacterArray #'printf_formatArgCount'
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   349
        CharacterArray #'printf_printArgFrom:to:withData:'
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   350
        CharacterArray #'printf_printOn:withData:'
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   351
        CharacterArray scanf:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   352
        CharacterArray #'scanf_scanArgFrom:to:format:'
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   353
        CharacterArray sscanf:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   354
        Float absDecimalPrintOn:digits:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   355
        Float absPrintOn:digits:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   356
        Float absScientificPrintOn:digits:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   357
        Object addInterest:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   358
        Object expressInterestIn:for:sendBack:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   359
        Object interests
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   360
        Object interestsFor:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   361
        Object onChangeEvaluate:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   362
        Object onChangeSend:to:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   363
        Object removeInterest:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   364
        Object retractInterestIn:for:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   365
        Object retractInterests
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   366
        Object retractInterestsFor:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   367
        Object retractInterestsForWhich:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   368
        Object retractInterestsIn:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   369
        Object when:send:to:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   370
        Stream collecting:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   371
        Stream selecting:
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   372
        Object removeActionsForEvent:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   373
        Object removeActionsWithReceiver:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   374
        Object removeAllActionsWithReceiver:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   375
        Object trigger:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   376
        Object trigger:with:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   377
        Object triggerEvent:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   378
        Object triggerEvent:with:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   379
        Object triggerEvent:withArguments:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   380
        Object when:send:to:with:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   381
        Object when:sendTo:
1767
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   382
    )
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   383
! !
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   384
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   385
!stx_libbasic2 class methodsFor:'description - project information'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   386
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   387
applicationIconFileName
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   388
    "Return the name (without suffix) of an icon-file (the app's icon); will be included in the rc-resource file"
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   389
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   390
    ^ nil
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   391
    "/ ^ self applicationName
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   392
!
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   393
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   394
companyName
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   395
    "Return a companyname which will appear in <lib>.rc"
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   396
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   397
    ^ 'eXept Software AG'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   398
!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   399
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   400
description
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   401
    "Return a description string which will appear in nt.def / bc.def"
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   402
1740
9a2696245a64 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
   403
    ^ 'Smalltalk/X Additional Basic Classes'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   404
1740
9a2696245a64 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
   405
    "Modified: / 14-09-2006 / 10:57:15 / cg"
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   406
!
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   407
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   408
legalCopyright
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   409
    "Return a copyright string which will appear in <lib>.rc"
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   410
2750
50f786768873 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
   411
    ^ 'Copyright Claus Gittinger 1988-2012\nCopyright eXept Software AG 1998-2012'
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   412
2750
50f786768873 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
   413
    "Modified: / 18-07-2012 / 19:11:22 / cg"
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   414
!
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   415
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   416
productName
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   417
    "Return a product name which will appear in <lib>.rc"
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   418
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   419
    ^ 'Smalltalk/X'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   420
! !
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   421
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   422
!stx_libbasic2 class methodsFor:'documentation'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   423
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   424
version
3347
b59337b5891e added: RandomMT19937
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   425
    ^ '$Header: /cvs/stx/stx/libbasic2/stx_libbasic2.st,v 1.110 2014-10-01 12:45:06 cg Exp $'
2284
141696a39190 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   426
!
141696a39190 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   427
141696a39190 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   428
version_CVS
3347
b59337b5891e added: RandomMT19937
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   429
    ^ '$Header: /cvs/stx/stx/libbasic2/stx_libbasic2.st,v 1.110 2014-10-01 12:45:06 cg Exp $'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   430
! !
2885
36e6a080007f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
   431