-
Notifications
You must be signed in to change notification settings - Fork 44
/
ChangeLog
7732 lines (5741 loc) · 280 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
2024-08-20 Wolfgang Lux <[email protected]>
* TestFramework/gnustep-tests.in: Only return plain files when
looking for test cases.
2024-07-31 Richard Frith-Macdonald <[email protected]>
* TestFramework/gnustep-tests.in: Fix 'Failed build' detection in
Summary.sh by recording build failures in tests.sum and test.log
2024-05-31 Yavor Doganov <[email protected]>
* GNUmakefile.in (install): Remove $(srcdir) from GNUstep-reset.sh
since it is now a generated file. Fixes out-of-tree builds where
builddir != srcdir.
2024-05-26 Richard Frith-Macdonald <[email protected]>
* ANNOUNCE:
* NEWS:
* RELEASENOTES:
* Documentation/news.texi:
* Documentation/releasenotes.texi:
Update announcement and release notes for 2.9.2.
* Version: Bump version to 2.9.2.
2024-02-14 Richard Frith-Macdonald <[email protected]>
* common.make:
* rules.make:
Rewrite 'javac -h' code because its usage turns out to be quite
different from that of the javah command it is supposed to replace.
Possibly the header generation and class file generation could/should
be combined in a single pass, but we can't readily do that without
breakign compatibility with older versions of java.
2024-02-11 Richard Frith-Macdonald <[email protected]>
* Documentation/gnustep-make.texi:
* common.make:
* messages.make:
* rules.make:
* target.make:
Use 'javac -h' if 'javah' does not exist, since the separate tool was
removed after version 8. Update comments to match the change.
2023-12-12 Richard Frith-Macdonald <[email protected]>
* TestFramework/gnustep-tests.in: Exit if no bash available
* configure.ac: Require bash for test framework
* configure: Regenerate
2023-12-05 Yavor Doganov <[email protected]>
* Documentation/gnustep-make.texi: Fix PDF generation with
texinfo/7.1; reorder sectioning commands.
* Documentation/gnustep-filesystem.texi: Likewise.
2022-02-06 Richard Frith-Macdonald <[email protected]>
* Instance/Documentation/texi.make: for index.html specify explicit
output file for texi2html (Debian Bug#1030387)
2023-02-06 Riccard Mottola <[email protected]>
* Master/source-distribution.make
Try to implement .dist-ignore support for git-dist: after archive,
export and recompress again by excluding .dist-ignore
2022-12-28 Richard Frith-Macdonald <[email protected]>
* ANNOUNCE:
* NEWS:
* RELEASENOTES:
* Documentation/news.texi:
* Documentation/releasenotes.texi:
Update announcement and release notes for 2.9.1.
* Version: Bump version to 2.9.1.
2022-12-05 Richard Frith-Macdonald <[email protected]>
* TestFramework/gnustep-tests.in: use the -a option to force grep
to treat log files as text rather than binary. If treated as binary
it would not extract the information we need.
* TestFramework/Testing.h: fix uninitialised variable in the macro
to test for a regexp match.
2022-03-01 Richard Frith-Macdonald <[email protected]>
* TestFramework/gnustep-tests.in:
When using TestInfo send stdout and stderr to /dev/null so that
thy don't interfere with the test output.
2022-02-16 Richard Frith-Macdonald <[email protected]>
* TestFramework/gnustep-tests.in:
Fix bug introduced in rewrite for parallelisation: we were getting
immediate end of testing when one file failed, but that behavior
should only occur when --failfast is specified.
2022-01-26 Richard Frith-Macdonald <[email protected]>
* TestFramework/README:
* TestFramework/TestInfo:
* TestFramework/gnustep-tests.in:
Add support for controlling test execution using SEQUENCE and PARALLEL
in TestInfo to control the order of seuntial tests and the running of
concurrent tests.
2021-03-28 Frederik Seiffert <[email protected]>
* TestFramework/Testing.h:
Add workaround for Clang bug on Windows MSVC when tests contain no
Objective-C constructs.
2021-03-21 Ivan Vucica <[email protected]>
* ANNOUNCE:
* NEWS:
* RELEASENOTES:
* Documentation/news.texi:
* Documentation/releasenotes.texi:
Update release notes for 2.9.0.
* Version:
Bump version to 2.9.0.
2021-03-09 Frederik Seiffert <[email protected]>
* target.make:
Link against debug or release UCRT DLLs for Windows MSVC and remove
unused -pthread flag.
* configure:
* configure.ac:
Fix CFLAGS for Windows MSVC.
2021-03-06 Richard Frith-Macdonald <[email protected]>
* Instance/application.make:
* configure:
* configure.ac:
* jni.make:
* rules.make:
* target.make:
Adopt the triplet used by the mingw-w64 project (where the OS is always
mingw32 and we differentiate 64bit Windows using the vendor part),
rather than the one returned by autoconf. Scrap most of the code to
differentiate between the two systems.
2021-02-25 Richard Frith-Macdonald <[email protected]>
* configure:
* configure.ac:
Convert mingw-w64's triplet (cpu-w64-mingw32) which looks like mingw32
back to standard form.
2021-02-12 Frederik Seiffert <[email protected]>
* common.make: Silence PATH warning on Windows MSVC.
* config-noarch.make.in: Add workaround for GNUSTEP_MAKEFILES
breaking when using Windows-native "make".
2021-01-29 Frederik Seiffert <[email protected]>
* common.make:
* configure:
* m4/gs_cc_is_clang.m4:
* target.make:
Added support for building on Windows with Clang MSVC target.
Requires passing a host like --host=x86_64-pc-windows.
Removes the check for $GCC in gs_cc_is_clang.m4 as it will be false
when using the MSVC ABI due to __GNUC__ not being defined.
2021-01-29 Frederik Seiffert <[email protected]>
* common.make:
* target.make:
Check $CLANG_CC instead of comparing $CC with "clang". Fixes checks
when $CC is set to something like /path/to/clang.
2021-01-29 Frederik Seiffert <[email protected]>
* Instance/rules.make:
* Instance/subproject.make:
* common.make:
Link subproject object files directly. Instead of merging all
subproject object files into subproject.o, we now create
subproject.txt containing a list of all object files, and use these
directly in SUBPROJECT_OBJ_FILES.
This enables building on platforms like Windows MSVC where `ld -r` is
not supported, and generally avoids issues with incremental linking
that have historically existed in some linker versions.
2021-01-18 Fred Kiefer <[email protected]>
* Documentation/news.texi: Update for upcoming release.
2020-11-26 Frederik Seiffert <[email protected]>
* configure
* configure.ac:
Check for objc.dll to support libobjc2 on Windows.
2020-11-26 Frederik Seiffert <[email protected]>
* configure
* configure.ac:
Enable checking for native Objective-C exception support on Windows
if non-gnu runtime is used (i.e. ng runtime).
2020-11-14 Richard Frith-Macdonald <[email protected]>
* rules.make:
* target.make:
New variables FINAL_LDFLAGS and CORE_LDFLAGS such that ALL_LDFLAGS is
now a combination of the two, and is used for final linking of an
executable re shared library/bundle, while CORE_LDFLAGS is used when
performing a partial link in a subproject.
2020-10-31 Yavor Doganov <[email protected]>
* Instance/Documentation/texi.make: Honor @setfilename.
2020-08-30 Ladislav Michl <[email protected]>
* configure.ac: Increase AC version number and use OBJCXX directly.
* configure: Regenerate.
2020-07-09 Wolfgang Lux <[email protected]>
* rules.make: Fix variable name to make compiling for ARC actually
work.
2020-06-07 Fred Kiefer <[email protected]>
* gs_gcc_version.m4: Add -dumpfullversion to the version
extraction. Versions of gcc > 7.0 require this parameter to output
the full version number. Older versions should just ignore this option.
* configure: Regenerate
2020-04-14 Yavor Doganov <[email protected]>
* config-precomp-test/run-test.sh: Put $LIBS at the end so that it
works with GCC >= 9 (which implies -Wl,--as-needed).
2020-04-13 Ivan Vucica <[email protected]>
* Documentation/announce.texi:
* ANNOUNCE:
Normalize the accompanying text for the release announcement across
core packages: standardize chapter name and GPG information.
2020-04-05 Ivan Vucica <[email protected]>
* ANNOUNCE:
* NEWS:
* RELEASENOTES:
* Documentation/news.texi:
* Documentation/releasenotes.texi:
Update release notes for 2.8.0.
* Version:
Bump version to 2.8.0.
2020-02-28 Patryk Laurent <[email protected]>
* target.make: Unified cross-OS class name extraction and unified
for other OSes (Darwin, OpenBSD, MinGW).
2020-02-22 Patryk Laurent <[email protected]>
* target.make: Improved detection of runtime version. Fixed class
name extraction for Darwin, OpenBSD and MinGW32/64.
2020-02-18 Patryk Laurent <[email protected]>
* target.make: Fixed EXTRACT_CLASS_NAMES_COMMAND for runtime v2.
2020-02-17 Richard Frith-Macdonald <[email protected]>
* library-combo.make: removed GS_WITH_ARC support
* rules.make: added GS_WITH_ARC stuff
* Documentation/gnustep-make.texi: Document the changes ...
We can define GS_WITH_ARC more freely (it is no longer necessary to
define it before common.make). The default compiler flags for ARC
support now include -fobjc-arc-exceptions. We can now define
ARC_CPPFLAGS and ARC_OBJCFLAGS to overide the flags sent to the
preprocessor and compiler/linker when ARC is enabled using GS_WITH_ARC
2019-10-29 Wolfgang Lux <[email protected]>
* GNUmakefile.in:
* Master/source-distribution.make:
Add support for creating Mercurial tags and creating tarballs from
a Mercurial tag.
2018-07-10 Richard Frith-Macdonald <[email protected]>
* config.make.in:
* configure:
* configure.ac:
* library-combo.make:
* target.make:
Change to use -fobjc-runtime=gcc when building with clang but
targetting the gnu/gcc runtime ABI. Suggested by David as the
correct way to tell clang what runtime it should be targetting.
2018-07-09 Richard Frith-Macdonald <[email protected]>
* Documentation/library-combo.7:
* common.make:
* config.make.in:
* configure:
* configure.ac:
* library-combo.make:
Changes removing nonfragile ABI settings I made over a year ago and
somehow failed to commit. With the ng runtime we always use the
nonfragile ABI (since it's required for ARC). With the gnu runtime
we don't have it and can't use it. Anything else is for experts
(and if we want to make that easier it's better done in gnustep-base).
2018-07-05 Wolfgang Lux <[email protected]>
* Instance/framework.make:
* Instance/library.make:
Fix quotation errors in automatically generated testsuite flags.
2018-03-22 Richard Frith-Macdonald <[email protected]>
* TestFramework/gnustep-tests.in: When invoked with --verbose
it would be nice to build testscases using messages=yes
2018-03-21 Richard Frith-Macdonald <[email protected]>
* Instance/framework.make:
* Instance/library.make:
When automatically invoking testsuite for 'make check', pass
additional linker flags to use -rpath so built testcases can
be executed standalone and still use the locally built
library/framework. Idea by David
2018-03-05 Riccardo Mottola <[email protected]>
* target.make
Remove legacy Rhapsody and FreeBSD-out support
2018-03-05 Riccardo Mottola <[email protected]>
* target.make
netbsd: cleanup old X11R6 directories and generally
remove additional dirs
2017-12-10 Ivan Vucica <[email protected]>
* Master/source-distribution.make
* GNUmakefile.in:
When adding an ANNOUNCE file to the annotated tag, added dependency
on the passed ANNOUNCE file to ensure the temporary file which
prepends 'Release x.yz' gets regenerated while tagging.
2017-12-07 Ivan Vucica <[email protected]>
* Master/source-distribution.make: Allow creating a Git tag and
creating a tarball from a git tag.
* GNUmakefile.in: Allow creating a Git tag and creating a tarball
from a Git tag, for releasing gnustep-make itself.
2017-04-14 Richard Frith-Macdonald <[email protected]>
* Version: 2.7.0 release
* Documentation/news.texi: 2.7.0 release
* Documentation/releasenotes.texi: 2.7.0 release
* ANNOUNCE:
* INSTALL:
* NEWS:
* README:
* RELEASENOTES:
Regenerate documentation
2017-04-07 Richard Frith-Macdonald <[email protected]>
* common.make: correct earlier change ... error pointed out by
Galen Rhodes as bug #50751
2016-11-22 Doug Simons <[email protected]>
* target.make: Fix EXTRACT_CLASS_NAMES_COMMAND for Mingw64.
2016-08-19 Giah de Barag <[email protected]>
* common.make: filter out optimisation flags when in debug mode.
2016-07-10 13:33-EDT Gregory John Casamento <[email protected]>
* GNUmakefile.in: add pkgconfig.make to INSTANCE_SHARED_MAKE_FILES
variable so it is copied properly.
2016-07-08 Niels Grewe <[email protected]>
* GNUstep.conf.in
* GNUstep.csh.in
* GNUstep.sh.in
* Instance/Shared/pkgconfig.make
* Instance/framework.make
* Instance/library.make
* config-noarch.make.in
* configure
* configure.ac
* messages.make
Preliminary support for pkg-config files. The GNUstep.sh scripts
set the PKG_CONFIG_PATH and $(INSTANCE)_PKGCONFIG_FILES can be used
to specify the files to install.
2016-06-29 Niels Grewe <[email protected]>
* Instance/framework.make: Fix installation of Resources symlinks.
2016-06-25 Richard Frith-Macdonald <[email protected]>
* Documentation/releasenotes.texi:
* GNUmakefile.in:
* GNUstep.csh.in:
* GNUstep.sh.in:
* Master/rules.make:
* common.make:
* config-noarch.make.in:
* gnustep-config.in:
* openapp.in:
* opentool.in:
* rules.make:
When building non-flattened, the subdirectory name for
libraries/binaries is changed for Debian compatibility (and simplicity)
to use a directory whose name is of the form architecture/library-combo
rather than nested directories of the form cpu/os-abi/library-combo.
The architecture name format is a sanitised triplet cpu-os-abi (where
previously we had cpu/os-abi).
When building non-flattened, header files are now installed in an
architecture and library-combo dependent subdirectory in the same way
that binary libraries are installed. This removes an inconsistency and
makes sense with Debian multiarch support which puts headers in an
architecture specific subdirectory.
These changes are the first step in making GNUstep work seamlessly
with Debian multiarch. To use them you will need to rebuild your
entire gnustep installation, and in particular build a version of
gnustep-base which has correspoinding changes to know where to look
up resources at runtime.
However, the changes should have no effect on a flattened installation
(currently the default).
2016-05-19 Seong Gu Lee <[email protected]>
* Instance/application.make:
* config.guess:
* config.sub:
* jni.make:
* rules.make:
* target.make:
mingw64 tweaks
2016-05-13 Richard Frith-Macdonald <[email protected]>
* TestFramework/Summary.sh:
* TestFramework/gnustep-tests.in:
Avoid some pointless warnings when cleaning
2016-05-13 Yavor Doganov <[email protected]>
* Instance/framework.make:
Forgotten patch to allow multiple versions of a framework to be
installed.
* Documentation/GNUmakefile:
* Instance/Documentation/texi.make:
Forgotten patch to update for newere makeinfo which produces html.
2016-05-13 Richard Frith-Macdonald <[email protected]>
* GNUmakefile.in:
* TestFramework/gnustep-tests.in:
* config.make.in:
* common.make:
* library-combo.make:
* configure.ac:
* configure:
Minor tweaks... use ARC by default if ng runtime is specified
2016-03-25 Richard Frith-Macdonald <[email protected]>
* common.make:
* config.make.in:
* configure.ac:
* library-combo.make:
* Documentation/library-combo.7:
* TestFramework/Testing.h:
* configure:
Remove garbage collection support
2016-03-04 Richard Frith-Macdonald <[email protected]>
* configure.ac: Enable strict v2 mode by default
* configure: regenerate
* README.Packaging: Warn about updating ancient makefiles
* Documentation/library-combo.7: Talk about ng runtime
* Version:
* Documentation/news.texi:
* Documentation/releasenotes.texi:
Update prior to new release
2016-03-02 Richard Frith-Macdonald <[email protected]>
* configure.ac: Improve selection of clang when 'ng' runtime library
is selected.
* configure: Regenerate.
* library-combo.make: Add support for ARC with the 'ng' runtime
setting. Enabled by defining GS_WITH_ARC=1 at the start of the
GNUmakefile or in the environment or in the 'make' arguments.
2016-03-02 Niels Grewe <[email protected]>
* Master/documentation.make:
Support skipping the documentation build if documentation=no
is supplied
* Documentation/gnustep-make.texi:
Document the new documentation=no feature (and messages=yes, which
as also missing).
2015-12-11 23:34-EST Gregory John Casamento <[email protected]>
* common.make: Mute error when trying to parse redhat-version
file.
2015-11-26 Ivan Vucica <[email protected]>
* ChangeLog:
Fixed dates on some previous entries.
* bake_debian_files:
Fixed a typo: DEB_PRIORTY -> DEB_PRIORITY.
2015-10-26 Richard Frith-Macdonald <[email protected]>
* TestFramework/gnustep-tests.in:
Exit with status 1 if there are any test failures, 0 otherwise.
2015-10-24 Richard Frith-Macdonald <[email protected]>
* Instance/framework.make:
* Instance/library.make:
* TestFramework/gnustep-tests.in:
Improve automated library and framework testcase handling, with
code to tell the testcases where to find the library/framework
headers and what to link with in order to do the tests.
2015-10-21 Richard Frith-Macdonald <[email protected]>
* Instance/framework.make: Remove unused methods (-frameworkEnv and
-frameworkPath) from the dummy class.
2015-10-20 Richard Frith-Macdonald <[email protected]>
* TestFramework/gnustep-tests.in: Deprecate Env.sh ... use TestInfo to
set test ewnvironment
* Instance/framework.make: Add rule to invoke gnustep-tests
* Instance/library.make: Add rule to invoke gnustep-tests
* Master/clibrary.make: pass 'make check' to instance
* Master/framework.make: pass 'make check' to instance
* Master/library.make: pass 'make check' to instance
* Master/test-library.make: pass 'make check' to instance
Simple minded initial attempt to make unit testing for libraries and
frameworks easier by having a built-in rule to execute test files in
a subdirectory specified using xxx_TEST_DIR
2015-09-23 Germán Arias <[email protected]>
* Documentation/README.MinGW: Fix errors in services path.
2015-08-17 Wolfgang Lux <[email protected]>
* configure.ac: Fix the previous change, which had broken the tests
for Objective C++, the fragile API and native exception support,
by using the correct autoconf macros.
* configure: Regenerated.
2015-08-16 Richard Frith-Macdonald <[email protected]>
* library-combo.make: Use David's suggested runtime flag for the
next generation (ng) runtime combo.
* configure.ac: Check for compiler blocks support for ng combo.
Fix some program source quoting for newer autoconf
2015-08-08 Germán Arias <[email protected]>
* Documentation/README.MinGW: Add instructions to install aspell and
to make a standalone directory to distribute apps.
2015-06-25 Niels Grewe <[email protected]>
* Instance/Shared/java.make: Fix escaping of inner classes when
building jar files.
2015-06-09 Riccardo Mottola <[email protected]>
* config.make.in
* configure.ac
* target.make
Check for nm and gnm as gnu nm, use a $(NM) variable instead of
hard-coding the binary name of nm
* configure
Regerenated
2015-05-15 Richard Frith-Macdonald <[email protected]>
* Documentation/news.texi:
* Documentation/releasenotes.texi:
* ANNOUNCE:
* INSTALL:
* NEWS:
* RELEASENOTES:
* Version:
2.6.7 bugfix/improvement release
2015-03-23 Richard Frith-Macdonald <[email protected]>
* Instance/resource-set.make: Fix bug which could cause a resource
dictionary to be installed inside an existing copy of the same
resource dictionary.
2015-03-04 Germán Arias <[email protected]>
* Documentation/README.MinGW: Fix typos.
2015-02-21 Germán Arias <[email protected]>
* Documentation/README.MinGW: Add instructions to install cairo
backend.
2015-02-19 Germán Arias <[email protected]>
* Documentation/README.MinGW: Update instructions for latest MinGW.
2015-01-19 Richard Frith-Macdonald <[email protected]>
* TestFramework/gnustep-tests.in: Report abandoned files as failed.
* TestFramework/Testing.h: Add timing of the duration of sets and a
hook to perform additional reporting etc on set end.
2015-01-15 Richard Frith-Macdonald <[email protected]>
* TestFramework/gnustep-tests.in: Check status of Start.sh script so
we refrain from attempting tests in a directory whose startup script
has failed.
2014-12-21 Niels Grewe <[email protected]>
* rules.make
* Instance/Shared/java.make:
Add as_jar option to install the jar file instead of the expanded
class hierarchy.
2014-12-21 Niels Grewe <[email protected]>
* Instance/Shared/java.make
* Instance/java.make
* Instance/rules.make
* Master/java.make
* Master/rules.make
* common.make
* messages.make:
Add a `jar' target to the java project type that allows jars to
be built from all classes in the project.
* Documentation/gnustep-make.texi: Document Java project variables.
2014-06-29 Nicolas Boulenguez <[email protected]> (tiny change)
* common.make (INTERNAL_CFLAGS): Do not ignore user-specified
CFLAGS.
2014-06-29 Yavor Doganov <[email protected]>
* Documentation/GNUstep.7:
* Documentation/debugapp.1: Typo fix.
* Documentation/gnustep-tests.1: New.
* GNUmakefile.in (install, uninstall): Handle gnustep-tests.1.
2014-06-07 Ivan Vucica <[email protected]>
* Master/deb.make: Now adding gnustep-make dependency to the
DEB_BUILD_DEPENDS only when creating _debenv file.
2014-05-11 Ivan Vucica <[email protected]>
* GNUmakefile.in: Date-time and svn-revision suffix are now using
the tilde character to ensure that the 'actual' commit and 'actual'
tagged release are treated as being newer by the Debian packaging.
Also stopped using periods in date-time.
debfiles target will no longer be automatically run, allowing for
build scripts to do some customization of debfiles inbetween, or
to permit the packager maintain the debfiles separately.
* Master/deb.make: Slightly cleaner build dependency line for
gnustep-make.
The version of gnustep-make we build-depend on is now read using
dpkg -s.
* Master/source-distribution.make: Date-time and svn-revision
suffix are now using the tilde character to ensure that the
'actual' commit and 'actual' tagged release are treated as being
newer by the Debian packaging. Also stopped using periods in
date-time.
2014-05-06 Ivan Vucica <[email protected]>
* bake_debian_files.sh: If DEB_DEPENDS is non-empty, prepend a
comma.
2014-05-06 Ivan Vucica <[email protected]>
* GNUmakefile.in: Tarball may now have the SVN revision and
date appended to its version. This is done for svn-snapshot
and svn-export targets to ensure we have a 'unique' .orig.tar.gz
for uploading to the Launchpad PPA. The full name of the tarball
will be saved in a text file usable by scripts.
Tarball also has to be explicitly and separately produced and
optionally specifying DEB_TARBALL_VERSION when building a Debian
package.
Debian control files now can (and need to) be separately built
using the target debfiles.
* Master/source-distribution.make: Similarly to how gnustep-make
can export working copy as a tarball, the target svn-export has
been added to other GNUmakefiles.
Introduced TARBALL_VERSION as an overridable version string in
the tarball name.
Environment variables TARBALL_VERSION_INCLUDE_SVN_REVISION and
TARBALL_VERSION_INCLUDE_DATE_TIME now allow expanding the
tarball version with the svn revision and date+time.
Instead of EXPORT_SVN_NAME, now specifying entire EXPORT_SVN_URL
so that svn-export can specify '.'.
* Master/deb.make: Switched to use of TARBALL_VERSION as the
definitive version string in tarball name.
Added debclean target.
User now has to explicitly make a choice how the dist tarball
will be produced.
Depending on the method, tarball may be placed in the current
or parent directory, so we detect that (and prefer the current
directory).
* bake_debian_files.sh: Now defaulting to target_arch=any so that
the package gets built on all platforms when uploaded on Launchpad,
instead of detecting an arch from gnustep-make and burning that
arch into the source package.
Added support for TARBALL_VERSION.
Fixed a 'command not found' error.
Added support for projects without autotools.
2014-05-05 Ivan Vucica <[email protected]>
* GNUmakefile.in: Separately building source and binary package,
optionally signing. Support for gnustep-make-ld.so.conf.
* Master/deb.make: Tweaked procedure for building Debian packages
to avoid cleaning when attempting to get 'make' variables that can
be passed on to bake_debian_files.sh as environment variables.
Signing packages is now optional, and source and binary packages
are built separately.
* bake_debian.files.sh: Improved .spec parsing. Introduced
dependency on CDBS (which simplifies customizing of debian/rules)
while automating some edge cases. Handling of DEB_VERSION_SUFFIX.
* configure, configure.ac: Support for --enable-install-ld-so-conf.
* gnustep-make-ld.so.conf.in: Template for the dynamic linker
configuration file ld.so.conf/gnustep-make.conf.
2014-04-07 Ivan Vucica <[email protected]>
* Master/deb.make, bake_debian_files.sh: Rewrite of .deb-building
system that will produce both a source package and a binary package.
Work in progress; currently only gnustep-make itself builds correctly.
* GNUmakefile.in: Added the svn-export target which uses local files
to do the equivalent of 'make dist'. Switched to new way of building
.deb using bake_debian_files.sh.
* deb-equivs-control.template: No longer necessary; removed.
2014-03-27 Richard Frith-Macdonald <[email protected]>
* TestFramework/ObjectTesting.h: Add PASS_MATCH macro for matching
against a regular expresssion.
2014-01-16 Richard Frith-Macdonald <[email protected]>
* GNUmakefile.in:
Fix a couple more hardcoded 'make' calls.
* Instance/resource-set.make:
* Instance/Shared/bundle.make:
Try to get xxx_RESOURCE_DIR woreking consistently for all resources.
2014-01-12 Sebastian Reitenbach <[email protected]>
* config.make.in, GNUmakefile.in:
Do not hardcode "make". It already gets detected via configure,
so use the found name, especially on *BSD systems where its called
gmake
2014-01-10 Richard Frith-Macdonald <[email protected]>
* GNUmakefile.in: Implement Sebastian's suggestions for make targets
to build/install documentation with or without gnustep-make as a
convenience for packagers.
* Documentation/GNUmakefile: Use uninstalled gnustep-make from
enclosing directory if available ... based on idea by Niels and
code/comments by Markus.
2014-01-06 Richard Frith-Macdonald <[email protected]>
* Instance/Documentation/texi.make:
Revert change from 2009-09-19 since texi2html now seems to be
behaving as expected. However, attempt to move any html files
from the subdirectory in case we are using a version which still
puts them there.
2014-01-06 Richard Frith-Macdonald <[email protected]>
* INSTALL:
* Documentation/GNUmakefile:
Make it clearer (ie very explicit) that you need to install
gnustep-make in order to install documentation.
2013-12-25 Fred Kiefer <[email protected]>
* Instance/rules.make: Add detection for different forms of
the Info.plist.
* Instance/application.make,
* Instance/bundle.make,
* Instance/framework.make,
* Instance/gswapp.make,
* Instance/palette.make,
* Instance/service.make: Use GNUSTEP_PLIST_DEPEND directly.
2013-12-25 Fred Kiefer <[email protected]>
* config.make.in: Use the correct CXX compiler. Fixes bug #36722.
Patch by Johannes Lundberg <[email protected]>.
2013-12-24 Richard Frith-Macdonald <[email protected]>
* Version:
* Documentation/news.texi:
* Documentation/releasenotes.texi:
Make minor bugfix release ... Version 2.6.6
Update release notes/documentation
2013-12-12 Sebastian Reitenbach <[email protected]>
* Master/tool.make: on clean only delete the subdirectory that gets
created when calling make.
2013-12-07 Wolfgang Lux <[email protected]>
* target.make: Add -keep_private_externs to linker flags on OS X
when merging the object files of a subproject for compatibility
with other platforms.
2013-12-06 Adam Fedor <[email protected]>
* target.make: Add no-omit-framepointer on mingw32
2013-09-20 Ivan Vucica <[email protected]>
* Master/deb.make: File enumeration now uses 'find'. Fixed
problem where files outside 'Local' were being accidentally
dropped from the package. Symlinks are now also included
in the installed file list.
* GNUmakefile.in: Symlinks are now also included in the
installed file list.
2013-09-20 Ivan Vucica <[email protected]>
* deb-equivs-control.template: Added forgotten file.
2013-09-20 Ivan Vucica <[email protected]>
* GNUmakefile.in: Added deb.make. Also added new target,
'deb' which (using 'equivs-build') produces a Debian package
for gnustep-make.
* Master/deb.make: This file provides new targets 'deb' and
'debfile'. To produce a .deb package, you will need to install
package named 'equivs'. At the moment, manual patching of
/usr/bin/equivs-build is also necessary; please review comments
inside Master/deb.make for further information.
2013-07-27 Wolfgang Lux <[email protected]>
* configure.ac: Really fix the test whether the compiler uses the
non-fragile ABI by default. It should now work on all platforms
with either gcc or clang.
* configure: Regenerated.
2013-07-27 Richard Frith-Macdonald <[email protected]>
* configure.ac: Revert last change to get nonfragile abi detection
working on gnu/linux and freebsd again (not tested on other platforms).
* configure: Regenerated.
2013-07-26 Wolfgang Lux <[email protected]>
* configure.ac: Rewrite test whether the compiler supports the
non-fragile ABI once more, so that it now reports the correct
result.
* configure: Regenerated.
2013-07-26 Richard Frith-Macdonald <[email protected]>
* Version:
* Documentation/news.texi:
* Documentation/releasenotes.texi:
Make minor bugfix release ... Version 2.6.5
Update release notes/documentation
2013-07-14 Wolfgang Lux <[email protected]>
* configure.ac: Rewrite test whether the compiler supports the
non-fragile ABI with portable code that does not rely on a BSD
compatible echo command.
* configure: Regenerated.
2013-07-04 Richard Frith-Macdonald <[email protected]>
* rules.make: Fix order of includes directories ... SYSTEM_INCLUDES
should come last so that conflices between files of the same name in
different directories are resolved in the correct/expected order.
2013-06-17 Stefan Bidi <[email protected]>
* TestFramework/gnustep-tests.in: add support for .c and .cc files
2012-04-08 Richard Frith-Macdonald <[email protected]>
* TestFramework/ObjectTesting.h: Fix error performing equality test
in copying protocol test macro.
2012-03-28 Richard Frith-Macdonald <[email protected]>
Make release
* Version 2.6.4
Update release notes/documentation
2012-03-25 Richard Frith-Macdonald <[email protected]>
* TestFramework/Testing.h: Use -isEqualForTestcase: for PASS_EQUAL
macro equality testing if the expected value responds to it.
Add informal protocol declaring -isEqualForTestcase:
* TestFramework/ObjectTesting.h: Convert protocol checking functions
to macros (so error messages get file/line number information) and
get copy and coding before/after equality checks to use the
PASS_EQUAL macro so that we can easily make customised tests by
implementing -isEqualForTestcase: for the class being tested.
2012-03-16 Emmanuel Maillard <[email protected]>
* target.make: Add target for android
2012-03-08 Jean-Charles BERTIN <[email protected]>
* TestFramework/gnustep-tests.in: Fix typo
2012-03-01 Richard Frith-Macdonald <[email protected]>
* common.make: Remove -shared-libgcc linker flag
* configure.ac: Add check for clang and add -shared-libgcc to linker
flags if we aren't using it (using gcc) but are using exceptions.
Tidy a little.
Patch based on contribtion by Jean-Charles Bertin.
2012-03-01 Richard Frith-Macdonald <[email protected]>
* Version ... bump subminor number in preparation for next release.
2012-03-01 Richard Frith-Macdonald <[email protected]>
Make release
* Version 2.6.3
* Update release notes
2013-02-20 Nicola Pero <[email protected]>
* Instance/framework.make: Removed trailing '/' after
$(GNUSTEP_TARGET_LDIR) in a couple of cases, to fix building on
non-flattened layout.
2012-01-31 Richard Frith-Macdonald <[email protected]>
* rules.make: A couple more printout targets for managing installation
of libobjc2 if gnustep-config is not available (eg not in PATH) but
GNUSTEP_MAKEFILES is defined.
2012-09-24 Niels Grewe <[email protected]>
* configure.ac: Improve last change based on suggestions by David
Chisnall.
* configure: Regenerate.
2012-09-24 Niels Grewe <[email protected]>