-
Notifications
You must be signed in to change notification settings - Fork 6
/
ChangeLog
4259 lines (2560 loc) · 106 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
2008-02-26 18:37 vq
* Makefile.in, NEWS, configure, configure.in, man/dmake.tf,
win95/microsft/config.h, winnt/microsft/config.h, man/dmake.nc:
#i83497# Release dmake 4.12.
2008-02-07 14:50 vq
* function.c, sysintf.c, man/dmake.nc, man/dmake.tf:
#i83940# Make the result of $(mktmp ..) aware of the .WINPATH setting.
2008-02-07 10:42 vq
* dmake.c:
#i85136# The content of INCFILENAME needs no further expansion.
2008-02-07 10:28 vq
* dmake.c:
#i85136# Prevent filenames from being expanded if they already are.
2008-02-06 17:22 vq
* dmake.c:
#i85136# Do not expand ABSMAKECMD and MAKECMD macros.
2008-02-05 17:02 vq
* tests/: Makefile.am, Makefile.in, targets-30:
#i84800# Add testcase.
2008-02-04 16:05 vq
* make.c:
#i85381# Fix possible heap corruption for the cygwin dmake version.
2008-01-22 00:34 vq
* unix/runargv.c:
#i83540# Separate error handling from pid.
2008-01-07 20:36 vq
* unix/runargv.c:
#i83540# Add diagnostics for WaitForMultipleObjects() calls.
2008-01-07 19:31 vq
* quit.c:
#i83540# Prevent possible invinite loop when aborting.
2008-01-07 01:07 vq
* path.c:
#i84800# Do not collaps the foo/.. entries if foo is '.' or '..'.
2008-01-06 16:21 vq
* make.c, unix/runargv.c:
#i85014# Let master targets for targets with multiple (::) rules inherit
the newest time stamp of their "sub"-rules.
Make runargv() indicate that it finished the command when it had to wait
for its completion.
2007-11-28 15:18 vq
* win95/microsft/config.mk:
#i83540# Fix dmake's own makefile to build itself.
2007-11-27 23:08 vq
* Makefile.am, Makefile.in, msdos/rmprq.c,
win95/microsft/vpp40/mk.bat:
#i83540# A parallel runargv needs a corresponding rmprq.
2007-11-26 09:23 vq
* unix/runargv.c:
#i83540# Return the pid that was waited for.
2007-11-25 22:37 vq
* unix/runargv.c:
#i83540# Fix handle inheritance for native W32 process spawning.
2007-11-25 12:53 vq
* NEWS:
#i83540# Add NEWS entry about parallel builds with native W32 dmake.
2007-11-22 10:27 vq
* unix/runargv.c:
#i83540# Avoid conflict on solaris, rename NOPID to DMNOPID.
2007-11-11 19:12 vq
* dag.c, extern.h, imacs.c, sysintf.c, unix/runargv.c,
win95/microsft/config.mk, win95/microsft/ruletab.c,
win95/microsft/vpp40/mk.bat:
#i83540# Make dmake buildable with .NET 2003 again.
2007-11-11 18:05 vq
* Makefile.am, Makefile.in, dag.c, dmake.c, extern.h, imacs.c,
sysintf.c, msdos/runargv.c, unix/runargv.c,
win95/microsft/ruletab.c:
#i83540# Enable parallel builds with native W32 dmake. (First MinGW only.)
2007-11-10 19:19 vq
* sysintf.c:
#i83523# Post-rename clean up.
2007-11-10 19:03 vq
* extern.h, function.c, msdos/borland/bcc30/config.h,
msdos/borland/bcc40/config.h, msdos/borland/bcc45/config.h,
msdos/borland/bcc50/config.h, msdos/borland/tcc20/config.h,
msdos/microsft/config.h, msdos/zortech/config.h,
os2/ibm/config.h, win95/borland/bcc50/config.h,
win95/microsft/config.h, winnt/borland/bcc50/config.h,
winnt/microsft/config.h:
#i83523# Rename macro PVOID to DMPVOID to avoid problems when including
windows.h.
2007-11-09 20:54 vq
* unix/runargv.c:
#i10000# Small clean up.
2007-11-09 10:50 vq
* NEWS, configure, configure.in, man/dmake.nc, man/dmake.tf,
readme/read1st.txt, win95/microsft/config.h,
winnt/microsft/config.h:
#i83497# Bump version to 4.12-cvs.
2007-10-13 19:43 vq
* Makefile.in, NEWS, configure, configure.in, man/dmake.nc,
man/dmake.tf, win95/microsft/config.h, winnt/microsft/config.h:
#i79271# Release dmake 4.11.
2007-10-13 18:27 vq
* tests/misc-20:
#i10000# Fix typo.
2007-10-13 18:21 vq
* tests/: Makefile.am, Makefile.in, misc-21:
#i81252# Add testcase.
2007-10-11 16:57 vq
* tests/: function_macros-9, misc-9, targets-21, targets-26,
targets-27:
#i50092# Work around Solaris and nfs timing issues.
Patch from [email protected].
2007-10-11 16:36 vq
* make.cmd:
#i81855# Add a comment about building dmake on OS/2.
2007-10-06 10:33 vq
* msdos/runargv.c, tests/recipes-9, unix/runargv.c:
#i80598# Always issue a warning if the actual execution of a recipe line
(this does not include successfully executed, but failing programs) fails.
2007-09-24 17:45 vq
* tests/: Makefile.am, Makefile.in, targets-29:
#i80012# Add testcase.
2007-09-24 13:51 vq
* unix/runargv.c:
#i80012# Fix crash when deleting intermediate targets.
2007-09-23 18:12 vq
* Makefile.in, configure:
#i81855# Regenerate configure and friends.
2007-09-23 18:05 vq
* configure.in, dmake.c, expand.c, extern.h, make.cmd, path.c,
sysintf.c, startup/unix/os2/Makefile.am,
startup/unix/os2/Makefile.in, startup/unix/os2/macros.mk,
unix/os2/public.h:
#i81855# More changes for the OS/2 port.
Patch provided by Yuri Dario.
2007-09-22 19:11 vq
* configure:
#i81855# Regenerate configure and friends.
2007-09-22 19:05 vq
* NEWS, imacs.c, os2/sysintf.h, unix/dcache.c, unix/dirbrk.c,
unix/sysintf.h:
#i81855# Clean-up merge from CWS os2port01.
2007-09-22 18:27 vq
* make.cmd:
#i81855# Revert change to make.cmd as it refers to a non-existing script
in dmake\os2\gcc\emx\mk.cmd.
2007-09-22 18:08 vq
* unix/runargv.c:
RESYNC: (1.11-1.12); FILE MERGED
2007-09-22 18:08 vq
* os2/ruletab.c:
RESYNC: (1.2-1.3); FILE MERGED
2007-09-22 18:08 vq
* expand.c:
RESYNC: (1.6-1.7); FILE MERGED
2007-09-22 18:08 vq
* dmake.c, sysintf.c:
RESYNC: (1.10-1.11); FILE MERGED
2007-09-22 18:08 vq
* configure.in:
RESYNC: (1.29-1.30); FILE MERGED
2007-09-21 20:46 vq
* NEWS:
#i79271# Update NEWS file.
2007-09-21 19:14 vq
* dmake.c:
#i81296# Change comment.
2007-09-19 21:50 vq
* man/: dmake.nc, dmake.tf:
#i81252# Restore alphabetical order.
2007-09-18 21:03 vq
* man/: dmake.nc, dmake.tf:
#i81252# Add documentation for the SHELLCMDQUOTE macro.
2007-09-18 20:34 vq
* getinp.c, imacs.c, make.c, sysintf.c, vextern.h, mac/public.h,
msdos/runargv.c, msdos/spawn.c, msdos/borland/bcc30/public.h,
msdos/borland/bcc40/public.h, msdos/borland/bcc45/public.h,
msdos/borland/bcc50/public.h, msdos/borland/tcc20/public.h,
msdos/microsft/msc51/public.h, msdos/microsft/msc60/public.h,
msdos/zortech/public.h, os2/ibm/icc/public.h,
os2/ibm/icc3/public.h, qssl/public.h, qssl/runargv.c,
startup/win95/macros.mk, startup/winnt/macros.mk, tos/public.h,
unix/runargv.c, unix/386ix/public.h, unix/bsd43/public.h,
unix/bsd43/uw/public.h, unix/bsd43/vf/public.h,
unix/bsdarm32/public.h, unix/coherent/ver40/public.h,
unix/coherent/ver42/public.h, unix/cygwin/public.h,
unix/linux/gnu/public.h, unix/macosx/gnu/public.h,
unix/solaris/public.h, unix/solaris/gnu/public.h,
unix/sysvr1/public.h, unix/sysvr3/public.h,
unix/sysvr3/gnu/public.h, unix/sysvr3/pwd/public.h,
unix/sysvr4/public.h, unix/xenix/public.h,
unix/xenix/pwd/public.h, win95/borland/bcc50/public.h,
win95/microsft/vpp40/public.h, winnt/borland/bcc50/public.h,
winnt/microsft/vpp40/public.h, winnt/mingw/public.h,
winnt/msvc6/public.h:
#i81252# Add a new SHELLCMDQUOTE control macro.
2007-09-17 18:24 vq
* tests/: function_macros-8, macros-7:
#i78776# Fix testcases for non-cygwin OS.
2007-09-16 12:35 vq
* tests/: Makefile.am, Makefile.in, misc-20:
#i81296# Add testcases.
2007-09-16 00:10 vq
* tests/macros-11:
#i74007# Change testcase.
2007-09-15 23:57 vq
* dmake.c, mac/ruletab.c, man/dmake.nc, man/dmake.tf,
msdos/ruletab.c, os2/ruletab.c, unix/ruletab.c,
win95/borland/ruletab.c, win95/microsft/ruletab.c,
winnt/borland/ruletab.c, winnt/microsft/ruletab.c:
#i74007# Revert the part of the previous patch that lets OOODMAKEMODE
always be imported from the environment. Instead move the definition
of targets from the command line after the evaluation of the startup
makefile.
2007-09-15 23:16 vq
* tests/macros-11:
#i74007# Add testcase.
2007-09-15 23:06 vq
* man/dmake.nc:
#i74007# Update text version of the man page.
2007-09-15 23:03 vq
* dmake.c, mac/ruletab.c, man/dmake.tf, msdos/ruletab.c,
os2/ruletab.c, unix/ruletab.c, win95/borland/ruletab.c,
win95/microsft/ruletab.c, winnt/borland/ruletab.c,
winnt/microsft/ruletab.c:
#i74007# Always import OOODMAKEMODE from the environment. Define targets from
the command line after the macros from the command line and OOODMAKEMODE
from the environment are set.
2007-09-13 23:40 vq
* dmake.c, extern.h, make.c, rulparse.c:
#i81296# Clear flags indicating that targets that infered makefiles (and
their prerequisites) were previously build.
2007-09-13 20:08 vq
* dmake.h, rulparse.c:
#i81296# Remove bit recycling for F_VISITED/F_USED. Use only F_VISITED.
2007-09-09 15:11 vq
* quit.c:
#i81273# Fixed another MinGW build problem.
2007-09-08 14:20 vq
* make.c, rulparse.c:
#i10000# Add some output for .INCLUDE operations when the -vf verbose
flag is given.
2007-09-06 10:53 vq
* quit.c:
#i81273# Fix MinGW build problem.
2007-09-02 06:57 vq
* tests/: Makefile.am, Makefile.in, misc-19:
#i67911# Add testcase.
2007-09-02 06:44 vq
* make.c, sysintf.c, msdos/runargv.c, qssl/runargv.c,
unix/runargv.c, win95/microsft/vpp40/runargv.c,
winnt/microsft/vpp40/runargv.c:
#i67911# Wait with the deletion of temporary files until the target is
completely made.
2007-08-31 01:24 vq
* sysintf.c, man/dmake.nc, man/dmake.tf, tests/targets-21,
tests/targets-28:
#i64572# Issue a warning for virtual targets with corresponding files.
Update testcases.
2007-08-30 05:13 vq
* man/: dmake.nc, dmake.tf:
#i64572# Add documentation.
2007-08-28 22:27 vq
* tests/Makefile.am:
#i64234# Also change Makefile.am.
2007-08-28 22:25 vq
* tests/: Makefile.in, function_macros-10:
#i64234# Add testcase.
2007-08-28 14:28 vq
* function.c, man/dmake.nc, man/dmake.tf:
#i64234# Fix $(mktmp ..) handling of leading spaces.
2007-08-26 18:22 vq
* tests/: Makefile.am, Makefile.in, macros-11:
#i74007# Add testcase.
2007-08-25 16:50 vq
* tests/: Makefile.am, Makefile.in, targets-28:
#i64572# Add testcases.
2007-08-25 15:34 vq
* make.c, sysintf.c:
#i64572# If a target without recipes has an existing file use its time
stamp only if the time is newer than the one of the its newest prerequisite.
2007-08-22 10:02 vq
* sysintf.c:
#i64572# Fix the F_RULES problem mentioned before.
2007-08-21 11:09 vq
* make.c, sysintf.c:
#i64572# To keep the dependency chains intact targets without recipes inherit
the time of their newest prerequisite. (Additional patches are needed as
currently the F_RULES flag is not always set correctly.)
2007-08-19 20:05 vq
* sysintf.c:
#i64572# Assumes that targets without recipe lines have a current time
stamp after they were made (independent of the actual time stamp of the
file.
2007-08-18 18:23 vq
* make.c, sysintf.c:
#i64572# Make dmake warn if the time stamp of a target is not updated
after making the target. This warning can be silenced using the
.SILENT attribute.
2007-08-17 23:21 vq
* make.c:
#i10000# Remove unused variable.
2007-08-17 23:16 vq
* dmake.h, make.c, sysintf.c:
#i10000# Add some comments.
2007-08-15 17:46 vq
* tests/: Makefile.am, Makefile.in, targets-27:
#i80687# Add testcase.
2007-08-15 17:25 vq
* make.c:
#i80687# Fix building of inferred phony prerequisites.
2007-08-14 13:55 vq
* make.c:
#i64572# Revert previous patch.
2007-08-13 11:33 vq
* make.c:
#i64572# Make dmake warn if the time stamp of a target is not updated
after making the target.
2007-08-11 17:23 vq
* tests/: Makefile.am, Makefile.in, recipes-9:
#i80598# Add testcase.
2007-08-11 16:52 vq
* unix/runargv.c:
#i80598# Fix handling of ignored errors in the spawn enabled version
of dmake.
2007-08-10 13:59 vq
* tests/: Makefile.am, Makefile.in, targets-26:
#i66751# Add testcase.
2007-08-10 13:39 vq
* infer.c:
#i66751# Make sure that infered phony %-targets do not have a time stamp.
2007-08-10 11:42 vq
* infer.c, man/dmake.nc, man/dmake.tf:
#i66751# Accept .PHONY attribute in %-targets.
2007-08-09 15:46 vq
* macparse.c:
#i69510# Change error on assignment to an empty macro name to a warning.
2007-08-08 22:00 vq
* tests/: Makefile.am, Makefile.in, recipes-8:
#i67709# Add testcase.
2007-08-08 21:43 vq
* parse.c, rulparse.c:
#i67709# Improve parsing of group recipes.
2007-08-08 13:49 vq
* tests/: Makefile.am, Makefile.in, macros-10:
#i69510# Add testcase.
2007-08-08 12:54 vq
* macparse.c:
#i69510# Improve error message.
2007-08-08 12:52 vq
* macparse.c:
#i69510# Improve macro name syntax check during assignment.
2007-08-06 21:54 vq
* rulparse.c, man/dmake.nc, man/dmake.tf:
#i66448# Clarify prerequisites for %-targets.
2007-08-05 17:10 vq
* function.c, tests/Makefile.am, tests/Makefile.in,
tests/function_macros-9:
#i50092# Enhance $(shell,expand .. ) parsing. Add testcase.
2007-08-05 14:55 vq
* make.c:
#i70168# Clear F_MARK flag after dynamic prerequisite expansion is done.
2007-08-05 13:51 vq
* infer.c:
#i80144# Clean-up.
2007-08-05 13:03 vq
* infer.c, tests/targets-24:
#i80144# Change error about ambigous inference targets to warning.
2007-08-04 14:56 vq
* tests/: Makefile.am, Makefile.in, targets-25:
#i80352# Add testcase.
2007-08-04 14:42 vq
* make.c:
#i80352# Fix .PRECIOUS attribute.
2007-08-04 00:15 vq
* tests/: Makefile.am, Makefile.in, targets-23, targets-24:
#i80144# Add testcases.
2007-07-31 20:45 vq
* tests/: Makefile.am, Makefile.in, targets-22:
#i80143# Add testcase.
2007-07-31 20:29 vq
* infer.c:
#i80143# Fix problem marking some intermediate targets removable.
2007-07-30 22:23 vq
* expand.c:
#i80009# Add missing string initialization.
2007-07-29 22:28 vq
* infer.c:
#i80144# Improve check for ambiguous inference chains.
2007-07-29 12:10 vq
* infer.c, stat.c:
#i10000# Add comments to documents aspects of the inference mechanism.
2007-07-28 13:12 vq
* configure, configure.in:
#i79815# Fix default DMAKEROOT macro value.
2007-07-27 22:03 vq
* tests/: Makefile.am, Makefile.in, targets-21:
#i78837# Add testcase.
2007-07-27 21:37 vq
* tests/: Makefile.am, Makefile.in, macros-9:
#i80010# Add testcase.
2007-07-27 15:47 vq
* expand.c:
#i80010# Keep quotes for :1 and :i macro extensions.
2007-07-27 15:16 vq
* tests/: Makefile.am, Makefile.in, macros-8:
#i80009# Add testcase.
2007-07-27 13:06 vq
* NEWS, man/dmake.nc, man/dmake.tf:
#i78776# Document new normalizing function macro and macro extension.
2007-07-26 18:27 vq
* expand.c:
#i80009# Fix handling of quoted filenames for :b :d :e :f macro expansions.
2007-07-24 20:31 vq
* tests/: Makefile.am, Makefile.in, function_macros-8, macros-7:
#i78776# Add testcases.
2007-07-24 19:00 vq
* dag.c, dmake.h, expand.c, extern.h, function.c, path.c:
#i78776# New function macro $(normpath[,para] list) to normalise the
elements of list and a macro extension $(macro_name:n) to normalise
the content of macro_name. The normalization is done token-wise and
quotes are preserved.
On cygwin the result honors the setting of .WINPATH to determine the
output format. If the optional parameter para is given in the
$(normpath ...) case its expanded value is used to override the
.WINPATH setting for the output of the function macro.
2007-07-12 18:59 vq
* make.c, tests/Makefile.am, tests/Makefile.in, tests/targets-20:
#i69462# Do not assume that non-existing prerequisites for %-targets have
the same time stamp as the parent target. Testcase added.
2007-07-05 17:17 vq
* getinp.c:
#i79200# Remove unneeded error on defined or DEFINED after .IF expression.
2007-07-05 11:58 vq
* Makefile.in, NEWS, configure, configure.in, man/dmake.nc,
man/dmake.tf, readme/read1st.txt, win95/microsft/config.h,
winnt/microsft/config.h:
#i79271# Bump version to 4.11-cvs.
2007-06-25 18:11 vq
* Makefile.in, NEWS, configure, configure.in, man/dmake.nc,
man/dmake.tf, readme/read1st.txt, win95/microsft/config.h,
winnt/microsft/config.h:
#i78508# Release dmake 4.9.
2007-06-22 16:47 vq
* man/dmake.nc, man/dmake.tf, tests/Makefile.am, tests/Makefile.in,
tests/targets-19:
#i78061# Add testcase and documentation.
2007-06-22 13:36 vq
* man/: dmake.nc, dmake.tf:
#i74007# Add documentation to manpage.
2007-06-21 16:28 vq
* tests/: Makefile.am, Makefile.in, targets-18:
#i74007# Add testcase.
2007-06-20 18:26 vq
* dag.c, imacs.c, path.c, vextern.h:
#i74700# Add a new special macro OOODMAKEMODE that is used to toggle
OOo build specific behavior. If OOODMAKEMODE is set (i.e. it begins with y)
the leading ./ of a path will no longer be removed.
This patch also fixes iz78061.
2007-06-20 18:07 vq
* configure.in:
#i78152# Make dmake buildable on GNU/kFreeBSD.
2007-06-17 23:56 vq
* man/: dmake.nc, dmake.tf:
#i78033# Document :i macro expansion.
2007-04-24 13:42 vq
* Makefile.in, NEWS, configure, configure.in, man/dmake.nc,
man/dmake.tf, win95/microsft/config.h, winnt/microsft/config.h:
#i73700# Release dmake 4.8.
2007-04-09 09:22 vq
* tests/misc-18:
#i73499# Fix bash syntax typo.
2007-04-08 23:27 vq
* tests/misc-18:
#i73499# Make test work on Solaris.
2007-04-08 23:06 vq
* make.c:
#i73499# Fix potential problem with m_at getting freed without being
initalized first.
2007-03-27 13:21 vq
* man/: dmake.nc, dmake.tf:
#i10000# Fix typos in manual.
This patch was provided by [email protected].
2007-03-24 00:29 vq
* make.c, man/dmake.nc, man/dmake.tf:
#i75697# Document the special treatment of $? for the :! ruleop.
2007-03-23 16:40 vq
* NEWS, man/dmake.nc, man/dmake.tf, tests/Makefile.am,
tests/Makefile.in, tests/misc-18:
#i73499# Add documentation and testcase.
2007-03-19 00:58 vq
* sysintf.c:
#i73499# Restrict function to cygwin only use.
2007-03-18 11:02 vq
* sysintf.c:
#i73499# Add missing include statement.
2007-03-17 15:00 vq
* dag.c, dmake.c, dmake.h, dmdump.c, extern.h, getinp.c, imacs.c,
infer.c, make.c, rulparse.c, sysintf.c, vextern.h:
#i73499# Add new .WINPATH attribute to generate Windows style paths
(with regular slashes) instead of the default cygwin style (POSIX)
paths for dmake's dynamic macros.
This attribute is specific for cygwin dmake executables and non-cygwin
environments ignore this attribute.
The windows style paths use regular slashes ('/') instead of the
usual windows backslash ('\') as directory separator to avoid quoting
problems (It still is a cygwin dmake!) and cygwin as well as native
windows programs should have no problems using this (c:/foo/bar) path
representation.
The affected macros are $@, $*, $>, $?, $<, $&, $^ and $(PWD),
$(MAKEDIR) and $(TMD).
Examples:
Content of $(PWD) without .WINPATH (default): /cygdrive/c/temp
Content of $(PWD) with .WINPATH set: c:/temp
2007-03-16 22:36 vq
* sysintf.c:
#i10000# Trivial fix.
2007-03-13 20:51 vq
* sysintf.c, unix/rmprq.c:
#i10000# No real change, only comments were added or modified.
2007-01-29 23:24 vq
* man/: dmake.nc, dmake.tf:
#i73996# Update man page.
2007-01-29 21:39 vq
* make.c, path.c, sysintf.c, vextern.h:
#i73996# Avoid relative paths going up to the root directory.
2007-01-26 19:51 vq
* dag.c, imacs.c, make.c:
#i739183 Mark the internal macros PWD, MAKEDIR and TMD as precious.
Also commit some small macro relates clean ups and comment changes.
2007-01-22 21:49 vq
* dag.c:
#i10000# Remove warning and add error handling.
2007-01-22 21:25 vq
* getinp.c, make.c:
#i10000# Small cosmetic changes.
2007-01-21 18:21 vq
* configure, configure.in, path.c, man/dmake.nc, man/dmake.tf,
unix/dcache.c:
#i73661# Improve case insensitive directory caching on case sensitive
file systems but it is *not* recommended to to so. A comment was added
to the man page emphasizing this.
2007-01-20 22:00 vq
* Makefile.in, configure, configure.in, man/dmake.nc, man/dmake.tf,
readme/read1st.txt, win95/microsft/config.h,
winnt/microsft/config.h:
#i73700# Bump version to 4.8-cvs.
2007-01-27 20:53 vq
* configure, configure.in:
Masterfix from SRC680_m200. This patch fixes a MacOSX problem
encountered after integration into the OOo SRC680 master.
2007-01-15 21:36 vq
* msdos/runargv.c:
#i61856# There is currently no parallel processing for the native W32 dmake.
Let Wait_for_child() always return -1 indicating that there is nothing to
wait for on this OS.
2006-12-21 23:45 vq
* NEWS:
#i69952# Release dmake 4.7
(Some extra changes were done in CWS dmake47.)
2006-12-21 23:36 vq
* unix/runargv.c:
#i61856# Remove another verbose debugging statement.
2006-12-20 22:16 vq