aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 8aa177949092b3a649722d1d0c4d8e437a084861 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
2016-12-29  Gabriel Dos Reis  <gdr@axiomatics.org>

	* config/open-axiom.m4 (oa_shrlib_prefix): New AC_SUBST'd variable.
	* config/var-def.mk (oa_shrlib_prefix): New.

2016-02-14  Bill Page  <bill.page@newsynthesis.org>

	* config/open-axiom.m4 (X_PRE_LIBS): Fix typo.

2015-07-09  Igor Pashev <pashev.igor@gmail.com>

	* config/open-axiom.m4 (OPENAXIOM_HOST_COMPILERS): Make sure AC_PROG_CC
	and AC_PROG_CXX are used only once.
	* configure: Regenerated.

2014-11-20  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4 (OPENAXIOM_HOST_COMPILERS): Force Clang
	family of compilers on Mac OS X.  Restore full build on Mac.

2014-11-16  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4 (OPENAXIOM_CHECK_LLVM): New.
	(OPENAXIOM_HOST_COMPILERS): Call it.

2014-08-26  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4 (OPENAXIOM_LINK_FILES): New.
	* configure.ac: Call it.
	Protect openaxiom-c-macros.h.in for multiple inclusion.
	Now install it as <open-axiom/config>.

2014-08-16  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4: Do not waste time checking for standard
	integer types since we are requiring at least C++11.

2014-02-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4 (OPENAXIOM_CANONICAL_SYSTEM): Set derived
	OpenAxiom-specified src and target directory variables too.
	Remove most build directory variables.

2014-02-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4 (OPENAXIOM_CANONICAL_SYSTEM): Set derived
	OpenAxiom-specified build directories too.

2014-02-10  Gabriel Dos Reis  <gdr@integrable-solutions.net>>

	* config/open-axiom.m4: Clean up global variable names.
	* configure.ac: Likewise.

2014-02-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4: Clean up global variable names.
	* config/setup-dep.mk: Likewise.
	* config/var-def.mk: Likewise.
	* configure.ac: Likewise.

2014-02-02  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4 (OPENAXIOM_CHECK_IO): Prefer mktemp,
	mkdtemp, mkstemp over tempnam.

2013-11-26  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4 (OPENAXIOM_ALIGNMENT_OPERATOR): Define stub
	with standard syntax.
	(OPENAXIOM_ALIGNAS_SPECIFIER): Likewise.
	* config/openaxiom-c-macros.h.in: Update.

2013-11-24  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* configure.ac: Check for PowerShell on Windows platforms.

2013-06-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4 (OPENAXIOM_REJECT_ROTTED_LISP): Just warn
	for unsupported GCL version; do not reset arguments.
	(OPENAXIOM_FFI_TYPE_TABLE): Be GCL-2.6.9 ready.

2013-06-01  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4 (OPENAXIOM_CHECK_IO): Check for tempnam.

2013-05-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4 (OPENAXIOM_HOST_LISP_CPU_PRECISION): Update.
	ECL since 11.1.1 puts relevant information on *FEATURES* list.

2013-04-05  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* configure.ac: Output src/syntax/Makefile.
	* Makefile.am (OA_SRC_TARGETS): Add all-syntax.

2013-04-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* Makefile.am (OA_SRC_TARGETS): Include all-io.
	* config/depcomp: New.

2013-04-02  Gabriel Dos Reis  <gdr@integrable-solutions.net>

	* config/open-axiom.m4 (OPENAXIOM_REQUIRE_CXX11): New.
	* configure.ac: Use it.

2012-10-10  Igor Pashev  <pashev.igor@gmail.com>
	    Andrey G, Grozin  <A.G.Grozin@inp.nsk.su>
	    Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_LISP_FLAGS): Inhibit system-wide
	or user-supplied initialization files.

2012-08-19  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac: Define Automake conditional OA_DELAYED_FFI.
	* config/open-axiom.m4 (OPENAXIOM_CHECK_DELAYED_FFI): New.
	(OPENAXIOM_HOST_COMPILERS): Call it.

2012-05-19  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.in: Regenerate.
	* config/aclocal.m4: Move to toplevel.
	* config/libtool.m4: Remove.
	* config/ltoptions.m4: Likewise.
	* config/ltversion.m4: Likewise.
	* config/lt~obsolete.m4: Likewise.
	* config/open-axiom.m4 (OPENAXIOM_ALIGNMENT_OPERATOR): Use
	AC_LANG_SOURCE to generate test program.
	(OPENAXIOM_ALIGNAS_SPECIFIER): Likewise.

2012-02-03  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_ALIGNAS_SPECIFIER): New.
	(OPENAXIOM_CHECK_MISC): Use it.

2011-12-15  Alfredo Portes  <doyenatccny@gmail.com>

	* config/open-axiom.m4 (OPENAXIOM_DYNAMIC_MODULE_SUPPORT): Fix
	linker flags when building for Windows.

2011-12-03  Alfredo Portes  <doyenatccny@gmail.com>
	    Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (CXX): Define as substituted.
	(LD): Likewise.

2011-09-03  Igor Pashev  <pashev.igor@gmail.com>
	    Gabriel Dos Reis <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_CHECK_X11): Check for <X11/xpm.h>.

2011-08-23  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.am (OA_SRC_TARGETS): Include all-algstrap
	(all-algstrap): Require all-interpsys, and all-gcl if building GCL.

2011-07-07  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* OpenAxiom-1.4.1 released.

2011-07-06  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (ac_default_prefix): Set to C:/OpenAxiom on
	Windows platforms.

2011-07-05  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4: Don't test for GMP, just yet.

2011-07-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac: Use macx-g++ spec for QT when building for darwin
	host using C++ compiler for GNU.

2011-06-30  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_CHECK_GMP): New.
	(OPENAXIOM_CHECK_CORE_SUPPORT): Use it.

2011-06-15  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* OpenAxiom-1.4.0 has been released.

2011-06-14  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4: Remove --enable-locbfd from
	oa_gcl_bfd_option.
	(oa_gcl_emacs): Remove.

2011-06-11  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* TODO: Update.

2011-06-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_HOST_COMPILERS): Set
	oa_gnu_compiler right after test for C and C++ compilers.

2011-06-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4: Check for uid_t.

2011-04-10  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_HOST_LISP_CPU_PRECISION):
	Special-case for detecting binary personality. 
	* configure.ac: ECL now provides (at last!) way to gather
	information about binary personality.

2011-01-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac: Reject ECL on Mac OS X as it cannot give reliable
	information about its binary personality.

2010-11-28  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac: Fix thinko.
	* config/open-axiom.m4: Don't prepend 'openaxiom' to the name of
	runtime. 

2010-11-27  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (axiom_src_all): Remove.
	(axiom_src_subdirs): Likewise.
	* configure.ac: Likewise.
	* Makefile.am (OA_SRC_TARGETS): Include all-local.
	* Makefile.in: Regenerate.

2010-11-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.am: New.  Automake existing top-level Makefile.in.
	* Makefile.in: Generate from Makefile.am.
	* config/aclocal.m4: Regenerate.

2010-11-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* build-setup.sh: Simplify.

2010-11-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet: Remove.
	* build-setup.sh: Don't mention it.

2010-11-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_GCL_HACKS): Remove.  No longer
	necesary with newer GCL-2.6.8pre.
	* configure.ac: Dont' call it.

2010-08-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_BUILD_TOOLS): Check for ln -s
	and sed.
	* config/var-def.mk (oa_target_includedir): New.

2010-08-24  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_ALIGNMENT_OPERATOR): New.  Check
	for alignment operator.

2010-08-20  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	External tool noweb is no longer required.
	* INSTALL: Update instructions.
	* Makefile.pamphlet: Remove rules for building noweb.
	(AXIOM_SRC_TARGETS): Include all-utils.
	* config/open-axiom.m4 (OPENAXIOM_BUILD_TOOLS): Don't check for
	notangle and noweave.
	* config/setup-dep.mk: Remove rules for generating document.
	* config/var-def.mk: Remove NOTANGLE and NOWEAVE variables.
	* configure.ac: Instantiate Makefile for src/utils.

2010-08-18  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_CPPFLAGS_FOR_VENDOR_LOCK_INS): 
	New. Abstract over vendor lock-ins CPP flags.
	(OPENAXIOM_CHECK_MM): Check for file mapping capability.

2010-08-17  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* ChangeLog.jap: Merge with this ChangeLog.  Remove.

   2010-08-17  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	   * config/open-axiom.m4 (OPENAXIOM_HOST_PROGS): Don't check for awk
	   anymore.

   2009-07-16  Alfredo Portes  <doyenatccny@gmail.com>

       * configure.ac.pamphlet: Remove presea.

2010-08-16  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Remove.

2010-08-15  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_REJECT_ROTTED_LISP): Tidy.
	(OPENAXIOM_CHECK_GCL_INCLUSION): Likewise.
	(OPENAXIOM_LISP_FLAVOR): Likewise.
	(OPENAXIOM_HOST_COMPILERS): Likewise.
	(OPENAXIOM_PROG_LISP): Honor --enable-gcl properly.
	* Makefile.pamphlet (all-src): Rename axiom_all_prerequisites to
	oa_all_prerequisites. 

2010-08-15  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_BUILD_TOOLS): New.  Abstract
	over build tool requirements.
	* configure.ac.pamphlet: Use it.

2010-08-15  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_DYNAMIC_MODULE_SUPPORT): New.
	* configure.ac.pamphlet: Use it.

2010-08-14  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (CPPFLAGS): New expanded variable.
	(LDFLAGS): Likewise.
	(COMPILE): Include CPPFLAGS.
	(CXXCOMPILE): Likewise.
	(LINK): Include LDFLAGS.
	(CXXLINK): Likewise.
	(CXXLINK_SHRLIB): New.
	* config/open-axiom.m4 (OPENAXIOM_HOST_DATA_PROPERTIES): Move
	ABI flags setting to OPENAXIOM_HOST_COMPILERS.  The CPPFLAGS and
	LDFLAGS instead of CFLAGS and CXXFLAGS.

2010-08-14  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_CHECK_GCL_INCLUSION): New macro.
	(OPENAXIOM_LISP_FLAVOR): Likewise.
	(OPENAXIOM_HOST_COMPILERS): Likewise.
	(OPENAXIOM_GCL_HACKS): Likewise.
	(OPENAXIOM_SATISFY_GCL_NEEDS): Likewise.
	(OPENAXIOM_LISP_FLAGS): Likewise.
	(OPENAXIOM_FILE_EXTENSIONS): Likewise.
	(OPENAXIOM_FFI_TYPE_TABLE): Likewise.
	(OPENAXIOM_HOST_LISP_CPU_PRECISION): Likewise.
	(OPENAXIOM_HOST_DATA_PROPERTIES): Likewise.
	* configure.ac.pamphlet: Use them.

2010-08-14  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_REJECT_ROTTED_LISP): New.
	(OPENAXIOM_PROG_LISP): Likewise.
	* configure.ac.pamphlet: Use them. Simplify.

2010-08-13  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/open-axiom.m4 (OPENAXIOM_STANDARD_INTEGER_TYPES): New macro.
 	* configure.ac.pamphlet: Use it.

2010-08-08  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (CXXCOMPILE): Specify TAG.
	(COMPILE): Likewise.
	(CXXLINK): Likewise.

2010-07-29  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	Support C++ as implementation language.
	* config/var-def.mk (CXXCOMPILE): New.
	(CXXLINK): Likewise.

2010-05-07  Gabriel Dos Reis  <gdr@cse.tamu.edu>

	* configure.ac.pamphlet: Add new option: --enable-int-file-retention.

2010-02-08  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Check for ccl and ccl64 too.

2010-02-07  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Add support for Clozure CL.

2010-02-06  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Add support for --enable-threads.

2009-10-25  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (axiom_src_texdir): New.

2009-10-13  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Look for SBCL before GCL; look for ECL too.

2009-09-21  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Don't unconditionally initialize CCF.
	* config/var-def.mk (PLF): Remove.
	(LDF): Likewise.
	(LISP): Likewise.

2009-09-20  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Don't define CPP LINUXplaform,
	MACOSXplaform, and MSYSplatoform macros.

2009-09-16  Kosta Oikonomou <ko@research.att.com>
	    Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Don't insist on GNU C compiler if we
	don't use GCL.  Check for nsl on Solaris boxes.
	* config/var-def.mk (oa_c_libs): New.

2009-08-05  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* OpenAxiom-1.3.0 Released.

2009-07-24  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Reject SBCL-1.0.29 as too buggy to build
	OpenAxiom. 

2009-07-04  Alfredo Portes  <doyenatccny@gmail.com>

	* contrib/texmacs: New.

2009-07-02  Gabriel Dos Reis  <gdr@cse.tamu.edu>

	* configure.ac.pamphlet: Support --enable-profiling.
	* config/var-def.mk (oa_yesno_to_lisp_boolean): New.
	(oa_enable_profiling): Likewise.
	(oa_enable_lisp_profiling): Likewise.

2009-05-17  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Tidy Lisp systems invocation options.

2009-05-13  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Tidy.

2009-05-13  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Disable use of libtool to build shared
	libraries. 
	* config: Update autotools to newer versions.

2009-04-10  Aleksej Saushev  <asau@inbox.ru>

	* configure.ac.pamphlet: Recognize dragonfly triplet as BSD-flavour.

2009-04-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: ECL-9.3.0 and higher no longer needs
	debug-build to work around ECL compiler bug.

2009-02-22  Aleksej Saushev  <asau@inbox.ru>

	* configure.ac.pamphlet: Check awk and nawk before gawk.

2009-02-19  Aleksej Saushev  <asau@inbox.ru>

	* configure.ac.pamphlet: Fix indention of CPP directives.  Include
	<sys/types.h> when testing for openpty.

2009-02-09  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Check for <sys/ioctl.h>, <termios.h>, and
	<libutil.h>. 
	* config/openaxiom-c-macros.h.in: Regenerate.

2009-02-09  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Check path for `vi'.

2009-02-07  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Check endianness.

2009-01-29  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* OpenAxiom 1.2.1 Released.

2009-01-07  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* contrib/examples/time-client.input: New.

2009-01-03  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (AXIOM_SRC_TARGETS): Add all-databases.

2008-11-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (axiom_use_sman): Fix typo.

2008-11-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (oa_c_runtime_extra): Add @LIBS@.
	* configure.ac.pamphlet: Check for <pty.h> and <util.h>.  Check
	for openpty.	

2008-10-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Look for path to `awk'.
	Instantiate src/hyper/presea.

2008-09-13  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Simplify native type translation table
	entries. 

2008-08-22  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* OpenAxiom-1.2.0 has been released.

2008-08-19  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Active safety+debug build for ECL-base system.

2008-08-16  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Don't generate rules for extracting
	algebra bootstrap files.

2008-08-15  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (oa_standard_linking): New.  AC-substitute.

2008-08-13  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (LNKEXT): New.

2008-08-07  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (oa_use_dynamic_lib): New.  Decide when to
	use dynamically linked libraries.
	(axiom_fasl_type): Hold extensions of loadable FASL.

2008-08-07  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Add 'debug' to Lisp optimize proclamation
	when --enable-checking.

2008-08-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet: Use $(mkdir_p) in lieu of $(mkinstalldirs),
	during build.  Also use 'cp -p' instead of $(INSTALL).

2008-05-21  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Don't key all of HyperTex on X11.

2008-04-27  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Check from uint8_t.
	* config/openaxiom-c-macros.h.in: Rename from
	config/axiom-c-macros.h.in.
	* src: Propagate change.

2008-04-23  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Add native type translation table
	for ECL.

2008-04-05  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet [mingw] (oa_shrlib_flags): Ensure
	the compiler appreciates we want dynamic link.

2008-04-05  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (oa_shrlib_flags): Tidy.
	(oa_shrobj_flags): Likewise.
	* config/var-def.mk (LINK_SHRLIB): Tidy.
	* INSTALL: Update.
	* TODO: Likewise.

2008-04-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: When using CLisp, ensure FFI is supported.

2008-04-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Disable Libtool for building shared
	libraries on MinGW and Cygwin.
	* config/var-def.mk (SHREXT): Tidy.
	(LINK_SHRLIB): New.

2008-04-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Automatically detect SBCL or Clisp.
	check for BFD only if we're building custom GCL.

2008-03-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (shrext_cmds): Autconf-substitute.
	(libext): Likewise.
	* config/var-def.mk (SHREXT): Rename from DLLEXT.
	(LIBEXT): New.

2008-03-24  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Add native types translation table for
	CLisp. 

2008-03-17  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Check for <dirent.h>
	* config/axiom-c-macros.h.in: Update.

2008-03-16  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Compute native type translation table.

2008-03-16  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Tell Libtool to assume `dlopen'.
	* config/var-def.mk (DLLEXT): New.

2008-03-15  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (axiom_c_runtime): Don't include core, as
	it is always built into libopen-axiom-core.

2008-02-17  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (install): Tidy.

2008-02-14  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* OpenAxiom-1.1.0 has been released.

2008-02-09  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	Add support for batch processing.
	* configure.ac.pamphlet (OPENAXIOM_BASE_RTS): Define.
	* Makefile.pamphlet (install): Tidy.
	* config/axiom-c-macros.h.in: New.

2008-01-21  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (LDF): Include -lm.

2008-01-05  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: For mingw host, default $prefix to 
	C:/Program Files/OpenAxiom.
	Don't instantiate src/script/axiom.
	Instantiate src/driver/Makefile.  Tidy.
	* Makefile.pamphlet: Tidy.
	* config/axiom-c-macros.h.in: Update.

2007-12-27  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/setup-dep.mk ($(srcdir)/Makefile.in): No longer generate
	automatically. 

	* build-setup.sh (SUBDIRS): Don't extract Makefile.in for src/lisp.
	Same for src/graph, src/etc, src/sman, src/hyper, src/doc.

	(SUBDIRS): src/booklets no longer exists.
	* configure.ac.pamphlet: Don't instantiate Makefile for
	src/booklets. 

2007-11-30  Ralf Hemmecke  <ralf@hemmecke.de>

	* configure.ac.pamphlet: Fix a thinko in checking for makeindex.

2007-11-25  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet: Remove all-depsys rule.

2007-10-10  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Tidy.  Don't instantiate src/lisp/core.lisp.
	* configure.ac: Regenerate.
	* configure: Likewise.
	* config/var-def.mk (open_axiom_installdir): New.
	(AXIOM): Support versioning.
	* Makefile.pamphlet (install): Tidy.
	Remove sections on SPAD and SYS variables.
	* Makefile.in: Regenerate.

2007-09-23  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/setup-dep.mk ($(top_builddir)/libtool): Regenerate when
	out of date.

2007-09-10  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (all-noweb): Depend only on one target,
	notangle. 
	($(addprefix $(axiom_build_bindir)/, notangle noweave)): Touch
	shell scripts too.
	* Makefile.in: Regenerate.

2007-09-08  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Fix thinko.
	* config/var-def.mk (SYS): Remove.
	(AX_FLAGS): Likewise.

2007-09-08  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (axiom_optimize_options): New substitued
	variable. 
	Genrate src/lisp/core.lisp at configure time.
	* configure.ac: Regenerate.
	* configure: Likewise.
	* config/setup-dep.mk ($(top_builddir)/src/lisp/core.lisp): New rule.

2007-09-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

 	* configure.ac.pamphlet: Ignore any existing GCL that is not
	either 2.6.7 or 2.6.8.
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-09-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/setup-dep.mk ($(top_srcdir)/configure.ac): Robustify
	regeneration from pamphlet.
	($(srcdir)/Makefile.in): Likewise.

2007-09-03  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Disable HyperDoc if X11 is not available.
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-09-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (<<find lisp>>): Keep gcl directory test
	simple. 
	* Makefile.pamphlet (maybe-cp-noweb-srcdir): New rule.  Factored
	from the rule below.
	($(addprefix $(axiom_build_bindir)/, notangle noweave)): Make it a
	prerequisite. 
	* config/var-def.mk (WEAVE): Export.
	(WEAVE): Likewise.

2007-08-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet ($(AXIOM_SRC_TARGETS)): Don't augment the PATH
	variable. it is no longer needed.
	* Makefile.in: Regenerate.

2007-08-24  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet ($(addprefix $(axiom_build_bindir)/, notangle
	noweave)): Fix path to noweb C files.  Refer to the touch command
	through $(TOUCH).
	* Makefile.in: Regenerate.

2007-08-24  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* INSTALL: Tidy.

2007-08-23  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Set release info to 1.1.0 (experimental).

2007-08-23  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* INSTALL: Update instructions.

2007-08-23 Alfredo Portes <alfredo.portes@gmail.com>

	* MAINTAINERS: Update file with my roles.

2007-08-21  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (check): New rule.
	* Makefile.in: Regenerate.

2007-08-20  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* contrib: New directory.

2007-08-17  Bill Page <bill.page@newsynthesis.org>

	* update MAINTAINERS file with my roles as requested

2007-08-16  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Check for executable gcl before
	toplevel directory gcl.
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-08-16  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* TODO: Update

2007-08-16  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Don't error out if noweb source files
	are present when no executable is available.
	* configure.ac.: Regenerate.
	* configure: Likewise.
	* config/var-def.mk (axiom_build_nowebdir): Resurect.
	* Makefile.pamphlet (<<noweb>>): Resurect.
	(clean-local): Remove noweb build dir too.
	* Makefile.in: Regenerate.

2007-08-15  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Check GCL tarball dependency.
	* configure.in: Regenerate.

2007-08-10  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (install): Ensure $(bindir) exists before
	installing axiom script.
	* Makefile.in: Regenerate.

2007-08-07  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (axiom_gcl_emacs): New.  Work around
	GCL's configure bug.
	(GCLOPTS): Add it.
	* configure.ac: Regenerate.
	* configure: Regenerate.

2007-08-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (quiet_flags, eval_flags): New variables.

2007-07-29  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* build-setup.sh: Conservatively re-build autogenerated build
	system files.

2007-07-28  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (COMPILE): New.
	(LINK): Likewise.

2007-07-27  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	Add libtool machinery
	* configure.ac.pamphlet: Include config/aclocal.m4
	(<<binary utils>>): Don't check for ranlib here. 
	(<<initialize shared libraries tool>>): Turn on libtool support.
	* config/var-def.mk (LIBTOOL_DEPS): New Autoconf subst'd variable.
	(LIBTOOL): New.
	* config/ltmain.sh: New.
	* config/aclocal.m4: Likewise.
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-07-13  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* gcl: Sync with GCL-2.6.8pre CVS version.

2007-06-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (axiom_fasl_type): Specify :object  when
	using ECL.
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-06-20  Gabriel Dos Reis  <gdr@cs.tamu,edu>

	* configure.ac.pamphlet: Dissociate HyperDoc enabling from X11
	availability.  
	* configure.ac: Regenerate.
	* configure: Likewise.
	* config/var-def.mk (axiom_use_x): New variable.

2007-05-31  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* axiom.bi/config/var-def.mk (NOISE): Remove.
	(SINK_NOISE): Likewise.
	(AX_FLAGS): Adjust.

2007-05-28  Gabriel Dos Reis  <gdr@cs.tamu,edu>

	* config/var-def.mk (AX_FLAGS): Remove.
	(SYS): Export.

2007-05-23  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* gcl: Sync with GCL-2.6.8pre CVS version.

2007-05-08  Gabriel Dos Reis  <gdr@cs.tamu,edu>

	* Makefile.pamphlet (COMMAND): Remove.
	* Makefile.in: Regenerate.

2007-05-08  Gabriel Dos Reis  <gdr@cs.tamu,edu>

	* configure.ac.pamphlet (axiom_use_sman): New.  Record whether or
	not Super is to be used in installed system.  Default to yes.
	* configure.ac: Regenerate.
	* configure: Likewise.

	* Makefile.pamphlet (install): Simplify.
	* Makefile.in: Regenerate.

2007-05-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Update version information.
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-04-10  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (LN_S): Override.
	* configure.ac.pamphlet (<<file utils>>): Comment out test for
	"ln -s".
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-04-09  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (axiom_top_builddir): Remove leading ./ now
	that we require Autoconf 2.60 and the Autoconf 2.59 bug is fixed.
	(axiom_targetdir): Likewise.
	(INC): Likewise.
	(AXIOM): Likewise.
	* configure.ac.pamphlet: Update version information.
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-04-08  Gabriel Dos Reis  <gdr@cs.tamu.edu>
	    Bill Page  <bill.page1@synthesis.anikast.ca>

	* configure.ac.pamphlet (axiom_c_runtime_extra): Add
	-lsocket on Solaris plaforms.
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-04-07  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Add configure support for runtime checking.
	(axiom_enable_checking): New.  
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-03-28  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Update version information.
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-03-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (all-boot all-lisp all-depsys all-interpsys
	all-axiomsysall-algebra all-input):  Make all-gcl a prerequisite
	when GCL must be included.
	* Makefile.in: Regenerate.

2007-03-25  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (AXIOM_SRC_TARGETS): Add all-depsys.
	* Makefile.in: Regenerate.

2007-03-24  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (PACKAGE_VERSION): New.
	* Makefile.pamphlet (SRC): Remove.

2007-03-24  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Don't build GCL if one is found in the
	build environment.
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-03-21  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* noweb: Remove.
	* configure.ac.pamphlet: Remove support for --with-noweb.
	Abort if required noweb utilities are not available in the build
	environment. 
	* configure.ac: Regenerate.
	* configure: Likewise.
	* Makefile.pamphlet:  Remove support for noweb build.
	* Makefile.in: Regenerate.
	
2007-03-13  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Support GCL, ECL, SCL, and CLISP.
	* configure.ac: Regenerate.
	* configure: Likewise.
	* Makefile.pamphlet ($(AXIOM_SRC_TARGETS)): Fix thinko.
	* Makefile.in: Regenerate.
	* config/var-def.mk (FASLEXT): New Autoconf subst'd variable.
	* config/setup-dep.mk (mostlyclean-generic): Be quiet.
	(clean-generic): Likewise.
	(distclean-generic): Likewise.

2007-03-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/setup-dep.mk ($(RECURSIVE_TARGETS)): Remove use of ENV.
	(maintainer-clean-recursive): Likewise.
	(%.dvi): Set TEXINPUTS and BIBINPUTS before running LaTeX.

2007-03-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Rework detection of GCL.  Support
	--with-lisp= and --enable-gcl.
	* configure.ac: Regenerate.
	* configure: Likewise.
	* config/var-def.mk (axiom_include_gcl): New.
	(AXIOM_LISP): Rename from GCL.

2007-03-03  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (COMMAND): Install in $(libdir),
	not $(libexecdir).
	(install): Likewise.
	* Makefile.in: Regenerate.
	* config/var-def.mk (VPATH): Set.
	* configure.ac.pamphlet: Clarify documentation on host,
	build and target platforms.  Improve documentation on cross
	build/compilation.  Require Autoconf 2.60.
	* configure.ac: Regenerate.
	* configure: Likewise.

2007-02-14  Bill Page  <bill.page1@synthesis.anikast.ca>

	* src/boot/Makefile.pamphlet: revert use of "gcl -batch -eval"
	where multipart path names required

2007-02-08  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Enfore GNU Make requirement.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-12-30  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Use egrep instead of "grep -E", as the
	latter may not be supported.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-12-29  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Check for gmake first.

2006-12-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (DOCUMENT): Remove.
	(ENV): Remove.
	(PLF, CCF, LDF, LISP): Move to config/var-def.mk
	* Makefile.in: Regenerate.

2006-12-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet: Don't define DESTDIR.  Install Axiom main
	system in $(libexecdir), put the axiom script in $(bindir) thereby
	enabling standard "plug'n play".
	* Makefile.in: Regenerate.
	* config/var-def.mk (bindir): Define standard Autoconf variable.
	(sbindir): Likewise.
	(libexecdir): Likewise.
	(datarootdir): Likewise.
	(datadir): Likewise.
	(sysconfdir): Likewise.
	(sharedstatedir): Likewise.
	(localstatedir): Likewise.
	(includedir): Likewise.
	(oldincludedir): Likewise.
	(docdir): Likewise.
	(infodir): Likewise.
	(htmldir): Likewise.
	(dvidir): Likewise.
	(pdfdir): Likewise.
	(psdir): Likewise.
	(libdir): Likewise.
	(lispdir): Likewise.
	(localedir): Likewise.

2006-12-21  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Always build src/input.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-12-15  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (\subsubsection{OBJ}): Remove.
	(\subsubsection{MNT}): Likewise.
	(clean-local): Don't remove anymore.
	(CCLBASE): Remove.
	* Makefile.in: Regenerate.

2006-12-14  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (AXIOM): Change to relative path.

2006-12-14  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Adjust Make rules for extracted SPAD
	files in src/algebra.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-12-10  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (axiom_gcl_rsym_hack): New Autoconf
	subst'd variable.  Encapsulate codes to be run on Windows, to work
	around GCL's incapability to generate proper reference to
	rsym.exe during compiler::link.  This horrible hack is not
	supposed to last. 
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-12-10  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (axiom_src_subdirs): New Autoconf subst'd
	variable.  Accumulate src/ subdirectories to consider for
	recursive walk.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-12-09  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (ENV): Don't pass INT and OBJ.
	(INT, OBJ): Remove.
	(stamp-rootdirs): Don't make INT and OBJ here.
	* Makefile.in: Regenerate.

2006-12-09  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (AX_FLAGS): Don't pass DAASE.
	* configure.ac.pamphlet (axiom_c_runtime_extra): New Autoconf
	subst'd variable.  Accumulate extra runtime libs to link into
	Axiom images. 
	* configure.ac: Regenerate.
	* configure: Regenerate.

2006-12-09  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (all-gcl): Don't put extension here.

2006-12-08  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Move generation of algebra bootstrap
	files, and SPAD type definition files to end of config.status
	generation. 
	* configure.ac: Regenerate.
	* configure: Likewise.

	* config/var-def.mk (TAR): Don't set anymore.
	(axiom_top_builddir, axiom_builddir, axiom_build_bindir,
	axiom_build_libdir): Adjust definition.
	(AXIOM): Likewise.
	(AX_FLAGS): Pass down SPAD, with same value as AXIOM.
	(axiom_build_document): Adjust.

	* Makefile.pamphlet (ENV): Don't pass SPAD here, it is now part of
	AX_FLAGS. 
	(SPAD): Don't set here.
	* Makefile.in: Regenerate.

2006-12-07  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (axiom_targetdir): Adjust definition.
	(axiom_build_document): Adjust definition.
	(AXIOM): Likewise.

	* configure.ac.pamphlet (axiom_targetdir): Don't compute here.

	* config/var-def.mk (axiom_top_srcdir): Remove.
	(axiom_configdir): Adjust definition.

	* configure.ac.pamphlet (axiom_top_srcdir): Don't compute here.
	Bug was fixed a long time ago -- agains my willings :-)

	* config/var-def.mk (axiom_builddir): Adjust definition.
	(axiom_build_bindir): Likewise.
	(axiom_build_libdir): Likewise.
	(axiom_build_datadir): New.
	(axiom_src_srcdir): Adjust definition.

	* configure.ac.pamphlet (axiom_builddir): Don't compute.
	(axiom_build_bindir): Likewise.
	(axiom_build_libdir): Likewise.

	* config/var-def.mk (TAR): Remove definition.
	(axiom_top_builddir): Make relative.

	* configure.ac.pamphlet: Don't check for tar anymore.

2006-12-07  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Compute all of src/algebra/Makefile at
	configuration time.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-12-07  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/move-if-change: New file.  Import from standard GNU
	development tools.

2006-12-06  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (SRC): Remove.

2006-12-06  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (AXIOM, DAASE, SYS): Don't export through GNU
	Make extension "export".
	(AX_FLAGS): New.  Use for "exporting" variables.

2006-12-06  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (PACKAGE_STRING): Define.
	* Makefile.pamphlet (VERSION): Remove.
	* Makefile.in: Regenerate.

2006-12-06  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet ($(addprefix $(axiom_build_bindir)/, notangle
	noweave)): Don't overwrite existing directory.  Don't try to
	install elisp files -- the Make target rule contains non-portable
	instructions; and this is not needed anyway.
	($(axiom_build_bindir)/gcl$(EXEEXT)): Don't overwrite existing
	directory. 
	* Makefile.in: Regenerate.
	* config/axiom-c-macros.h.in: Regenerate.
	* configure.ac.pamphlet: Check for AF_UNIX and AF_LOCAL.  Check
	for fork and wait declarations.  Build terminal I/O support
	only if applicable.  Same for graphics.
	Lose --enable-vssize switch, it leads to GCL build failure on
	windows and does nto seem to bring anything to linux builds.
	Don't require latex; build documentation only if latex is
	available.
	* configure.ac: Regenerate.
	* configure: Likewise.
	

2006-12-05  Waldek Hebisch <hebisch@math.uni.wroc.pl>

	* configure.ac.pamphlet: add 'all-noweb' to dependencies only
	when needed.

2006-12-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (<<C headers and libraries>>): Check for 
	availability of geteuid and getegid.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-12-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (\subsubsection{Sockets}): Rework tests.
	* configure.ac: Regenerate.
	* configure: Likewise.
	* config/axiom-c-macros.h.in: Likewise.

2006-12-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet ($(addprefix $(axiom_build_bindir)/, notangle
	noweave)): Don't run texhash.
	* Makefile.in: Regenerate.

2006-12-03  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (\subsubsection{Signals}): Ensure the
	header <signal.h> is available on host.  Check for sigaction
	availability. 
	* configure.ac: Regenerate.
	* configure: Likewise.
	* config/axiom-c-macros.h.in: Regenerate.

2006-12-03  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Expand documentation.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-12-02  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (axiom_c_runtime): New variable.
	Accumulate the components to build into the C runtime support.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-12-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (\subsubsection{GCLDIR}): Remove.
	(ENV): Clean.
	* Makefile.in: Regenerate.

2006-11-29  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Fix typo.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-11-29  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Don't abort is <regex.h> is missing; just 
	disable HyperDoc.
	* configure.ac: Regenerate.
	* configure.in: Likewise.

2006-11-28  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* gcl: New directory.  Import export of GCL branch
	Version_2_6_8pre as of 2006-11-28.

	* noweb: New directory.

2006-11-28  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* lsp: Move to src/lisp.

2006-11-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (build_srcdir): Restore from previous
	accidental deletion.
	* Makefile.in: Regenerate.

2006-11-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (AXIOM_SRC_TARGETS): Fix typos.
	* Makefile.in: Regenerate.

2006-11-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Move XXXplatform macros to
	config/axiom-c-macros.h.
	* configure.ac: Regenerate.
	* configure: Likewise.

	* config/var-def.mk (EXEEXT): New variable.

	* Makefile.pamphlet (all-noweb): Add New phony target.
	Add support for OS that requires file extension for executable
	binary files.
	* Makefile.in: Regenerate.
	* config/axiom-c-macros.h.in: Regenerate.

2006-11-25  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (all-src, all-lib): Remove body of rule.
	($(addprefix $(axiom_build_bindir)/, notangle noweave)): Add
	$(EXEEXT) to executable binary filenames.

2006-11-24  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	Add support for systems without X11.
	* configure.ac.pamphlet (axiom_src_all): New Autoconf-subst'd
	variable.  
	* configure.ac: Regenerate.
	* configure.in: Regenerate.

2006-11-24  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (axiom_configdir): New.
	(axiom_c_macros): Likewise.
	(axiom_includes): Likewise.

	* Makefile.pamphlet (AXIOM_SRC_TARGETS): New.
	(all-ax): Depend directly on all-src.
	(all-src): Rename from $(src_stamp).
	(all-lib): Rename from $(lib_sramp).
	* Makefile.in: Regenerate.

2006-11-22  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (mostlyclean-local): Remove lastBuildDate.
	(all-ax): Remove noise.
	(all-bootsys, all-interpsys): Make PHONY targets.
	(\section{The Build Flow}): New.

2006-11-22  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/setup-dep.mk (pamphlets_SOURCES): Fix typo.

2006-11-21  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* build-setup.sh:  Take care of regenerating config/axiom-c-macros.h

2006-11-21  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Add support for CPP macros defined by
	configure. 
	* configure.ac: Regenerate.
	* configure: Likewise.
	* config/axiom-c-macros.h.in: New.  Generated by Autoheader.

2006-11-17  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (axiom_gcl_mm_option): Lose
	--enable-maxpage for MAC OS.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-11-15  Waldek Hebisch <hebisch@math.uni.wroc.pl>
	    Bill Page <bill.page1@synthesis.anikast.ca>

	* rename mixed case files to avoid svn checkout problems
	  on Windows and Mac, e.g. src/hyper/bitmaps/Alpha.bitmap
	  to alpha-cap.bitmap, etc.
	* delete duplicate file src/share/doc/hypertex/pages/util.ht
	  and junk from src/doc/ps
	* Correct noweb syntax in Rosetta.pamphlt

2006-11-15  Humberto Ortiz Zuazaga  <humberto@hpcf.upr.edu>
	    Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (<<gcl options>>): Split GCLOPTS in
	orthogonal variables.  When building GCL, disable support for
	X Window system and TK.  Lose --enable-custreloc for MAC OS.
	* configure.in: Regenerate.
	* configure" Likewse.

2006-11-11  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (VERSION): Fix thinko from last commit.
	* Makefile.in: Regenerate.

2006-11-10  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (SHELL): Define.
	(.SUFFIXES): New empty rule.
	* Makefile.pamphlet (VERSION): Get value from Autoconf
	initialization.
	* Makefile.in: Regenerate.

	* README.build-improvements: Update.

2006-11-09  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (\subsection{C headers}): New.  Check for 
	<regex.h>.  Document that the macros XXXplatform should be removed.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-11-09  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/setup-dep.mk (%.dvi): Tidy.
	* configure.ac.pamphlet: Reorganize sections. 
	* configure.ac.: Regenerate.
	* configure: Likewise.

2006-11-05  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* README: Sync with silver (as of revision 247)

2006-10-28  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/setup-dep.mk ($(RECURSIVE_TARGETS)): Fix thinko.
	(mostlyclean-recursive, clean-recursive, distclean-recursive,
	maintainer-clean-recursive):  New rules.
	(mostlyclean, clean, distclean): Now depend on recursive rules.

	* Makefile.pamphlet (all-bootsys, all-interpsys): New rules.

2006-10-28  Waldek Hebisch  <hebisch@math.uni.wroc.pl>

	* *.jpg, *.png: Backport form trunk, correct
	properties and fix corruption.
	* All files:
	svn propdel svn:keywords -R
	
2006-10-23  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet: Fix typo.
	* Makefile.in: Regenerate.

	* configure.ac.pamphlet: Don't include nowed package.
	(SRC_SUBDIRS): Escape embedded underscore.
	* configure.ac: Regenerate.
	* configure.in: Regenerate.

2006-10-20  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/setup-dep.mk: Tidy.
	(dvi-ax, $(axiom_build_texdir)/axiom.sty): New rules.

2006-10-16  Waldek Hebisch  <hebisch@math.uni.wroc.pl>

	* config/setup-dep.mk: Fix exit status

2006-10-13  Waldek Hebisch  <hebisch@math.uni.wroc.pl>

	* Makefile.pamphlet (all-recursive, all-ax): Move dependency
	on axiom_required_build_utils@ for all-ax to all-recursive
	* Makefile.in: Regenerate.

2006-10-12  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (all-ax): Don't depend on stamp-build-scripts
	as it no longer exists.

2006-10-10  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (SPD, SPADBIN, ZIPS): Remove.
	(ENV): Don't set them anymore.
	(LSP, INT, OBJ, INC): Adjust definition.
	(SUBDIRS): Add src/lib
	(TMP): Move to config/var-def.mk
	* Makefile.in: Regenerate.
	* config/var-def.mk (TMP): Move from Makefile.pamphlet.

2006-10-08  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (AXIOM): Adjust definition.
	* configure.ac: Regenerate.
	* configure: Likewise.
	* config/var-def.mk (axiom_target_srcdir): New.
	* Makefile.pamphlet (SPAD, SPADBIN, COMMAND): Adjust definition.
	(MNT): Remove.
	(ENV): Don't pass it anymore.
	(all): Depend directly on $(axiom_build_document).
	(book, install, stamp-rootdirs): Adjust.
	(stamp-build-scripts): Remove.
	* Makefile.in: Regenerate.

2006-10-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/setup-dep.mk ($(top_srcdir)/configure.ac,
	$(srcdir)/Makefile.in): Don't directly refer to "notangle".

2006-10-03  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (stamp-rootdirs): Tidy.

2006-09-28  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/setup-dep.mk (Makefile): Don't depend directly on
	$(top_srcdir)/configure.

2006-09-27  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (AXIOM): Move from toplevel Makefile.
	* Makefile.pamphlet (do-all): Remove.
	(<<src>>, <<lsp>>, <<document>>): Likewise.
	($(src_stamp), $(lsp_stamp), $(lib_stamp)): Consolidate.
	(VERSION): Update.
	(PATH_EXPORTS): Remove.
	(AXIOM): Move to config/var-def.mk.
	* Makefile.in: Regenerate.
	
2006-09-27  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet ($(src_stamp), $(lsp_stamp), $(lib_stamp)):
	Split from previous rule.  Keep old rules to preserve some obscure
	dependencies. 
	* Makefile.in: Regenerate.

2006-09-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (SRC_SUBDIRS): Move from
	Makefile.pamphlet.  Rename from SRCDIRS.
	* configure.ac: Regenerate.
	* configure: Likewise.

	* Makefile.pamphlet ($(lib_stamp) $(lsp_stamp) $(src_stamp)):
	Simplify. 
	(SRCDIRS): Move to configure.ac.pamphlet.
	(ENV): Remove SRCDIRS.
	* Makefile.in: Regenerate.

2006-09-25  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (do-all): Don't make srcsetup.
	($(addprefix $(axiom_build_bindir)/, notangle noweave)): Rename
	from noweb.
	(nowebclean): Remove.
	(srcsetup): Likewise.
	($(build_libdir)/stamp): New rule.
	(srcdir): Depends on lspdir.
	(build_libdir): New variable.
	* Makefile.in: Regenerate.

	* configure.ac.pamphlet: Find complete path for notangle and
	noweave.  Update axiom_required_build_utils.
	* configure.ac: Regenerate.
	* configure. Likewise.

2006-09-25  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (GCLOPTS): Refine logic with respect to
	BFD.  Check for <bfd.h> and libbfd.a before telling GCL to build
	its own version.
	* configure.ac: Regenerate.
	* configure: Regenerate.

2006-09-25  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (axiom_target_datadir): New.
	(axiom_target_texdir): Use it.

2006-09-25  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Tidy.  Remove old configure behaviour.
	Defiine AXIOM based on target canonical triplet.
	* configure: Regenerate.
	* configure.ac: Likewise.

	* config/var-def.mk (SYS, DAASE): Move from toplevel
	Makefile.pamphlet. Export.

	* Makefile.pamphlet (SYS, DAASE): Move to config/var-def.mk.
	(ENV): Don't pass DAASE, SYS, AXIOM_X11_CFLAGS, and
	AXIOM_X11_LDFLAGS here.
	* Makefile.in: Regenerate.

2006-09-19  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet (LISP, PFL, CCF, LDF): Provide default
	definition.  Use $target to refine logic.

2006-09-19  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (install): Use $(axiom_src_srcdir), not ${SRC}.

2006-09-18  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet:  Tidy.  Describe the new cleanup
	methodology. 
	(subdir): New.  Describe.
	(all): Don't LaTeX main Makefile pamphlet.
	(document, do-document): Remove.
	(clean-local): Rename from do-clean].  Tidy.
	(mostlyclean-local, distclean-local): New.
	(pamphlets): New.  Describe.
	($(axiom_build_texdir)/axiom.sty): Use $(axiom_build_document).
	(VERSION): Update.
	* Makefile.in: Regenerate.

	* config/setup-dep.mk:  Tidy.  Implement general rules to make DVI
	files. Likewise for cleanups.

	* configure.ac.pamphlet: Check for the 'ar' program.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-09-15  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (subdir): Remove.

2006-09-17  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (GCLVERSION): Don't set here.  Remove
	description. 
	(lspdir): Just say "$(MAKE)" to build lisp.
	* Makefile.in: Regenerate.
	* configure.ac.pamphlet: Remove axiom_gcl_version.  Ask for
	complete path to gcl.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-09-15  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Attempt to support "unknown" platforms.
	* configure.ac: Regenerate
	* configure: Likewise.

2006-09-13  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (AXIOMXLROOT, BYE): Move to
	config/var-def.mk. 
	(ENV): Don't set here.
	* Makefile.in: Regenerate.

2006-09-12  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (O): Don't set here.
	* Makefile.in: Regenerate..

2006-09-12  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* README.build-improvements:  Update.

	* Makefile.pamphlet (CC): Remove explicit setting throughout.
	This is now present in each makefile -- except toplevel
	Makefile.${SYS} but, it is not used there anyway.
	Don't pass explicitly in ENV.
	(AWK): Likewise.
	(TOUCH): Likewise.
	(TAR): Likewise.
	(RANLIB): Likewise.
	(PATCH): Likewise.

2006-09-11  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (<<Makefile.axposf1v3>>): Remove.
	(<<Makefile.axposf1v4>>): Likewise.
	(<<Makefile.hp10>>): Likewise.
	(<<Makefile.hp11>>): Likewise.
	(<<Makefile.hp9>>): Likewise.
	(<<Makefile.irixmips1>>): Likewise.
	(<<Makefile.irixmips3>>): Likewise.
	(<<Makefile.rs6000aix3>>): Likewise.
	(<<Makefile.rs6000aix4>>): Likewise.
	(<<Makefile.rs6000aix4.1>>): Likewise.
	(<<Makefile.rs6000aix4.3>>): Likewise.
	(<<Makefile.sun4os55c>>): Likewise.
	(<<Makefile.sun4os58c>>): Likewise.
	* Makefile.in: Regenerate.

2006-09-11  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Check for makeindex.
	* configure.ac: Regenerate.
	* configure: Likewise.

	* config/var-def.mk (axiom_src_datadir): New variable. 

	* Makefile.pamphlet (DAASE): Define in the toplevel environment.
	Pass to sub-environments.  Remove definition from special-cased
	makefiles. 
	* Makefile.in: Regenerate.

2006-09-09  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Fix logic in setting of NOTANGLE and NOWEAVE.

2006-09-09  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (axiom_src_docdir): New Autoconf-substituted
	variable. 
	(axiom_src_algdir): Likewise.

2006-09-05  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/var-def.mk (abs_builddir): New Autoconf-substituted
	variable. 

2006-09-04  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Check for 'ln -s'.
	* configure.ac: Regenerate.
	* configure: Likewise.

	* config/var-def.mk (SINK_NOISE): New variable.
	(LN_S): New.  Autoconf-substituted.

2006-09-03  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet:  Add more Makefile templates to instantiate.
	(axiom_top_srcdir): New variable.
	(axiom_targetdir): Likewise.

	* configure.ac: Regenerate.
	* configure: Likewise.
	
	* config/mkinstalldirs: New.  Import from Automake utilities.
	* config/var-def.mk (subdir): New.
	* config/setup-dep.mk ($(srcdir)/Makefile.in): Tidy.
	(Makefile): Likewise.
	($(axiom_build_document)): New rule.

	* build-setup.sh: Rework.
	* config/axiom.m4: Likewise.

	* README.build-improvements: Add more TODOs.

	* Makefile.pamphlet: Move axiom variables to config/var-def.mk.
	(do-clean): Don't remove Makefiles.  This
	should be the job of distclean.
	($(axiom_build_texdir)/axiom.sty): New rule.  Extract axiom.sty to
	the build-specific directories.
	(stamp-build-scripts): Use it as prerequisite.
	(${SPD}/src/Makefile): Remove.
	(libspadclean): Don't try to build Makefile.  And don't remove
	makefiles. 
	(srcdir): Don't depend directly on makefile.
	(srcsetup): Likewise.
	(lspdir): Likewise.

2006-08-28  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Ensure we use GCC/gcc as C compiler.
	* config/var-def.mk (OBJEXT): New variable.

2006-08-27  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (GCLVERSION): Define as Autoconf-substituted
	variable. 
	* Makefile.in: Regenerate.

	* configure.ac.pamphlet: Add support for --with-gcl, auto-detect.
	* configure.ac: Regenerate.
	* configure: Likewise.

2006-08-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* build-setup.sh: Regenerate lsp/Makefile.in too.

	* config/var-def.mk: New file.  Hold boileplate definition of
	standard Autoconf/Automake variables.
	* config/axiom.m4: New file.  
	* configure.ac.pamphlet: Include it.  Add configuration macro
	directory.  Use AXIOM_MAKEFILE from config/axiom.m4.
	Create lsp/Makefile at configure time.
	* configure.ac: Regenerate.
	* configure: Likewise.

	* Makefile.pamphlet: Move standard Autoconf variables to
	config/var-def.mk.
	(noweb): Fix thinko in TEXINPUTS substitution.
	(\subsubsection{LSPMakefile}): Remove, as lsp/Makefile is now
	created by configure at configure-time.
	(stamp-gcldir): Rename from gcldir throughout.
	* Makefile.in: Regenerate.

2006-08-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (GCLVERSION): Remove support for 2.6.7.

2006-08-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (abs_top_builddir): Rename from top_builddir.
	(VERSION): Update.
	* Makefile.in: Regenerate.

	* config/setup-dep.mk (Makefile): change dir to
	$(abs_top_builddir) before regenerating.

2006-08-13  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* config/setup-dep.mk: New file.
	* configure.ac.pamphlet: Append boilerplate dependencies at the
	end of top level Makefile.
	* configure.ac: Regenerate.
	* configure: Likewise.
	* Makefile.pamphlet: Move boilerplate build machinery dependencies
	to config/setup-dep.mk
	* Makefile.in: Regenerate.

2006-08-13  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	Add support for minimum "up-to-date" consistency.
	* Makefile.pamphlet (build_setup_files): New.
	($(top_srcdir)/configure): Likewise.
	($(srcdir)/Makefile.in): Likewise.
	(Makefile): Likewise.

2006-08-12  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (<<GCLVERSION>>): Clean up.

2006-08-11  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (noweb): Use $(MAKE) instead of plain `make'. 

2006-08-11  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: Add support for --with-noweb. 
	(axiom_optional_srcdir): Remove.

	* Makefile.pamphlet (axiom_build_texdir): New.
	(axiom_src_srcdir): Tidy.
	(noweb): Rework.  Build nowed in the build directory.

2006-08-10  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (INSTALL): New Autoconf-substitued variable.
	(do-all): Now depend on axiom_required_build_utils and
	stamp-build-scripts. 
	(do-start): Likewise.
	(do-document): Likewise.
	(<<*>>): Include <<rootdirs>>.
	(do-clean): Remove stamp files too.
	(<<literate commands>>): Rework.
	(STAMP): New.
	(DOCUMENT): Remove variable definition.
	(TANGLE): Define as Autoconf-substitued
	(WEAVE): Likewise.
	(stamp-rootdirs): Rename from rootdirs.
	(srcdir): Adjust dependence list.
	(srcsetup): Likewise.
	(lspdir): Likewise.
	(document): Likewise.
	(<<clean>>): Remove.
	(<<rootdirs>>): Remove from target Makefiles.
	(<<noweb>>): Likewise.
	(<<literate commands>>): Likewise.

2006-08-09  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (do-all): Use $(axiom_build_document).
	Rework definiions for Autoconf-derived variables.
	(axiom_build_document): New.
	(ENV): Use axiom_build_document.

2006-08-08  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet: Add more Autoconf-computed variables.
	* Makefile.in: Regenerate.

2006-08-06  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	Support for --prefix configure option.
	* Makefile.pamphlet (DESTDIR): Derive from $(prefix).
	* Makefile.in: Regenerate.

2006-08-06  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (DESTDIR): Rename from INSTALL, throughout.
        * Makefile.in: Regenerate.

2006-08-06  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile: Remove.

2006-08-05  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* Makefile.pamphlet (AWK): Define as substituted variable.
	(PATCH): Likewise.
	(TAR): Likewise.
	(AXIOM_X11_CFLAGS): New. Define as substituted variable. Document.
	(AXIOM_X11_LDFLAGS): Likewise.
	(\subsection{Environment}): Include AXIOM_X11_CFLAGS and
	AXIOM_X11_CFLAGS in ENV.
	(\subsubsection{The XLIB variable}): Remove.
        * Makefile.in: Regenerate.

	* Throughout, remove special-case definition of TAR, XLIB, PATCH.
	Remove XLIB from ENV.

	* configure.ac.pamphlet (\section{Old Story}): Remove.
	(\section{Where is X11?}): New.
	Add test for detecting include files and libraries directories for
	X11.  Punt on Xpm for the moment.
	* configure.ac: Likewise.
	* configure: Likewise.

2006-08-05  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	Provide support for "./configure && make && make install".
	* build-setup.sh: Generate Makefile.in too.

	* configure.ac.pamphlet (must_set_AXIOM): Don't ask user to
	set the AXIOM variable.
	* configure.ac: Regenerate.
	* configure: Regenerate.

	* Makefile.pamphlet (do-all): New target.  Rename from target all.
	(all): Export the variable AXIOM, then make do-all.
	(VERSION): Update.
	* Makefile.in: Generate.

2006-08-02  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac.pamphlet: New file.
	* configure.ac: Regenerate from pamphlet file.
	* configure: Regenerate.

2006-08-02  Gabriel Dos Reis  <gdr@cs.tamu.edu>

	* configure.ac: New file.
	* configure: Likewise.  Generated from configure.ac

	* config/: New directory.
	* config/config.guess: New file.
	* config/config.sub: Likewise.
	* config/install-sh: Likewise.
	* config/missing: Likewise.

	* build-setup.sh: New file.

2006-07-31  Ralf Hemmecke  <ralf@hemmecke.de>

	* Makefile.pamphlet, src/scripts/Makefile.pamphlet,
	src/doc/Makefile.pamphlet: After checking out the trunk of Axiom
	Silver, a 'make' did not succeed because the src/script directory
	was copied twice. Since the .svn directory inside contains
	write-protected files, it caused problems.

	Quote from Makefile.pamplet:

	Since this is the first build message that gets generated
	we echo the ENV variable for debugging purposes. We use the
	specific file[[${MNT}/${SYS}/bin/Makefile.pamphlet]] as the
	trigger to prevent duplicate execution of this stanza.

	That is now also used in src/scripts/Makefile.pamphlet.