-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
3194 lines (2300 loc) · 118 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2016-03-03 Richard Frith-Macdonald <[email protected]>
* Tools/WrapCreator/WCTypeLoader.m: Allow for 'instancetype' used by
generics.
* Tools/WrapCreator/WCVoidType.h: Fix incorrect guard check
* GNUmakefile (VERSION, PACKAGE_VERSION): Version 1.6.3.
* Source/JIGS.h (GNUSTEP_JAVA_VERSION,
GNUSTEP_JAVA_SUBMINOR_VERSION): Version 1.6.3.
* Source/GNUmakefile (VERSION): Version 1.6.3.
2013-08-18 Nicola Pero <[email protected]>
* GNUmakefile (VERSION, PACKAGE_VERSION): Version 1.6.2.
* Source/JIGS.h (GNUSTEP_JAVA_VERSION,
GNUSTEP_JAVA_SUBMINOR_VERSION): Version 1.6.2.
* Source/GNUmakefile (VERSION): Version 1.6.2.
2013-08-18 Nicola Pero <[email protected]>
* FAQ: Updated.
* INSTALL: Updated.
* NEWS: Updated.
2013-08-18 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.java.template
(Reference_JAVADOC_FILES, Reference_DOC_INSTALL_DIR): Fixed
overriding these variables in GNUmakefile.wrapper.preamble. In
particular, this fixes building the gnustep-base wrapper
documentation.
2013-08-18 Nicola Pero <[email protected]>
* GNUmakefile (VERSION, PACKAGE_VERSION): Version 1.6.1.
* Source/JIGS.h (GNUSTEP_JAVA_VERSION,
GNUSTEP_JAVA_SUBMINOR_VERSION): Version 1.6.1.
* Source/GNUmakefile (VERSION): Version 1.6.1.
2013-02-09 Richard Frith-Macdonald <[email protected]>
* Tools/WrapCreator/main.m:
* Tools/WrapCreator/WCCustomType.m:
* Tools/WrapCreator/WCClass.m:
* Source/JIGSMapper.m:
* Source/JIGSProxySetup.m:
Fix a few 64bit issues and avoid a couple of compiler warnings.
2013-01-28 Nicola Pero <[email protected]>
Version 1.6.0 supports modern Objective-C runtimes.
* GNUmakefile (VERSION): Version 1.6.0.
* Source/GNUmakefile: Version 1.6.0.
* Source/JIGS.h: Version 1.6.0.
2012-01-19 Richard Frith-Macdonald <[email protected]>
* Source/JIGSInit.m: Use class lookup callback setter function if
working with modern runtime.
2011-08-21 Niels Grewe <[email protected]>
* Tools/WrapCreator/WCType.m: Adjust definition of
+sharedTypeWithObjcType: to match its declaration. Add missing
[super dealloc] call.
2011-05-24 Wolfgang Lux <[email protected]>
* Tools/WrapCreator/GNUmakefile: Remove files copied into
$(GNUSTEP_MAKEFILES) upon uninstall.
2011-05-21 Wolfgang Lux <[email protected]>
* Testing/Objc/main.m (main, test_primitive_type): Register Java
classes manually, since automatic registration does not work for
the GNUstep Objective C runtime.
2011-05-21 Wolfgang Lux <[email protected]>
* Source/JIGSInit.m: Include <objc/hooks.h> when compiling with
the GNUstep Objective C runtime.
2011-05-21 Wolfgang Lux <[email protected]>
* Source/ObjcRuntimeUtilities.h:
* Source/JIGSProxy.m:
* Source/JIGSProxySetup.h:
* Source/JIGSProxySetup.m:
* Source/JIGSProxyIMP.h:
* Source/JIGSProxyIMP.m:
* Source/JIGSMapper.m:
* Source/JIGSSelectorMapping.m: Update to use new Objective C API
for registering proxy classes.
* Source/GNUmakefile:
* Source/ObjcRuntimeUtilities.c: Deleted ObjcRuntimeUtilities.c,
since its functions have been superseded by the new Objective C
API.
2011-05-21 Wolfgang Lux <[email protected]>
* Source/JIGSProxySetup.m (_JIGS_register_java_class_simple): Fix
incorrect type in argument to ObjcUtilities_new_class.
2011-05-17 Wolfgang Lux <[email protected]>
* Source/JIGSInit.m:
* Source/JIGSMapper.m:
* Source/JIGSProxyIMP.m:
* Source/JIGSProxySetup.m:
* Source/JIGSSelectorMapping.m:
* Source/NSObject.m:
Use pthread mutexes instead of Objective C runtime mutexes, since
not all runtimes support them.
* Source/JIGSProxySetup.h:
* Source/ObjcRuntimeUtilities.h:
No longer #include <objc/thr.h>
2011-05-02 Wolfgang Lux <[email protected]>
* Makefiles/GNUmakefile:
* Makefiles/GNUstep-Java.csh: Convert GNUstep-Java.sh to C shell
syntax.
* Makefiles/GNUstep-Java.sh: Fix apparent typo, which had the
effect of making all machines appear using an x86 cpu.
2011-03-30 Wolfgang Lux <[email protected]>
* Source/JIGSMapper.m (_JIGSClassMapInsert):
* Source/ObjcRuntimeUtilities.c (ObjcUtilities_new_class,
ObjcUtilities_alloc_method_list):
* Tools/WrapCreator/WCHeaderParser.m (-parseC): Replace obsolete
calls to objc_malloc(), objc_calloc(), and objc_free() by
malloc(), calloc(), and free(), respectively.
2011-03-17 Wolfgang Lux <[email protected]>
* Source/JIGSInit.m (JIGSInitFromJava): Avoid link error on
Darwin/OS X when -base is configured with --enable-fake-main.
2011-03-17 Wolfgang Lux <[email protected]>
* Source/JIGSInit.m (JIGSInitFromJava): Fix improper GS_FAKE_MAIN
check.
2011-03-16 Wolfgang Lux <[email protected]>
* INSTALL: Fix typo.
2011-03-16 Wolfgang Lux <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make: Avoid
non-portable use of sed inline editing.
2010-07-22 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.h: Remove ancient GSCategories.h include
2010-04-14 Richard Frith-Macdonald <[email protected]>
* Source/JIGSProxyIMP.m: workaround for buggy objc_skip_argspec()
in the objc runtime.
2010-02-26 Richard Frith-Macdonald <[email protected]>
* ObjcRuntimeUtilities2.m: Implement for OSX
2010-02-13 Nicola Pero <[email protected]>
* Makefiles/GNUmakefile: Rewritten.
* Source/GNUmakefile: Do not include aggregate.make.
2010-02-13 Nicola Pero <[email protected]>
Use a single ChangeLog for the entire project.
* ChangeLog: Added all old entries from all other ChangeLogs.
* Java/ChangeLog: Removed.
* Source/ChangeLog: Removed.
* Makefiles/ChangeLog: Removed.
* Tools/ChangeLog: Removed.
* Tools/WrapCreator/ChangeLog: Removed.
* Tools/WrapCreator/Examples/ChangeLog: Removed.
* Wrappers/ChangeLog: Removed.
* Wrappers/base/ChangeLog: Removed.
* Wrappers/gui/ChangeLog: Removed.
* Wrappers/libFoundation/ChangeLog: Removed.
* Documentation/ChangeLog: Removed.
* Documentation/Manual/ChangeLog: Removed.
* Testing/ChangeLog: Removed.
* Examples/Java/SimpleGUI/ChangeLog: Removed.
* Examples/Java/SimpleGUI-action/ChangeLog: Removed.
2010-02-13 Nicola Pero <[email protected]>
* Tools/WrapCreator/GNUmakefile (after-install): Rewritten to be
standard and efficient.
2010-02-13 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make
($(WRAPPER_DIR)/stamp-file): Do not substitute debug and profile
when creating the GNUmakefiles for Java and ObjC.
* Tools/WrapCreator/Makefiles/java-wrapper.objc.template (debug,
profile): Do not set.
* Tools/WrapCreator/Makefiles/java-wrapper.java.template (debug,
profile): Do not set. (Reference_JAVADOC_FILES): Set from
JW_FILE_LIST instead of using a
subshell. (Reference_JAVADOC_FILES, Reference_DOC_INSTALL_DIR):
Only set if javadoc is not no.
2010-02-13 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.top.template: Set
GNUSTEP_USE_PARALLEL_AGGREGATE = yes to build the Java and ObjC
parts of the wrappers in parallel.
2010-02-12 Nicola Pero <[email protected]>
Version 1.5.9 includes new wrapper makefiles that support parallel
building and are generally much cleaner and faster. It is
recommended that you use gnustep-make >= 2.2.0 with it.
* GNUmakefile (VERSION): Version 1.5.9
* Source/GNUmakefile: Version 1.5.9.
* Source/JIGS.h: Version 1.5.9.
2010-02-12 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make
($(WRAPPER_DIR)/stamp-file): Rewritten the rule to reduce the
number of subprocesses and steps required and print friendly
messages. New variables implementing messages to print. Display
detailed information only if messages=yes is being used.
(WRAPPER_HEADER): Use := to avoid spawning multiple subprocesses.
2010-02-12 Nicola Pero <[email protected]>
Implemented parallelized builds of java wrappers.
* Tools/WrapCreator/Makefiles/java-wrapper.make: Use ECHO_NOTHING
and END_ECHO instead of @ in most rules.
(after-$(GNUSTEP_INSTANCE)-all, internal-java-wrapper-install_,
internal-java-wrapper-uninstall_): Do not unset MAKEFLAGS before
running a submake as that prevents a parallel build from staying
parallel when compiling the wrappers. Instead, rewritten the code
to manually fire off a Master invocation.
2010-02-11 Nicola Pero <[email protected]>
* Source/GNUmakefile ($(GNUSTEP_OBJ_DIR)/NSObject.o): Removed
explicit dependency rule on header file - modern gnustep-makes
automatically compute dependencies on headers.
Thu Sep 17 10:00:00 2009 Richard Frith-Macdonald <[email protected]>
* Tools/WrapCreator/WCHeaderParser.m: Allow multiple semicolons
terminating statement.
* GNUmakefile (VERSION): Version 1.5.8.
Thu Mar 19 11:00:00 2009 Richard Frith-Macdonald <[email protected]>
* Tools/WrapCreator/WCNSIntegerType.h:
* Tools/WrapCreator/WCNSIntegerType.m:
* Tools/WrapCreator/WCNSUIntegerType.h:
* Tools/WrapCreator/WCNSUIntegerType.m:
* Tools/WrapCreator/WCCGFloatType.h:
* Tools/WrapCreator/WCCGFloatType.m:
* Tools/WrapCreator/GNUmakefile:
* Tools/WrapCreator/WCTypeLoader.m:
* Wrappers/base/gnustep-base.jigs:
Add new types for the MacOS 10.5 API. The sizes of these types
vary depending on the address size of the processor.
Wed Feb 4 13:37:34 2009 Nicola Pero <[email protected]>
* Source/GNUmakefile (NEEDS_GUI): Set to NO.
Fri Feb 1 14:26:07 2008 Nicola Pero <[email protected]>
* Makefiles/GNUstep-Java.sh: Use /bin/sh instead of /bin/bash
which might not be available (suggestion from Yury Mishchenko
<[email protected]>). Updated script for gnustep-make v2.
Fri Feb 1 14:26:07 2008 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/search_header.sh: Use /bin/sh
instead of /bin/bash which might not be available (suggestion from
Yury Mishchenko <[email protected]>). Updated script for
gnustep-make v2. Added missing quoting.
Fri Nov 30 03:04:27 2007 Nicola Pero <[email protected]>
* Source/JIGS.h (GNUSTEP_JAVA_VERSION): Updated to 1.5.7
* Source/GNUmakefile (VERSION): Updated to 1.5.7
Fri Nov 30 03:04:27 2007 Nicola Pero <[email protected]>
* GNUmakefile (VERSION): Version 1.5.7.
* GNUmakefile (CVS_MODULE_NAME, CVS_FLAGS): Removed because
obsolete.
* make-release: Updated to take the release from subversion, not
cvs.
Fri Nov 30 03:04:27 2007 Nicola Pero <[email protected]>
* Documentation/Manual/Manual.dvi, Documentation/Manual/Manual.ps,
Documentation/Manual/Manual.ps.gz: New files, added pregenerated
so that there is no need to have LaTeX installed.
Fri Nov 30 03:04:27 2007 Nicola Pero <[email protected]>
* Makefiles/GNUmakefile (JIGS_MAKE_DIR): Replaced deprecated
INSTALL_ROOT_DIR with DESTDIR.
Fri Nov 30 03:04:27 2007 Nicola Pero <[email protected]>
* Tools/WrapCreator/GNUmakefile (JIGS_MAKE_DIR): Replaced
deprecated INSTALL_ROOT_DIR with DESTDIR.
Web Feb 14 12:36:33 2007 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make
(internal-java_wrapper-install_),
(internal-java_wrapper-uninstall_): Pass down
GNUSTEP_INSTALLATION_DIR or GNUSTEP_INSTALLATION_DOMAIN depending
on which is defined in the current run.
Web Feb 14 12:35:32 2007 Nicola Pero <[email protected]>
* Examples/Java/SimpleGUI/README (GNUSTEP_INSTALLATION_DOMAIN):
Mention this instead of GNUSTEP_INSTALLATION_DIR.
2006-10-09 Nicola Pero <[email protected]>
* Wrappers/base/GNUmakefile: Do not set GNUSTEP_INSTALLATION_DIR.
2006-10-09 Nicola Pero <[email protected]>
* Wrappers/gui/GNUmakefile: Do not set GNUSTEP_INSTALLATION_DIR.
2006-10-09 Nicola Pero <[email protected]>
* Wrappers/libFoundation/GNUmakefile: Do not set
GNUSTEP_INSTALLATION_DIR.
Mon Oct 9 23:28:18 2006 Nicola Pero <[email protected]>
* Java/GNUmakefile: Do not set GNUSTEP_INSTALLATION_DIR.
Mon Oct 9 23:28:18 2006 Nicola Pero <[email protected]>
* GNUmakefile: Do not set GNUSTEP_INSTALLATION_DIR.
Mon Oct 9 23:28:18 2006 Nicola Pero <[email protected]>
* Examples/Java/SimpleGUI/JavaApp/GNUmakefile: Do not set
GNUSTEP_INSTALLATION_DIR.
Mon Oct 9 23:28:18 2006 Nicola Pero <[email protected]>
* Source/GNUmakefile: Do not set GNUSTEP_INSTALLATION_DIR.
Mon Oct 9 23:28:18 2006 Nicola Pero <[email protected]>
* Tools/WrapCreator/GNUmakefile: Do not set
GNUSTEP_INSTALLATION_DIR.
Mon Oct 9 23:28:18 2006 Nicola Pero <[email protected]>
* Examples/Java/SimpleGUI-action/JavaApp/GNUmakefile: Do not set
GNUSTEP_INSTALLATION_DIR.
Mon Oct 9 23:28:18 2006 Nicola Pero <[email protected]>
* Tools/WrapCreator/Examples/NameTest/JavaApp/GNUmakefile: Do not
set GNUSTEP_INSTALLATION_DIR.
* Tools/WrapCreator/Examples/SimpleGUI-action/JavaApp/GNUmakefile:
Same change.
* Tools/WrapCreator/Examples/SimpleGUI/JavaApp/GNUmakefile: Same
change.
Fri Oct 6 08:36:58 2006 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make: Use
GNUSTEP_INSTANCE, not
(obsolete) variable TARGET.
Mon Oct 2 15:37:53 2006 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make (WRAP_CREATOR): Do
not use opentool, which is now obsolete.
Thu Sep 14 14:30:00 2006 Richard Frith-Macdonald <[email protected]>
* Source/JIGSMapper.m (JIGSJobjectArrayFromNSArray): Fixed problem
deallocating something that wasn't a local reference.
Sat Sep 9 12:13:42 2006 Nicola Pero <[email protected]>
* Tools/WrapCreator/GNUmakefile (after-install): Do not install
java-wrapper.top.debug.template (Problem reported by YunSong Hwang
Fri Sep 8 18:53:50 2006 Nicola Pero <[email protected]>
* Documentation/Manual/WrappingObjcLibraries.tex: Removed all
references to JavaWrapper_debug and to debug builds having
different names or directories than normal builds.
* Documentation/Manual/Manual/: Regenerated.
Fri Sep 8 18:33:52 2006 Nicola Pero <[email protected]>
Use JavaWrapper as the name of the JavaWrapper directory no matter
if we're building with debug enabled or not.
* Tools/WrapCreator/Makefiles/java-wrapper.make
(internal-distclean): Do not remove the JavaWrapper_debug
directories and similar ones.
(JIGS_LONG_SUFFIX): Variable removed.
(WRAPPER_DIR_NAME): Do not append JIGS_LONG_SUFFIX.
* Tools/WrapCreator/Makefiles/java-wrapper.make
(JAVA_WRAPPER_TOP_TEMPLATE): Always use the same template no
matter if debug is enabled or not.
* Tools/WrapCreator/Makefiles/java-wrapper.top.debug.template:
File removed.
Fri Sep 8 18:23:25 2006 Nicola Pero <[email protected]>
* Examples/Java/SimpleGUI-action/JavaApp/run: Updated library
paths to use gnu-gnu-gnu as library combo and ./obj as the obj dir
name.
Fri Sep 8 18:23:25 2006 Nicola Pero <[email protected]>
* Tools/WrapCreator/Examples/SimpleGUI/JavaApp/run: Updated
library paths to use gnu-gnu-gnu as library combo, ./obj as the
obj dir name, and JavaWrapper as the java wrapper name.
* Tools/WrapCreator/Examples/SimpleGUI-action/JavaApp/run: Same
change.
* Tools/WrapCreator/Examples/NameTest/JavaApp/run: Same change.
* Tools/WrapCreator/Examples/NameTest/JavaApp/GNUmakefile
(CLASSPATH): Do not add the path with JavaWrapper_debug.
* Tools/WrapCreator/Examples/SimpleGUI/JavaApp/GNUmakefile
(CLASSPATH): Same change.
* Tools/WrapCreator/Examples/SimpleGUI-action/JavaApp/GNUmakefile
(CLASSPATH): Same change.
Fri Sep 8 18:23:25 2006 Nicola Pero <[email protected]>
* Examples/Java/SimpleGUI/JavaApp/run: Updated library paths to
use gnu-gnu-gnu as library combo and ./obj as the obj dir name.
Fri Sep 8 14:33:12 2006 Nicola Pero <[email protected]>
* Java/gnu/gnustep/java/JIGSLibraryLoader.java: Massive
simplification: do not load the gnustep-java-loader library;
removed all the debug/non-debug checks and code.
* Java/gnu/gnustep/java/JIGS.java: Updated comments.
Fri Sep 8 14:24:00 2006 Nicola Pero <[email protected]>
* Source/JIGS.h (GNUSTEP_JAVA_VERSION): Updated to 1.5.6
Fri Sep 8 14:23:36 2006 Nicola Pero <[email protected]>
* Source/JIGSMapper.m (JIGSJobjectArrayFromNSArray): Fixed
creating a Java array from a large NSArray (> 16 elements). We
now delete the local references to each Java element as we go,
rather than hoping that the JVM has space for enough local
references.
(JIGSInitNSArrayFromJobjectArray): Same change.
Fri Sep 8 13:55:09 2006 Nicola Pero <[email protected]>
* Makefiles/GNUstep-Java.sh (jre_lib): Updated from 'classic' to
'server' to work with JDK 1.5.0.
Fri Sep 8 13:30:01 2006 Nicola Pero <[email protected]>
* Testing/Java/Base/NSArrayTest.java: Added more info on failure.
Fri Sep 8 12:46:13 2006 Nicola Pero <[email protected]>
Updates for the simplification in gnustep-make whereby debug
and non-debug libs are now the same library.
* Source/Source/JIGSInit.m (JIGSInit): Do not set the JIGS_DEBUG
environment variable.
* Source/Source/GNUmakefile (SUBPROJECTS): Removed the 'loader'
subproject (used to read the JIGS_DEBUG env variable).
* Source/loader/: Directory removed.
* Source/loader/JIGSLibraryLoader.c: File removed.
* Source/loader/GNUmakefile: File removed.
Fri Sep 8 12:45:03 2006 Nicola Pero <[email protected]>
* GNUmakefile (VERSION): Version 1.5.6.
Fri Sep 8 12:37:41 2006 Nicola Pero <[email protected]>
* Documentation/Manual/WrappingObjcLibraries.tex
(subsection{Debugging or Non-Debugging}): Section removed.
* Documentation/Manual/AccessingJavaFromObjc.tex: Removed
reference to gnustep-java-loader.
* Documentation/Manual/Manual/: Regenerated.
2005-11-10 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: GSMimeDocument update. Added
GSXMLRPC
2005-03-09 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: NSCharacterSets update.
2005-02-29 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: remove NSPort close method
(doesn't exist).
Mon Sep 27 14:36:12 2004 Nicola Pero <[email protected]>
* Wrappers/base/gnustep-base.jigs (NSRunLoop): Removed -init
initializer which does not exist.
Wed May 16 11:55:00 2004 Richard Frith-Macdonald <[email protected]>
* Source/JIGSMapper.m: JIGSIdFromJobject() retain and autorelease
where necessary ... the previous modification missed a case.
Wed May 12 18:05:00 2004 Richard Frith-Macdonald <[email protected]>
* Source/JIGSMapper.m: _JIGSMapperGetProxyFromProxiedJava() retain
and autorelease the ObjC object before returning it, so that a
java GC operation in another thread can't cause it to be
deallocated before the current thread uses it.
Tue Feb 10 15:22:16 2004 Nicola Pero <[email protected]>
Update for last gnustep-base.
* Wrappers/base/NSPropertyListSerialization.h: Turned additional
methods into a category, as gnustep-base already includes a
NSPropertyListSerialization class.
* Wrappers/base/NSPropertyListSerialization.m.add: The same.
* Wrappers/base/gnustep-base.h: Include
Foundation/NSPropertyList.h which is not included by
Foundation/Foundation.h.
2003-10-09 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: wrap setContentType in GSMime
2003-09-25 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/GSDebug.h: More GSDebugAllocation functions.
* Wrappers/base/GSDebug.m.add: idem.
* Wrappers/base/gnustep-base.jigs: Expose to Java.
Mon Aug 25 18:00:00 2003 David Ayers <[email protected]>
* Examples/Java/SimpleGUI/Library/SimpleGUI.h,
* Examples/Java/SimpleGUI-action/Library/SimpleGUI.h,
* Tools/WrapCreator/Examples/SimpleGUI/Library/SimpleGUI.h,
* Tools/WrapCreator/Examples/SimpleGUI-action/Library/SimpleGUI.h
* Wrappers/base/gnustep-base.h: Update to new header structure.
Mon Aug 01 14:45:00 2003 Richard Frith-Macdonald <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make: Tell the compiler
that the header we are preprocessing is an objective-c header, so
it can deal with it properly on MacOS-X systems with -fgnu-runtime
specified.
Tue Jul 29 15:15:05 2003 Nicola Pero <[email protected]>
* Examples/Java/SimpleGUI-action/WrappingLibrary/Objc/SimpleGUI.m:
Updated #include.
Tue Jul 29 15:14:44 2003 Nicola Pero <[email protected]>
* Examples/Java/SimpleGUI/WrappingLibrary/Objc/SimpleGUI.m:
Updated #include.
Tue Jul 29 15:13:05 2003 Nicola Pero <[email protected]>
* Tools/WrapCreator/WCClass.m ([WCClass -outputWrappers]): Update
generated #include to include from GNUstepJava.
* Tools/WrapCreator/WCLibrary.m ([WCLibrary +outputWrappers]):
Updated generated #include to include from GNUstepJava.
Tue Jul 29 15:10:06 2003 Nicola Pero <[email protected]>
* Testing/Objc/main.m: Updated #include to use GNUstepJava as the
directory, not java.
Tue Jul 29 15:08:16 2003 Nicola Pero <[email protected]>
* Source/GNUmakefile (libgnustep-java_HEADER_FILES_INSTALL_DIR):
Install headers in GNUstepJava.
2003-07-28 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: wrap new convenience methods in
GSXML and GSMime
Wed Jul 23 18:35:06 2003 Richard Frith-Macdonald <[email protected]>
* Source/JIGSMapper.m: Create local reference to existing proxied
object before attempting to return it, so it can't be garbage
collected by another thread before we are done with it.
2003-05-22 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: New parse error message
handling code
Tue May 13 14:32:58 2003 Nicola Pero <[email protected]>
* Source/ObjcRuntimeUtilities.m: Removed.
* Source/ObjcRuntimeUtilities.c, ObjcRuntimeUtilities2.m: New
files contained the code previously in ObjcRuntimeUtilities.m
* Source/ObjcRuntimeUtilities.h: Do not include Foundation/Foundation.h.
* Source/GNUmakefile: Updated for change.
Sun May 11 07:21:06 2003 Richard Frith-Macdonald <[email protected]>
* Source/JIGSInit.m (_jigs_lookup_class): Move creation of
NSString from supplied c-string inside exception handler in case
c-string content is garbage.
Sun May 11 07:21:06 2003 Richard Frith-Macdonald <[email protected]>
* Source/JIGSInit.m (_jigs_lookup_class): Check to see if class
exists before trying to register it... just a bit nicer than
relying on catching an exception when trying to register a
non-existent class.
2003-02-21 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: Added escapedContent method to
GSXMLNode class
2003-02-21 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: Wrapped
NSDistributedNotificationCenter and NSNotificationQueue
Mon Feb 10 13:31:15 2003 Nicola Pero <[email protected]>
* GNUmakefile (VERSION): Version 1.5.5.
2003-01-09 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: Add NSCalendar date weekOfYear
method.
* Wrappers/base/gnustep-base.h: Include new GSCategories.h
2002-11-27 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: Updated GSMime API.
2002-09-25 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: Updated GSXML API.
2002-08-27 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: Added GSXPath support
... written by Nicola Pero provides an API to use the xpath
support built into libxml from version 2.3 onwards.
Tue Jul 16 17:22:28 2002 Nicola Pero <[email protected]>
* Wrappers/base/gnustep-base.jigs: Added GSXML -setNamespace:,
from gnustep-base 1.4.0.
Mon Jun 24 13:15:00 2002 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: GSMime API updated to include
some utilities and the document unparsing API.
Mon May 27 06:30:00 2002 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: GSMime API dded, and resolved
some return value conflicts with XML parser.
Sun May 5 23:33:53 2002 Nicola Pero <[email protected]>
* Source/JIGSInit.m (_jigs_lookup_class): Register/unregister the
current thread.
Fri May 3 18:17:33 2002 Nicola Pero <[email protected]>
* Source/JIGSProxySetup.m (_JIGS_prepare_method_struct): Fixed bug
in creating the selector signature - always use _C_ID for the
receiver, never _C_CLASS.
Tue Apr 30 14:48:03 2002 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make (HEADER_FILE):
Fixed for new gnustep-make ... HEADER_FILES is no longer defined
by the Master invocation and must be defined manually in the
Instance invocation.
(WRAPPER_HEADER): Idem.
Thu Mar 21 15:36:36 2002 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make: Updated
internal-java_wrapper-all, internal-java_wrapper-install and
internal-java_wrapper-uninstall for gnustep-make from CVS; don't
include the instance part if this is not a java wrapper instance
invocation; use GNUSTEP_INSTANCE instead of
INTERNAL_java_wrapper_NAME. Do not run any instance invocation on
make distclean. Do not protect against multiple inclusions.
Wed Jan 02 14:16:00 2002 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: GSXMLDocument API modified for
consistency etc Added GSMime wrappers too.
Wed Jan 02 14:16:00 2002 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: GSXMLDocument API modified for
consistency Corrected error in last modification.
Wed Jan 2 12:15:39 2002 Nicola Pero <[email protected]>
* Source/JIGSException.m (JIGSRaiseJExceptionFromNSException):
Make sure we can manage the case of null name or reason.
Thu Dec 20 13:08:22 2001 Nicola Pero <[email protected]>
* Testing/Java/Base/NSExceptionTest.java: New test.
* Testing/Java/Base/GNUmakefile: Compile it.
* Testing/Java/Base/test-base: Run it.
Fri Dec 14 12:13:00 2001 Richard Frith-Macdonald <[email protected]>
* Tools/WrapCreator/GNUmakefile: Don't try to install recently
deleted 'old' stuff.
Thu Dec 13 11:27:59 2001 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/old-java-wrapper.java.template:
Removed.
* Tools/WrapCreator/Makefiles/old-java-wrapper.make: Removed.
* Tools/WrapCreator/Makefiles/old-java-wrapper.objc.template:
Removed.
* Tools/WrapCreator/Makefiles/old-java-wrapper.readme.template:
Removed.
* Tools/WrapCreator/Makefiles/old-java-wrapper.top.debug.template:
Removed.
* Tools/WrapCreator/Makefiles/old-java-wrapper.top.template:
Removed.
Thu Dec 13 11:18:55 2001 Nicola Pero <[email protected]>
* Tools/WrapCreator/GNUmakefile (after-install): Use MKINSTALLDIRS
when creating installation directories.
Thu Dec 13 11:16:30 2001 Nicola Pero <[email protected]>
* Makefiles/GNUmakefile ($(JIGS_MAKE_DIR)): Use MKINSTALLDIRS not
MKDIRS when creating installation dirs.
Thu Dec 13 11:13:03 2001 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make
($(WRAPPER_DIR)/stamp-file): Use cp, not INSTALL_DATA, to copy
templates into the WRAPPER_DIR.
Thu Dec 13 10:27:50 2001 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make
(internal-java_wrapper-install): Pass down
GNUSTEP_INSTALLATION_DIR.
(internal-java_wrapper-uninstall): Idem.
($(WRAPPER_DIR)/stamp-file): Do not replace INSTALL_AS_USER and
INSTALL_AS_GROUP - now automatically exported by gnustep-make; do
not replace GNUSTEP_INSTALLATION_DIR - now passed down directly.
* Tools/WrapCreator/Makefiles/java-wrapper.top.template: Updated
for changes.
* Tools/WrapCreator/Makefiles/java-wrapper.top.debug.template:
Idem
Wed Dec 12 16:45:28 2001 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make
($(WRAPPER_DIR)/stamp-file): Replace INSTALL_AS_USER and
INSTALL_AS_GROUP in the generated top level GNUmakefile. Changed
line to be replaced by GNUSTEP_INSTALLATION_DIR to be prettier.
* Tools/WrapCreator/Makefiles/java-wrapper.top.template: Updated
for changes.
* Tools/WrapCreator/Makefiles/java-wrapper.top.debug.template:
Updated.
Thu Dec 6 16:05:46 2001 Nicola Pero <[email protected]>
* Source/GSJNIString.m (GSJNI_JStringFromNSString): Allocate
temporary unichar buffer on the heap rather than on the stack if
it is bigger than 10k. Fixes crash for ObjC methods returning
huge strings.
2001-12-05 Richard Frith-Macdonald <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make:a filter out -MMD
and -MP flags directly rather than trying to turn off
AUTO_DEPENDENCIES
2001-12-04 Richard frith-Macdonald <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make
(AUTO_DEPENDENCIES): Force to 'no' as this conflicts with the
production of the preprocessed header output needed for
WrapCreator.
Tue Nov 27 22:52:57 2001 Nicola Pero <[email protected]>
* Testing/Java/Base/Benchmarks/NSArray10Benchmark.java: New test.
* Testing/Java/Base/Benchmarks/GNUmakefile: Compile it.
* Testing/Java/Base/Benchmarks/benchmark-base: Run it.
Sun Nov 25 12:39:24 2001 Nicola Pero <[email protected]>
* Testing/Java/Base/Benchmarks/NSArray8Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSArray9Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSDictionary0Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSDictionary1Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSDictionary2Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSDictionary3Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/Hashtable0Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/Hashtable1Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/Hashtable2Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/Hashtable3Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/benchmark-base: Process first
argument if any; --help, -h or a benchmark name. Added the new
benchmarks.
* Testing/Java/Base/Benchmarks/GNUmakefile: Compile the new files.
Sun Nov 25 12:13:00 2001 Nicola Pero <[email protected]>
* Source/NSObject.m
(Java_gnu_gnustep_base_NSObject_finalize_1native): #ifdefed out
the new code ... better use the stable one for now.
Sun Nov 25 02:23:14 2001 Nicola Pero <[email protected]>
* Source/NSObject.m
(Java_gnu_gnustep_base_NSObject_finalize_1native): Rewritten in an
attempt to fix potential deadlocks and other weird bugs. Not sure
it's stable yet.
Sun Nov 25 01:38:45 2001 Nicola Pero <[email protected]>
* Testing/Java/Base/Benchmarks/benchmark-base: New file.
* Testing/Java/Base/Benchmarks/Driver.java: Rewritten to run with
an argument and run that single benchmark ... to avoid
interferences between benchmarks due to the garbage collector.
* Testing/Java/Base/Benchmarks/SecondaryThreadBenchmark.java: New file.
* Testing/Java/Base/Benchmarks/ObjCMethodSecondThreadBenchmark.java:
New file.
* Testing/Java/Base/Benchmarks/ObjCToStringSecondThreadBenchmark.java:
New file.
* Testing/Java/Base/Benchmarks/ObjCNewObjectSecondThreadBenchmark.java:
New file.
* Testing/Java/Base/Benchmarks/GNUmakefile: Compile the new
secondary thread benchmakrs; use benchmark-base to run `make
benchmark'.
Sat Nov 24 18:28:53 2001 Nicola Pero <[email protected]>
* Source/NSObject.m
(Java_gnu_gnustep_base_NSObject_finalize_1native): Rewritten as to
register/unregister the thread and create autorelease pools only
once every forty invocations.
(JIGSFinalizeInit): New function.
* Source/JIGSMapper.m (_JIGSMapperInitialize): Call the function.
* Source/JIGSMapper.h: Declare it.
Sat Nov 24 16:02:08 2001 Nicola Pero <[email protected]>
* Source/JIGSMapper.m (_JIGSMapperRemoveJavaProxy): Moved JNI call
outside the critical region.
(JIGSJobjectArrayFromNSArray): Ensure that local capacity is
enough to manage all the objects in the array.
(JIGSInitNSArrayFromJobjectArray): Idem.
(_JIGSMapperInitialize): Cache the NSArray class pointer.
(JIGSNSArrayFromJobjectArray): Use it.
Sat Nov 24 16:00:05 2001 Nicola Pero <[email protected]>
* Testing/Java/Base/NSArrayTest.java: Added test creating a big array.
Sat Nov 24 15:43:13 2001 Nicola Pero <[email protected]>
* Source/JIGSMapper.m: Redesigned and reimplemented from scratch
the table mapping Java proxy classes to ObjC classes and vice
versa. The new table heavily outperforms the old one ... creating
from Java objects of subclasses - eg, NSArray as opposed to
NSObject - is much faster now.
Sat Nov 24 02:01:09 2001 Nicola Pero <[email protected]>
* Source/JIGSInit.m (JIGSAutoreleasePoolClass): New variable
caching a pointer to the NSAutoreleasePool class.
(JIGSInit): Set up the variable.
* Source/JIGSNative.h (JIGS_ENTER, JIGS_ONLOAD_ENTER): Use the
cached pointer when creating the pool.
* Source/GSJNIString.m: Cache the NSString class.
* Source/JIGSMapper.m (_JIGSLongJavaClassNameForObjcClassName):
Reduced size of the critical region.
(_JIGSFirstJavaProxySuperClass): Idem.
* Source/JIGSMapper.m (_JIGSProxyJavaHash): Always return 1.
Thu Nov 22 01:20:38 2001 Nicola Pero <[email protected]>
* GNUmakefile (CVS_MODULE_NAME): Define.
(CVS_FLAGS): Define.
(RELEASE_DIR): Define.
* make-release: Modified to simply invoke `make cvs-snapshot'.
Wed Nov 21 15:48:23 2001 Nicola Pero <[email protected]>
* Testing/Java/Base/Benchmarks: New directory.
* Testing/Java/Base/Benchmarks/README: New file.
* Testing/Java/Base/Benchmarks/GNUmakefile: New file.
* Testing/Java/Base/Benchmarks/ArrayBenchmark.java: New file.
* Testing/Java/Base/Benchmarks/Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/Driver.java: New file.
* Testing/Java/Base/Benchmarks/EmptyBenchmark.java: New file.
* Testing/Java/Base/Benchmarks/JavaMethodBenchmark.java: New file.
* Testing/Java/Base/Benchmarks/JavaNewObjectBenchmark.java: New file.
* Testing/Java/Base/Benchmarks/JavaToStringBenchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSArray0Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSArray1Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSArray2Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSArray3Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSArray4Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSArray5Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSArray6Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/NSArray7Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/ObjCMethodBenchmark.java: New file.
* Testing/Java/Base/Benchmarks/ObjCNewObjectBenchmark.java: New file.
* Testing/Java/Base/Benchmarks/ObjCToStringBenchmark.java: New file.
* Testing/Java/Base/Benchmarks/StringComparisonBenchmark.java: New file.
* Testing/Java/Base/Benchmarks/StringConcatenationBenchmark.java:
New file.
* Testing/Java/Base/Benchmarks/Vector0Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/Vector1Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/Vector2Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/Vector3Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/Vector4Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/Vector5Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/Vector6Benchmark.java: New file.
* Testing/Java/Base/Benchmarks/Vector7Benchmark.java: New file.
Mon Nov 19 15:28:37 2001 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make (SILENT_FLAGS):
Fixed adding multiple flags.
Mon Nov 19 15:24:02 2001 Nicola Pero <[email protected]>
* Tools/WrapCreator/Makefiles/java-wrapper.make
($(WRAPPER_DIR)/stamp-file): Shortened messages about compiling
automatically the wrapper library.
Mon Nov 19 12:20:00 2001 Richard Frith-Macdonald <[email protected]>
* Wrappers/base/gnustep-base.jigs: Wrapped NSCalendarDate,
NSCharacterSet, NSDistriibutedLock, NSMutableCharacterSet,
NSFileHandle, NSPipe
Mon Sep 24 12:04:56 2001 Nicola Pero <[email protected]>
* Source/ObjcRuntimeUtilities.m (objc_EXPORT): Define it if not
defined.
(ObjcUtilities_new_class): Use `objc_EXPORT' rather than simply
`extern' to access libobjc internals symbols.
(ObjcUtilities_register_method_list): Idem.
* Source/JIGSProxySetup.m (objc_mutex_allocate): Do not declare as
it is declared in objc/thr.h which we include.
Wed Sep 12 12:17:50 2001 Nicola Pero <[email protected]>
* Source/JIGSInit.m (JIGSInitFromJava): New function.
(JIGSInit): Moved code to set program arguments into
JIGSInitFromJava, because it is code which must only be executed
from Java. Do not create an autorelease pool if we are executing
no code.
* Source/JIGSInit.h (JIGSInitFromJava): Declare the new function.
* Source/JIGS.m (Java_gnu_gnustep_java_JIGS_initialize): Call
JIGSInitFromJava rather than JIGSInit.
Wed Sep 12 11:11:28 2001 Nicola Pero <[email protected]>