File: OChangeLog

package info (click to toggle)
pspp 0.6.2-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 18,664 kB
  • ctags: 13,313
  • sloc: ansic: 132,458; sh: 48,033; perl: 1,252; lisp: 597; xml: 154; makefile: 132; sed: 16
file content (2406 lines) | stat: -rw-r--r-- 64,390 bytes parent folder | download | duplicates (2)
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
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2008-06-13  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Fix typo in AC_PREREQ command name.  Thanks to
	Stepan Kasal <kasal@ucw.cz> for reporting the problem.

2008-06-04  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Update version number to 0.6.0 in preparation for
	release.

2008-05-15  Ben Pfaff  <blp@gnu.org>

	* Smake (GNULIB_MODULES): Don't depend on memmem module, because
	PSPP does not use memmem any longer.  Use
	unilbrk/ulc-width-linebreaks module instead of the linebreak
	module, because the latter was split up into multiple modules and
	that's the one we actually need.

2008-05-09  John Darrington <john@darrington.wattle.id.au>

	* INSTALL: For obscure reasons gettext 0.17 requires that 
	the string 'GNU pspp' occurs in some file in the root 
	directory. Otherwise make distcheck fails with a very non-intuitive 
	error message.  So for want of somewhere better I added it 
	in INSTALL.

	But since this string now appears in this ChangeLog file, it
	could be taken out of INSTALL ...

2008-04-19  John Darrington <john@darrington.wattle.id.au>

	* configure.ac : Improve checking of ncurses availability.

2008-04-15  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Properly report required version of libglade.
	Thanks to unknown-1 <pspp@sjpaes.nl> for reporting this bug.

2008-04-15  John Darrington <john@darrington.wattle.id.au>

	* configure.ac : Replace AC_CHECK_LIB with AC_SEARCH_LIBS as
	recommended by latest autoconf manual.

2008-02-19  John Darrington <john@darrington.wattle.id.au>

	* configure.ac INSTALL: We now depend on GTK+ 2.12

2007-12-11  John Darrington <john@darrington.wattle.id.au>

	* t-test-independent-samples-dialog.c: Quoted the group values, when
	the group variable is a string variable.

2007-12-04  Ben Pfaff  <blp@gnu.org>

	* Smake (GNULIB_MODULES): Add ftello module.

2007-11-05  Ben Pfaff  <blp@gnu.org>

	* configure.ac: No need for check for off_t or for the size of
	float or long double any longer, as we don't use the results
	anymore.  Also, no need to put #include <locale.h> into config.h
	any longer, as this was only needed for --with-included-gettext,
	which we have not supported for some time.

2007-11-03  Ben Pfaff  <blp@gnu.org>

	Allow output files to overwrite input files (bug #21280).

	* Smake (GNULIB_MODULES): Add fatal-signal, tempname modules.

2007-11-02  Ben Pfaff  <blp@gnu.org>

	* Smake (GNULIB_MODULES): Add isfinite, round modules.

2007-10-12  Ben Pfaff  <blp@gnu.org>

	Use trunc module from gnulib instead of our home-grown solution.
	Patch #6224.

	* Smake: Add trunc to module list.

	* configure.ac: Don't need to check for trunc function any longer.

2007-10-12  Ben Pfaff  <blp@gnu.org>

	Use fseeko module from gnulib instead of our home-grown solution.
	Patch #6228.

	* acinclude.m4: Delete PSPP_OFF_T macro.

	* configure.ac: Don't call AC_FUNC_FSEEKO or PSPP_OFF_T.

2007-10-12  Ben Pfaff  <blp@gnu.org>

	* Smake: Add fprintf-posix, printf-posix, printf-safe,
	snprintf-posix, sprintf-posix, vasprintf-posxi, vfprintf-posix,
	vprintf-posix, vsnprintf-posix, and vsprintf-posix modules, which
	allow us to use C99 format specifiers (e.g. 'z') in *printf.
	Also, changed many formerly casted arguments in *printf calls to
	use one of these format specifiers and drop the cast.
 
2007-10-11  Ben Pfaff  <blp@gnu.org>

	* Smake: Drop alloca, alloca-opt modules as we don't use them
	anymore.

2007-10-10  Ben Pfaff  <blp@gnu.org>

	* acinclude.m4: Improve formatting.

	* configure.ac: Ditto.  Don't check for headers whose presence is
	never tested.  Don't use AC_C_CONST (we can assume that "const" is
	implemented these days).  Don't pass default sizes to
	AC_CHECK_SIZEOF, since modern Autoconf doesn't need them.  Don't
	define FPREP_IEEE754, since it was not tested for.  Don't use
	AC_FUNC_VPRINTF, since we never tested for it.

2007-10-06 John Darrington <john@darrington.wattle.id.au>

	* configure.ac INSTALL: Change libglade version requirement.
	Thanks to Paul Brown for reporting this issue.

2007-09-30  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Print a message indicating success at the end of
	the run.

	* INSTALL: Improve instructions.

2007-09-22  Ben Pfaff  <blp@gnu.org>

	Bug #21128.  Reviewed by John Darrington.

	* acinclude.m4 (PSPP_LC_PAPER): New macro.

	* configure.ac: Use PSPP_LC_PAPER.

2007-08-05  Ben Pfaff  <blp@gnu.org>

	Bug #16189.  Reviewed by Jason Stover.
	* acinclude.m4: If -lplot doesn't work by itself, also test with
	typical X11 libraries.

2007-07-27  Ben Pfaff  <blp@gnu.org>

	Bug #19069.
	* INSTALL: Improve installation instructions.
	* README: Move prerequisites to INSTALL.
	Reviewed by Jason Stover.

	* configure.ac: Make PKG_CHECK_MODULES tests more user-friendly,
	by having them give their errors at the end of the configuration
	process instead of stopping it in the middle.  Patch #6116.
	Reviewed by Jason Stover.

2007-06-14  Ben Pfaff  <blp@gnu.org>

	* Smake: Use xmalloca instead of xallocsa due to module renaming.
	Update all uses.

2007-06-06  Ben Pfaff  <blp@gnu.org>

	* Smake: Add xallocsa to modules.

2007-04-22  Ben Pfaff  <blp@gnu.org>

	Implement model checker for testing purposes.
	
	Patch #5873.
	
	* Smake (GNULIB_MODULES): Add crypto/md4, fwriteerror,
	gettimeofday.

2007-04-03  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Increment version to 0.4.3 due to snapshot posted
	to alpha.gnu.org.
	Suggested by John Darrington.

2007-04-03  Ben Pfaff  <blp@gnu.org>

	Use Gnulib's fpieee module instead of specifying -mieee by hand.

	* Smake: Use fpieee module from Gnulib.

	* configure.ac: Don't enable -mieee.

2007-03-19  Ben Pfaff  <blp@gnu.org>

	Work toward modernizing the build system by updating our Automake
	and Autoconf dependencies and requiring libintl to be available
	externally (if desired) instead of including a copy in the
	distribution.

	* Makefile.am (AUTOMAKE_OPTIONS): Require Automake 1.10 (or
	later), which works better with systems that have a non-empty
	$(EXEEXT).
	(SUBDIRS): Drop intl.
	(DISTCLEANFILES): Drop intl/plural.c.

	* Throughout Makefile.am and the automake.mk files: Change
	mkinstalldirs to $(MKDIR_P), to support the corresponding Automake
	change.

	* Smake (GNULIB_MODULES): Use gettext-h instead of gettext module.
	(all): Don't create intl directory.
	(gettextize): Don't use --intl flag.

	* configure.ac: Require Autoconf 2.60 or later.  Use external
	gettext.  Drop intl/Makefile from config files.

2007-02-25  Ben Pfaff  <blp@gnu.org>

	Thanks to Jason Stover for verifying that this patch helps under
	NetBSD.

	* acinclude.m4: Rename PSPP_ENABLE_WARNING to PSPP_ENABLE_OPTION,
	because it's useful for more than warnings.

	* configure.ac: Add PSPP_ENABLE_OPTION(-mieee) to improve IEEE
	floating-point conformance on Alpha and SH architectures.  Also,
	check for fpsetmask function (available on BSDs).

Mon Feb 19 10:52:21 2007  Ben Pfaff  <blp@gnu.org>

	* Smake (GNULIB_MODULES): Add dirname module, remove canonicalize
	module.  Corresponds to changes in src/data/file-name.c.

Sat Feb 17 09:22:32 2007  Ben Pfaff  <blp@gnu.org>

	* Smake (GNULIB_MODULES): Add tmpfile module, which fixes the use
	of the tmpfile function under Windows.

Fri Feb 16 10:50:38 2007  Ben Pfaff  <blp@gnu.org>

	Better support cross-compiling by using CC_FOR_BUILD and
	EXEEXT_FOR_BUILD for q2c.
	
	* Makefile.am: Add CC_FOR_BUILD, EXEEXT_FOR_BUILD variables.  Use
	in .q.c rule.

	* acinclude.m4: Add PSPP_CC_FOR_BUILD macro.

	* configure.ac: Call PSPP_CC_FOR_BUILD.

Mon Feb 12 16:39:18 2007  Ben Pfaff  <blp@gnu.org>

	* README: Note that iconv is required.

	* configure.ac: Enforce iconv requirement.

Thu Feb  8 14:56:18 2007  Ben Pfaff  <blp@gnu.org>

	Reduce platform dependence.

	* Makefile.am: Don't add -Dunix or -D__MSDOS__ to compiler command
	line.  Add $(top_builddir)/intl to include path to fix building
	with the included libintl.

	* Smake (GNULIB_MODULES): Add `canonicalize', `sys_stat',
	`mkstemp' modules.  Remove `stat-macros' module, which is no
	longer what we want, because what we want is provided by sys_stat
	now, and remove its inclusions.  Remove `strstr' module, which is
	no longer in gnulib.  Remove `readlink', `xreadlink', because we
	no longer use either function.

	* configure.ac: Move gl_EARLY before AC_PROG_CC, where the gnulib
	manual says it should be.  Check for presence of execl, fork,
	and popen.  Drop check for unix versus msdos as host OS.

Sat Nov  4 15:59:31 2006  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Check for the "round" function added in C99.

Tue Oct 31 19:55:52 2006  Ben Pfaff  <blp@gnu.org>

	* Smake (GNULIB_MODULES): Add `mempcpy' module.

Tue Oct 31 19:29:05 2006  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Drop tests for strchr, strrchr because now we
	assume a C89 compliant library.  (Gnulib makes this assumption so
	we might as well too.)

Sun Oct 29 14:08:53 2006  Ben Pfaff  <blp@gnu.org>

	* Smake (GNULIB_MODULES): Remove `restrict' from modules, because
	recent gnulib doesn't have such a module.

Mon Jul 17 18:23:38 2006  Ben Pfaff  <blp@gnu.org>

	* Smake: Add --doc-base=gl/doc to gnulib-tool invocation, which is
	required by recent gnulib.

Sun Jul 16 19:51:45 2006  Ben Pfaff  <blp@gnu.org>

	* Smake: Add xsize to GNULIB_MODULES.

Wed Jul 12 13:41:18 2006  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Add check_PROGRAMS and define to empty.

Sat Jul  1 15:32:31 2006  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Add noinst_PROGRAMS and define to empty.

Tue May  9 20:46:06 2006  Ben Pfaff  <blp@gnu.org>

	* Smake: Add stdarg to GNULIB_MODULES.

Sun May  7 09:27:40 WST 2006 John Darrington <john@darrington.wattle.id.au>

	* po/en_GB.po : Removed.  Now that messages talking about coloUrs have 
	been removed, it does nothing.

Tue May  2 10:43:30 WST 2006 John Darrington <john@darrington.wattle.id.au>

	* Bumped the minor version number from 0.4.1 to 0.4.2 to reflect 
        changes to system file format.

Mon Apr 24 14:12:25 2006  Ben Pfaff  <blp@gnu.org>

	* Smake: Add exit to GNULIB_MODULES.

Sun Apr 23 20:34:50 2006  Ben Pfaff  <blp@gnu.org>

	* Smake: Add linebreak to GNULIB_MODULES.

Sat Apr 15 21:45:40 2006  Ben Pfaff  <blp@gnu.org>

	Get rid of src/libpspp/debug-print.h and all its uses.  (There
	were few real users, but many inclusions of its header file.)

Sat Apr 15 19:51:22 2006  Ben Pfaff  <blp@gnu.org>

	Get rid of our own int32 type in favor of the standard int32_t
	type.
	
	* configure.ac: Don't need to check the sizes of integer types
	anymore.

Sat Apr 15 19:13:59 2006  Ben Pfaff  <blp@gnu.org>

	* configure.ac, acinclude.m4: Complain about missing prerequisites
	in a group at the end of configuration, not piecemeal.  This
	should make building PSPP less frustrating.  Thanks to John
	Darrington for the suggestion.

Sat Apr 15 18:17:15 2006  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Move code into acinclude.m4 to make the configure
	script more readable.

	* acinclude.m4: New functions from configure.ac.

Mon Apr  3 11:01:00 2006  Ben Pfaff  <blp@gnu.org>

	* Smake: (GNULIB_MODULES) Add strsep.

Thu Mar 30 15:50:05 2006  Ben Pfaff  <blp@gnu.org>

	* Smake: Enable -Wdeclaration-after-statement warning if
	available.

	* acinclude.m4: Add macro for checking whether a warning is
	supported.

Mon Mar 20 16:32:11 2006  Ben Pfaff  <blp@gnu.org>

	* Smake: Require "unistd" gnulib module.  Removed tests for
	HAVE_UNISTD_H from source code.

Sat Mar  4 13:20:56 2006  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Get rid of pref.h.orig.

	* pref.h.orig: Removed.  Moved SHORT_NAME_LEN, LONG_NAME_LEN to
	src/data/variable.h.  Removed GLOBAL_DEBUGGING entirely, changing
	all references to DEBUGGING.  Moved P_tmpdir to
	src/data/make-file.c.  Moved NO_CHARTS to
	src/output/charts/automake.mk.

Sat Mar  4 12:58:34 2006  Ben Pfaff  <blp@gnu.org>

	* pref.h.orig: Move GCC attribute declarations to
	new file src/libpspp/compiler.h.

Sat Mar  4 12:27:06 2006  Ben Pfaff  <blp@gnu.org>

	* Smake: Require "intprops" gnulib module.

	* acinclude.m4: Remove BLP_INT_DIGITS.  Now we use the intprops.h
	header file instead.

	* configure.ac: Don't call BLP_INT_DIGITS.

Sat Mar  4 11:53:36 2006  Ben Pfaff  <blp@gnu.org>

	* acinclude.m4: Remove BLP_RANDOM.  Its results were unused.
	Remove BLP_IS_SPRINTF_GOOD.  We now assume that the system's
	sprintf() returns the correct value.

	* configure.ac: Don't call those macros.

John Darrington:

	* Deleted Make.build (inserted its contents into Makefile.am).
	
	* Moved the version number to 0.4.1

	* Moved lib/linreg/linreg.[ch] and lib/linreg/coefficient.[ch] to
	  src/math/linreg.

	* Moved the psppire gui into src/ui/gui and the gtk_sheet widget 
          into lib/gtksheet.

	* Replaced recursive automake system with non-recursive one.

	* Moved files into subdirectories. See src/ChangeLog for details.

Sat Feb 11 21:57:31 2006  Ben Pfaff  <blp@gnu.org>

	* Smake: (GNULIB_MODULES) Add memcasecmp.

	* configure.ac: Remove existing checks for readline, replacing
	them by a call to PSPP_READLINE.

	* acinclude.m4: Add PSPP_READLINE macro based on gnulib test for
	readline.  However, we only accept a readline installation if (1)
	the header files are in the normal readline/ directory and (2) the
	history library is also available.  If both criteria are met, we
	declare HAVE_READLINE.  This reduces the #ifdefs to actually use
	readline to something manageable.

	* pref.h.orig: Move DIR_SEPARATOR, PATH_DELIMITER definitions to
	src/filename.h.

Wed Jan 25 21:48:20 2006  Ben Pfaff  <blp@gnu.org>

	* Smake: (po/POTFILE.in) Exclude dotfiles.

Sat Nov 27 20:29:19 2005 Jason Stover <jason@sakla.net>

	* Binary encoding for categorical variables.
	* Routines for design matrices.
	
Thu Oct 20 18:19:58 2005  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Improve error messages.  Thanks to Jaap-Andre de
	Hoop <j.dehoop@data-assist.nl>.

Wed Oct 12 20:33:07 2005 Jason Stover <jstover@sdf.lonestar.org>

	* regression.q: Initial version of the REGRESSION procedure.
	
Sun Sep 25 16:11:09 2005  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Handles `examples' as a subdirectory instead of a
	dist-hook.  The dist-hook copied examples/CVS into the
	distribution.  Thanks to James R. Van Zandt <jrvz@comcast.net> for
	reporting the problem.

Mon Sep 19 10:24:10 2005  Ben Pfaff  <blp@gnu.org>

	* Smake: Add `check' target for convenience.  Add
	--tests-base=tests to gnulib-tool invocation to compensate for
	bug.

Sat Sep 17 15:57:32 2005 Jason Stover <jason@sakla.net>

	Added lib/linreg for procedures that use ordinary least squares.
	
Sat Sep 17 11:01:44 2005  Ben Pfaff  <blp@gnu.org>

	Adapt to newer versions of gnulib.

	* Smake: Put gnulib options directly on its command line, instead
	of embedding them in configure.ac.

	* configure.ac: Remove gnulib option commands.

Fri Aug  3 07:22:28 2005  Ben Pfaff  <blp@gnu.org>

	* PSPP 0.4.0 released.

Sun Jul 31 10:49:47 2005  Ben Pfaff  <blp@gnu.org>

	Adopt use of gnulib for portability.

	* Makefile.am: Add gl to SUBDIRS.  Add gl/m4 to aclocal include
	path.  Get rid of pkgdocdir data.  Move noinst_DATA to EXTRA_DIST.

	* README.CVS: Add instructions for fetching gnulib.

	* Smake: Rewrite to run gnulib-tool.  Avoid use of gettextize in
	normal case (it was unmaintainable).  Just use autoreconf
	--install to do most of the work.  Rewrite rule for POTFILES.in
	for non-GNU make compatibility.

	* configure.ac: Add gnulib commands.  Specify gettext version
	0.14.5 to placate autopoint.  Check that off_t is an integer type,
	because Solaris can sometimes declare it as a struct.  Drop
	explicit checks for gnulib-supported functionality.  Fix typo in
	msdos check.

	* pref.h.orig: Define __attribute__ to avoid wart in gnulib.
	Don't #include <libintl> and define gettext, _, N_, because gnulib
	wants to do the same thing.

Sun Jul 24 20:31:13 2005  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Don't detect libgmp anymore, because we eliminated
	the dependency.

	* NEWS: Update.

Mon Jul  4 17:59:54 2005  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Add pspp-mode.el to EXTRA_DIST.

Wed May  4 08:49:13 WST 2005 John Darrington <john@darrington.wattle.id.au>

	* README.CVS Smake: Added a CONFIGUREFLAGS variable.
	* INSTALL: Mentioned build dependencies.

Mon May  2 22:37:39 2005  Ben Pfaff  <blp@gnu.org>

	* INSTALL: Mention dependencies.  Thanks to Jaap-Andre de Hoop
	<j.dehoop@data-assist.nl> for the suggestion.

	* NEWS, README: Update.

Sun May  1 15:00:09 WST 2005 John Darrington <john@darrington.wattle.id.au>

	* pspp-mode.el: Now supports syntax highlighting, indentation and
	generally works a lot better.

Thu Apr 28 10:24:47 WST 2005 John Darrington <john@darrington.wattle.id.au> 

	* Changed all copyright notices to contain the FSF's new address.

Thu Apr 14 2005 John Darrington

	* AUTHORS:  Added note about the long variable names extension.

	* pref.h.orig: Added definitions for variable names lengths.

Thu Mar  3 22:06:19 WST 2005 John Darrington <john@darrington.wattle.id.au> 

	* configure.ac: Added AC_PROG_RANLIB --- needed by autoconf 1.9

Mon Feb 28 23:16:58 2005  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Check for perl.  Check for bool.  Substitute
	makefiles in src/expressions.  Don't substitute makefile in
	deleted directory lib/julcal.

	* pref.h.orig: (macro MALLOC_LIKE) New macro.
	(macro flt64) Moved to src/sfmP.h.
	(macro FLT64_MAX) Moved to src/sfmP.h.

Mon Feb 21 15:04:55 WST 2005 John Darrington <john@darrington.wattle.id.au> 

	* configure.ac: Added a --without-valgrind option to cope with
	building on machines with a broken valgrind installation

Fri Jan  7 08:01:02 WST 2005 John Darrington <john@darrington.wattle.id.au> 

	* configure.ac pref.h.orig: Compilation with libplot is now optional
	by sacrificing the chart features.

Sun Nov 28 19:24:02 2004  Ben Pfaff  <blp@gnu.org>

	* Smake: Change -a to -pR in cp invocations for SUSv3 compliance.

Mon May 31 17:21:25 2004  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Check for large file support.  Get rid of
	posix_fadvise check--for some reason glibc 2.3.2 segfaults when I
	call it and I just couldn't figure out what was going on.

Sun May 30 18:19:03 2004  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Check for valgrind/valgrind.h.

Mon Mar 29 15:22:48 2004  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* configure.ac: Check for posix_fadvise.

Tue Mar 23 14:21:12 WAST 2004 John Darrington <john@darrington.wattle.id.au>

	* Removed dcdflib and replaced with a dependency upon the
	 GNU Scientific library instead.

Sat Mar 20 13:55:36 2004  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

Wed Feb 11 23:54:15 2004  Ben Pfaff  <blp@gnu.org>

	* pref.h.orig: Don't meddle with __WIN32__, __MSDOS, __DJGPP__,
	__CYGWIN32__, __unix__, or unix anymore, and deal with some of the
	consequences.  Declare ATTRIBUTE instead of meddling withe
	__attribute__.  Declare UNUSED instead of unused.  Add macros
	NO_RETURN, PRINTF_FORMAT, SCANF_FORMAT.  Reformat gettext, N_, _
	macros.  Move alloca()-related stuff to src/alloc.h and simplify.
	Get rid of PAGED_STACK entirely.  Remove mkdir macro definition.
	Get rid of obsolete "procedure-specific options".

2004-01-23  gettextize  <bug-gnu-gettext@gnu.org>

	* Makefile.am (SUBDIRS): Remove intl.
	* configure.ac (AC_CONFIG_FILES): Remove intl/Makefile.

Tue Dec 30 22:23:40 WST 2003 John Darrington <john@darrington.wattle.id.au> 
	
	* Fixed floating point rounding bug in percentiles calculation

Sat Dec 27 16:16:49 2003  Ben Pfaff  <blp@gnu.org>

	* configure.ac: Add -Wmissing-prototypes flag to gcc.

	* TODO: Updated.

Wed Dec 17 12:19:40 WAST 2003 John Darrington <john@darrington.wattle.id.au>

	* Added an --enable-debug flag to configure

2003-12-13  gettextize  <bug-gnu-gettext@gnu.org>

	* Makefile.am (EXTRA_DIST): Add mkinstalldirs.
	* configure.ac (AC_CONFIG_FILES): Add intl/Makefile.


Thu Dec 11 19:35:32 WST 2003 John Darrington <john@darrington.wattle.id.au>

	* Removed autogenerated files from the CVS archive

        * removed the included getopt.c as it failed to build under some
        systems.

Thu Dec 11 00:12:19 2003  Ben Pfaff  <blp@gnu.org>

	* Update build system to Autoconf 2.58, Automake 1.7, gettext
	0.12.1.

2003-12-08  gettextize  <bug-gnu-gettext@gnu.org>

	* Makefile.am (SUBDIRS): Add m4.
	(ACLOCAL_AMFLAGS): New variable.
	(EXTRA_DIST): Add config.rpath.
	* configure.in (AC_CONFIG_FILES): Add po/Makefile.in,

Sun Jan  2 21:24:32 2000  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Require Automake 1.4 or later.  It's been out for
	almost a year now, so why haven't you installed it? :-)

	* TODO: Updated.

	* configure.in: Updated version number.  Check for libgmp.  Check
	of fenv.h.  Check for feholdexpect().

	* pref.h.orig: Don't include debug-print.h by default.  Don't
	disable __attribute ((unused))__ for gcc 2.7.2.  Remove LOAD_2,
	STORE_2.  Comment fixes.

	* Updated copyright notices in all files.

Fri Mar 12 12:38:55 1999  Ben Pfaff  <blp@gnu.org>

	* Forked 0.3.0.

Tue Mar  9 12:46:31 1999  Ben Pfaff  <blp@gnu.org>

	* Released 0.2.3.
	
	* TODO: Updated.

Tue Jan  5 15:18:07 1999  Ben Pfaff  <blp@gnu.org>

	* Released 0.2.2.

	* TODO: Update from Zvi Grauer <z.grauer@sims.csuohio.edu>.

Thu Nov 19 12:34:55 1998  Ben Pfaff  <blp@gnu.org>

	* Released 0.2.1.

Sun Aug  9 11:11:32 1998  Ben Pfaff  <blp@gnu.org>

	* LANGUAGE: Updated.

Sat Aug  8 00:19:08 1998  Ben Pfaff  <blp@gnu.org>

	* LANGUAGE: Updated.

	* examples/: New directory.

	* Made patchlevel 95.

Tue Aug  4 23:47:31 1998  Ben Pfaff  <blp@gnu.org>

	* Bump version to 0.1.22 (0.2.0 release candidate).

	* configure.in: Remove --enable-Werror, new option
	--enable-debugging.  New gcc option -Wpointer-arith.

	* pref.h.orig: Don't enable debugging by default (now a configure
	option).  Use __inline__ instead of inline with gcc (partial -ansi
	-pedantic support).
	(macro local_strdup) Removed.

	* Made patchlevel 94.
	
Wed Jul 29 22:03:11 1998  Ben Pfaff  <blp@gnu.org>

	* Bump version to 0.1.21 (0.2.0 release candidate).

	* debian/: Removed.

	* Makefile.am: Don't copy debian/ into distribution.
	
	* pref.h.orig: Only enable `unused' attribute if gcc 2.8.0 or
	later is used.

Sun Jul  5 14:20:04 1998  Ben Pfaff  <blp@gnu.org>

	* configure.in: Bump version to 0.1.20 (0.2.0 release candidate).

	* Made patchlevel 93.

Sun Jul  5 00:13:58 1998  Ben Pfaff  <blp@gnu.org>

	* README: Updated.

	* TODO: Updated.

	* configure.in: Remove -Wno-unused from default gcc flags.

	* pref.h.orig: Add new #define, `unused', which under gcc expands
	to an explanation to the compiler that a function argument is
	unused, and expands to the null string under other compilers.

Mon Jun  1 14:33:02 1998  Ben Pfaff  <blp@gnu.org>

	* LANGUAGE: Updated.

	* configure.in: Bump version to 0.1.19.

	* Made patchlevel 92.

Sun May 31 00:55:13 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.
		
	* configure.in: Generate Makefiles for lib/gmp/{,mpn,mpf}/.

	* Made patchlevel 91.

Fri May 29 21:43:09 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* LANGUAGE: Updated.

	* unconfigure: Remove TeX cruft from doc/.
	
	* Made patchlevel 90.

Mon May 25 12:41:54 1998  Ben Pfaff  <blp@gnu.org>

	* BUGS: Updated.

	* LANGUAGE: Updated.

	* TODO: Updated.

	* configure.in: Bumped version number up to 0.1.18.

	* Made patchlevel 89.

Sun May 24 22:39:55 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* Made patchlevel 88.

Sat May 23 23:21:43 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* configure.in: Remove gamma from replaceable functions.

	* Made patchlevel 87.

Fri May 22 00:02:33 1998  Ben Pfaff  <blp@gnu.org>

	* configure.in: Add gamma to list of functions with replacements.

	* Made patchlevel 86.	

Wed May 20 00:00:12 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* Made patchlevel 85.

Sat May 16 19:38:49 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* Made patchlevel 84.

Tue May 12 16:13:48 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* unconfigure: Don't delete Makefile.in under intl/.
	
	* Made patchlevel 83.

Thu May  7 23:16:26 1998  Ben Pfaff  <blp@gnu.org>

	* unconfigure: Add some more files to reap.

	* Made patchlevel 82.

Tue May  5 13:17:59 1998  Ben Pfaff  <blp@gnu.org>

	* acconfig.h: Add HAVE_GOOD_RANDOM definition.

	* acinclude.m4: New macro BLP_RANDOM.

	* configure.in: Use new BLP_RANDOM macro.

	* unconfigure: New file.
	
	* Made patchlevel 81.
	
Fri Apr 24 12:42:14 1998  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Remove bad comment.

	* AUTHORS: Removed Brad Appleton.
	
	* TODO: Updated.

	* configure.in: Remove `satisfy automake' bit.  Don't generate
	avllib Makefile, since we don't use avllib anymore.

	* pref.h.orig: Define PSPP.

	* Made patchlevel 80.

Wed Apr 15 12:59:39 1998  Ben Pfaff  <blp@gnu.org>

	* AUTHORS, BUGS, LANGUAGE, README, THANKS: No longer generated
	from HTML.  This caused a lot of deletions from the Makefile.am.

	* TODO: Updated.
	
	* Made patchlevel 79.
	
Tue Apr 14 00:48:00 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* configure.in: Check for unistd.h.  Fix AC_LN_S (should have been
	AC_PROG_LN_S).

	* Made patchlevel 78.  Must have missed 77 in there somewhere :-)
	
Mon Mar  9 15:40:40 1998  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 76.

	* configure.in: Bumped version up to 0.1.16.

1998-03-05  Ben Pfaff  <blp@gnu.org>

	* configure.in: Bumped version up to 0.1.15.

1998-02-23  Ben Pfaff  <blp@gnu.org>

	* acinclude.m4: Add BLP_INT_DIGITS and BLP_IS_SPRINTF_GOOD macros.

	* configure.in: Those macros came from here.  Better modularity
	this way.  Bump version up to 0.1.14.

	* pref.h.orig: (macros CONFIG_PATH, INCLUDE_PATH, GROFF_FONT_PATH)
	Removed.
	
	* Made patchlevel 75.

1998-02-23  Ben Pfaff  <blp@gnu.org>

	* acconfig.h: Hard-code PACKAGE and GNU_PACKAGE as "PSPP" and "GNU
	PSPP" respectively.

	* configure.in: Call the package pspp instead of PSPP.  Don't
	define PACKAGE and GNU_PACKAGE symbols.  Add replacement function
	for strtok_r.

	* TODO: Updated.
	
	* Made patchlevel 74.

1998-02-16  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Remove a few now-useless targets.

	* TODO: Updated.

	* configure.in: Bump version up to 0.1.13.

	* reconfigure: Don't assume . is in PATH.

	* Made patchlevel 73.

Fri Feb 13 15:35:03 1998  Ben Pfaff  <blp@gnu.org>

	* configure.in: Bump version up to 0.1.12.

	* TODO: Updated.

	* pref.h.orig: Make __unix equivalent to unix and __unix__; don't
 	require any of these to be defined to 1, just defined.  Invert
	sense of some tests from testing for unix to testing for not being
	msdog.

	* Made patchlevel 72.

Thu Feb  5 00:22:58 1998  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 71.

	* configure.in: Bump version up to 0.1.11.

Tue Feb  3 16:12:34 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* Made patchlevel 70.

	* configure.in: Bump version up to 0.1.10.

Fri Jan 23 00:17:18 1998  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 69.

Thu Jan 22 00:35:52 1998  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 68.

Sun Jan 18 00:30:18 1998  Ben Pfaff  <blp@gnu.org>

	* configure.in: Add ieeefp.h to list of headers to check for.

	* Made patchlevel 67.

Tue Jan 13 23:44:16 1998  Ben Pfaff  <blp@gnu.org>

	* configure.in: Add sys/wait.h to list of headers to check for.

	* Made patchlevel 66.
	
Sun Jan 11 21:30:09 1998  Ben Pfaff  <blp@gnu.org>

	* configure.in: Bump version up to 0.1.9.
	
	* pref.h.orig (STORE_2): Fix parentheses.  From Alexandre
	Oliva <oliva@dcc.unicamp.br>.

	* Made patchlevel 65.
	
Sat Jan 10 23:59:06 1998  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 64.

Sat Jan 10 02:10:15 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* pref.h.orig: Comment fixes.
	(macro second_lowest_flt64) New.

	* Made patchlevel 63.

Thu Jan  8 22:27:03 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.
	
	* Made patchlevel 62.

Mon Jan  5 11:18:37 1998  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 61.

Sun Jan  4 18:10:29 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* pref.h.orig: (local_strdup) [HAVE_ALLOCA && PAGED_STACK &&
	__GNUC__] Rewritten for space and time efficiency and to evaluate
	its argument only once.

	* Made patchlevel 60.

Sat Jan  3 16:51:20 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* Made patchlevel 59.

Fri Jan  2 01:38:37 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* config.sub: Got tired of `i686-unknown-linux: Unknown system',
	so I made 686 equivalent to 586.

	* pref.h.orig: (macros ASCII_*, HTML_*, PS_*) Removed.

	* Made patchlevel 58.

Thu Jan  1 11:50:47 1998  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* Made patchlevel 57.

Fri Dec 26 15:43:17 1997  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* Made patchlevel 56.

Wed Dec 24 22:34:55 1997  Ben Pfaff  <blp@gnu.org>

	* reconfigure: regularized option syntax.

	* configure.in: Bumped version to 0.1.8.  Changed name from pspp
	to PSPP.  Added lib/dcdflib/Makefile to list of output files.

	* Made patchlevel 55.

Sun Dec 21 15:58:52 1997  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* acconfig.h: Reformat.

	* configure.in: Bumped version to 0.1.7.

	* Made patchlevel 54.

Fri Dec  5 23:38:12 1997  Ben Pfaff  <blp@gnu.org>

	* Replaced prep.ai.mit.edu with ftp.gnu.org and .gnu.ai.mit.edu
 	with .gnu.org, everywhere.

Fri Dec  5 23:02:40 1997  Ben Pfaff  <blp@gnu.org>

	* Replaced remaining instances of Fiasco with PSPP.

	* Made patchlevel 53.

Fri Dec  5 22:51:18 1997  Ben Pfaff  <blp@gnu.org>

	* Every instance of the name Fiasco, throughout every file,
 	replaced in-place with PSPP, with the exceptions of a few files
 	that had `fiasco' in their names; these were renamed.

	* Made patchlevel 52.
	
Fri Dec  5 21:50:52 1997  Ben Pfaff  <blp@gnu.org>

	* pref.h.orig: (macros NO_HTML, HTML_DEFAULT_OUTPUT_FILE) New
 	macros.

	* TODO: Updated.

	* Made patchlevel 51.

Tue Dec  2 14:35:12 1997  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* configure.in: Bumped version to 0.1.6.

	* Made patchlevel 50.	

Sat Nov 22 01:20:32 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 49.

Fri Nov 21 00:11:41 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 48.

Sun Nov 16 01:31:38 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 47.

Fri Nov 14 00:17:48 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 46.

	* configure.in: Bumped version to 0.1.5.

Tue Oct 28 16:07:17 1997  Ben Pfaff  <blp@gnu.org>

	* configure.in: Bumped version to 0.1.4.

	* TODO: Updated.

	* Made patchlevel 45.

Wed Oct  8 15:55:50 1997  Ben Pfaff  <blp@gnu.org>

	* intl: Upgraded from sources to gettext-0.10.32.

	* configure.in: Bumped version to 0.1.3.

	* Made patchlevel 44.
	
Tue Oct  7 20:21:53 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: (dist-hook) Use $(top_srcdir).

	* pref.h.orig: (MAX_WORKSPACE) Enlarge to 4 MB (from 1 MB).

	* Made patchlevel 43.
	
Sun Oct  5 15:52:37 1997  Ben Pfaff  <blp@gnu.org>

	* configure.in: Bumped version to 0.1.2.
	(strerror) Replace instead of check.  From Alexandre Oliva
 	<oliva@dcc.unicamp.br>.

	* pref.h.orig: Include `debug-print' instead of
 	`src/debug-print.h'.

	* Made patchlevel 42.

Sat Oct  4 16:19:44 1997  Ben Pfaff  <blp@gnu.org>

	* pref.h.orig: Comment fixes.
	(local_strdup) [HAVE_ALLOCA && PAGED_STACK &&
	__GNUC__] Use local_alloc() instead of alloca(), as local_alloc()
	isn't simply an alias for alloca().

	* configure.in: Bumped version to 0.1.1.

	* Made patchlevel 41.

Sat Oct  4 02:13:00 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 40.

Sun Sep 21 00:07:09 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 39.

Thu Sep 18 21:42:27 1997  Ben Pfaff  <blp@gnu.org>

	* pref.h.orig: (CONFIG_PATH) [unix] Add /usr/local/etc/fiasco,
 	/usr/etc/fiasco to search path.

	* Made patchlevel 38.
		
Wed Aug 20 14:20:06 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: (noinst_DATA) Removed ANNOUNCE, HELP-WANTED.
	(EXTRA_DIST) Removed ANNOUNCE, FAQ, HELP-WANTED, mk-web-dist.
	(MAINTAINERCLEANFILES) Removed ANNOUNCE, FAQ, HELP-WANTED.

	* Made patchlevel 37.

Wed Aug 20 12:48:25 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: (doc/ANNOUNCE.html, ANNOUNCE, FAQ, doc/FAQ.html,
	HELP-WANTED) Removed.
	(docfiles) Removed ANNOUNCE, FAQ, HELP-WANTED.

	* mk-web-dist: Removed.

	* Made patchlevel 36.

Mon Aug 18 18:06:12 1997  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* pref.h.orig: (macro DEFAULT_COMPAT) Removed.

	* Made patchlevel 35.

Sun Aug 17 22:48:36 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 34.

Sat Aug 16 10:48:29 1997  Ben Pfaff  <blp@gnu.org>

	* In many files, in this directory and others, messages were
 	rephrased to eliminate or reduce usage of certain deprecated terms
 	at suggestion of rms.
	
	* Makefile.am: (EXTRA_DIST) Removed unix2dos.pl.
	(MAINTAINERCLEANFILES) Removed doc/ANNOUNCE.html, doc/README.html.
	(docfiles-recursive) Removed.

	* TODO: Updated.

	* mk-web-dist: Doesn't produce any distributions at all, just a
 	webpage.  Doesn't configure the distribution.  Changed list of
 	files installed.

	* pref.h.orig: s/VER_PCP40/VER_PC/; s/VER_WIN61/VER_WND/;
	s/VER_X40/VER_X/; All references changed.

	* Made patchlevel 33.

Thu Aug 14 22:02:08 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Comment fixes.  Uses $(VERSION) instead of contents
 	of VERSION file.
	(EXTRA_DIST) Remove fiasco.ide, mk-bc5-dist.
	(docfiles-recursive) Works if doc/Makefile doesn't exist.
	(DIST_BC5_ROOT) Renamed DISTBC5_DISTROOT.
	(DISTBC5_BC5ROOT) New var.
	(dist-bc5) Passes $(DISTBC5_BC5ROOT).

	* TODO: Update.

	* acinclude.m4: Remove blp_VERSION_CHEAT kluge.

	* configure.in: Don't use blp_VERSION_CHEAT kluge.

	* mk-web-dist, reconfigure: Extract version number from
 	configure.in.

	* pref.h.orig: (CONFIG_PATH, INCLUDE_PATH, GROFF_FONT_PATH)
	[__MSDOS__] Fixed bad use of backslashes.

	* reconfigure: Pass $VERSION to Makefile.

	* Made patchlevel 32.

Thu Aug 14 11:49:35 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: (EXTRA_DIST, docfiles) Add ONEWS.
	(docfiles) Depends on docfiles-recursive.
	(docfiles-recursive) New target, call make for `docfiles' target
	in doc directory.
	(dist-bc5) Adds `foo' second arg to mk-bc5-dist.
	(.PHONY) Add docfiles.

	* mk-bc5-dist: Checks that it is passed a second arg of `foo'.

	* reconfigure: Changed == operators to = as arguments to `test'.
	No longer uses bash -v switch.

	* mk-distribution: Renamed mk-web-dist, all references changed.
  	Now takes several options, added help.  No longer uses -uv
 	options.

	* Made patchlevel 31.

Tue Aug  5 13:56:39 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: (MAINTAINERCLEANFILES) Add HELP-WANTED.
	(EXTRA_DIST) Add ONEWS.

	* Made patchlevel 30.

Sun Aug  3 11:30:17 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: (noinst_data, docfiles) Added HELP-WANTED.
	(EXTRA_DIST) Added configure, mk-bc5-dist, unix2dos.pl,
 	HELP-WANTED.
	(HELP-WANTED) Generated from doc/HELP-WANTED.html.
	(dist-bc5) New target.

	* TODO: Updated.

	* mk-distribution: Fixed bugs, added HELP-WANTED.

	* reconfigure: When invoking Makefile.am, pass
	top_srcdir=. explicitly.

	* unix2dos.pl: New file.

	* Made patchlevel 29.

Thu Jul 17 21:49:13 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 28.

Thu Jul 17 01:43:25 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Remove inactive .html suffix rule.
	New rules to generate doc/ANNOUNCE.html and doc/README.html from
	corresponding .in files.
	(EXTRA_DIST) Add VERSION, fiasco.ide, mk-distribution.
	(MAINTAINERCLEANFILES) Add doc/ANNOUNCE.html, doc/README.html.

	* acinclude.m4: (blp_VERSION_CHEAT) New macro.

	* configure.in: Forces _GNU_SOURCES not only to be defined, but to
	a value of 1.  Substitutes VERSION from the new file VERSION.
	Removed DEBIAN reference.  Checks for sys/mman.h header.

	* pref.h.orig: (macro gettext) Don't put parentheses in the
 	expansion.
	(macro N_) Same.

	* reconfigure: Sets -ev in shell.  Doesn't try to pass
	--include-deps to configure (it's an automake flag!).  Moved `make
	docfiles'.

	* sysdeps/borlandc4.0/README, sysdeps/borlandc4.0/_read.c,
 	sysdeps/borlandc4.0/_write.c, sysdeps/borlandc4.0: Removed.

	* VERSION: New file.

	* fiasco.ide: New file.

	* mk-distribution: New file.

	* Made patchlevel 27.
	
Fri Jul 11 23:00:53 1997  Ben Pfaff  <blp@gnu.org>

	* TODO: Updates.

	* Made patchlevel 26.

Fri Jul 11 14:08:21 1997  Ben Pfaff  <blp@gnu.org>

	* pref.h.orig: __CYGWIN32__ is a form of __unix__.

	* reconfigure: Add -k for make maintainer-clean.

	* Made patchlevel 25.

Thu Jul 10 22:13:07 1997  Ben Pfaff  <blp@gnu.org>

	* configure.in: Add "-D_GNU_SOURCE" to CPPFLAGS to force GNU
	glibc extensions to be detected.

	* Made patchlevel 24.

Sun Jul  6 19:13:07 1997  Ben Pfaff  <blp@gnu.org>

	* pref.h.orig: Include "src/debug-print.h" instead of
 	"debug-print.h".
	(macros local_alloc, local_free) More robust under Checker: put
 	their allocations in namespace different from malloc()/free().

	* Made patchlevel 23.

Sat Jul  5 23:42:14 1997  Ben Pfaff  <blp@gnu.org>

	* TODO: Updates.

	* Made patchlevel 22.

Fri Jul  4 13:20:47 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: (EXTRA_DIST) Removed orphaned-rules.
	(docfiles) Removed ChangeLog, COPYING.
	(html, maintainer-clean-hook, install-data-hook) Removed.

	* reconfigure: Added --help option.  Calls configure again even if
	--no-include-deps.

	* Made patchlevel 21.

Wed Jun 25 22:47:17 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Require Automake 1.2.
	(dist-hook) Don't copy config dir.
	(EXTRA_DIST, MAINTAINERCLEANFILES) Add FAQ.
	(docfiles) Made a variable as well as a target; added ChangeLog,
	COPYING, FAQ, INSTALL, TODO.
	(html, maintainer-clean-hook, install-data-hook, debian,
	debian-clean, debian-clean-full) New targets.

	* orphaned-rules: Removed.

	* configure.in: Bumped up to version 0.1.0.

	* reconfigure: New options --enable-nls, --no-include-deps.
	Comment fixes.

	* Made patchlevel 20.

Sun Jun 22 22:10:27 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 19.

Sun Jun 15 16:44:14 1997  Ben Pfaff  <blp@gnu.org>

	* pref.h.orig: Comment fixes.  Includes debug-print.h.
	(DEMAND_PAGE, ALWAYS_PAGE, NEVER_PAGE) Removed.

	* Made patchlevel 18.

Sun Jun  8 01:25:40 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 17.

Fri Jun  6 22:41:08 1997  Ben Pfaff  <blp@gnu.org>

	* TODO: Updates.

	* pref.h.orig: Reformatted macros.
	[!ENABLE_NLS] Defines gettext() as a trivial substitution to allow
	gcc to give warnings on printf().

	* Made patchlevel 16.
	
Thu Jun  5 23:01:49 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 15.

Tue Jun  3 23:24:08 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: AUTOMAKE_OPTIONS changed from `foreign 1.1l' to
	`gnits 1.1p'.  SUBDIRS reordered.  New target `docfiles'.

	* TODO: Updates.

	* configure.in: Removed AM_MAINTAINER_MODE.  Added
	--enable-Werror, which is implied by --with-checker.

	* reconfigure: Moved `aclocal' from beginning to just before
 	cleaning `autoheader'.  Removed --enable-maintainer-mode.  Added
 	--disable-nls.  Added `make docfiles' to placate autoheader.
	Added `aclocal' before first real `autoheader'.  Uses `make
	mostlyclean' instead of `make depend'.

	* Made patchlevel 14.

Mon Jun  2 14:21:54 1997  Ben Pfaff  <blp@gnu.org>

	* configure.in: Removed comment that screwed things up.

	* reconfigure: Added `aclocal' at beginning.

	* Made patchlevel 13.

Sun Jun  1 23:25:39 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Add intl, po to SUBDIRS.  Add aclocal.m4,
 	config.h.in to MAINTAINERCLEANFILES.

	* acconfig.h: Add HAVE_LC_MESSAGES, ENABLE_NLS, HAVE_CATGETS,
	HAVE_GETTEXT, HAVE_STPCPY.

	* configure.in: Reordered to placate autoheader.  Added
 	AC_ISC_POSIX, AM_PROG_CC_STDC.  Added internationalization:
 	ALL_LINGUAS="", AM_GNU_GETTEXT, AC_LINK_FILES(...).  Added
 	po/Makefile.in, intl/Makefile to generated files list.  Generates
 	po/Makefile from po/Makefile.in.  Comment fix.

	* pref.h.orig: Uncommented i18n support.

	* acinclude.m4: New file.

	* ABOUT-NLS: New file.

	* intl/: New directory, taken from gettext-0.10.27.

	* missing: New file, taken from automake-1.1p.

	* po/: New directory.

	* Made patchlevel 12.

Sun Jun  1 17:28:27 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 11.

Sun Jun  1 11:58:43 1997  Ben Pfaff  <blp@gnu.org>

	* pref.h.orig: Removed DEFAULT_VER_PCP40, DEFAULT_VER_WIN61,
 	DEFAULT_VER_X40.  Added a macro DEFAULT_COMPAT that takes one of
 	the VER_* enums as a value.
	(HISTORY_FILE) Changed the definition to "~/.fiasco_history".

	* Made patchlevel 10.

Fri May 30 19:40:22 1997  Ben Pfaff  <blp@gnu.org>

	* pref.h.orig: [__MSDOS__] Reordered INCLUDE_PATH.

	* Made patchlevel 9.

Sun May 25 22:32:57 1997  Ben Pfaff  <blp@gnu.org>

	* acconfig.h: For support of glibc 2, define _GNU_SOURCE.

	* Made patchlevel 8.

Mon May  5 21:58:22 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 7. 

Fri May  2 22:27:36 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 6.

Thu May  1 15:34:01 1997  Ben Pfaff  <blp@gnu.org>

	* All files: Changed copyright from `Ben Pfaff' to `Free Software
 	Foundation, Inc'.

	* Made patchlevel 5.

Thu May  1 15:00:51 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 4.

Sat Apr 26 11:34:05 1997  Ben Pfaff  <blp@gnu.org>

	* ChangeLog: Split into one ChangeLog per directory.

	* Made patchlevel 3.

Wed Apr 23 21:33:48 1997  Ben Pfaff  <blp@gnu.org>

	* TODO: Update.

	* Made patchlevel 2.

Fri Apr 18 16:48:41 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Removed `include', `util' from SUBDIRS; added
 	`config'.  Includes `config' directory in distributions.  Added
	`private-install', `private-uninstall' targets.

	* configure.in: AC_INIT tests for src/q2c.c now.  Removed
	redundant AC_PROG_MAKE_SET call.  Removed include/Makefile,
	util/Makefile from generated files list; added config/Makefile.

	* include/approx.h, include/arena.h, include/common.h,
 	include/dfm.h, include/do-ifP.h, include/error.h, include/expr.h,
 	include/exprP.h, include/file-handle.h, include/filename.h,
 	include/font.h, include/getline.h, include/getopt.h,
 	include/hash.h, include/heap.h, include/log.h, include/misc.h,
 	include/output.h, include/settings.h, include/sfm.h,
 	include/sfmP.h, include/som.h, include/somP.h, include/stat.h,
 	include/stats.h, include/str.h, include/tokens.h, include/var.h,
 	include/version.h, include/vfmP.h: Moved into src/ directory.

	* include/Makefile.am, include/: Removed.

	* util/Makefile.am: Removed.

	* util/q2c.c: Moved to src/.

	* util/reconfigure: Moved to source root.

	* util/: Removed.

	* Made patchlevel 1.

Fri Apr 18 15:42:22 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Maintainer-cleans generated documentation and
 	Makefile.in.

	* include/Makefile.am, util/Makefile.am: Maintainer-cleans
 	Makefile.in.

	* include/somP.h: (static struct var som) Removed passed_t member.

	* TODO: Updated.

	* configure.in: Fixed source directory for copying pref.h; always
	updates pref.h or at least touch'es it.

	* pref.h.orig: Made a rather pejorative comment a lot milder so it
	wouldn't be misinterpreted.

	* Made interim release x3.
	
Thu Mar 27 01:11:29 1997  Ben Pfaff  <blp@gnu.org>

	* All directories now contain new `Makefile.am's, in some cases
	produced from bits and pieces of the single monolithic old one.
	
	* PATCHLEVEL: Removed.

	* acconfig.h: Added GNU_PACKAGE, PACKAGE, PROTOTYPES, VERSION;
	removed inclusion of conf.h.

	* confh.in: Removed.
	* confh.tmp.in: Removed.
 	
	* configure.in: Deepened.  Updated for use with Automake 1.1l.
	Removed PATCHLEVEL hacks.  Fixed lots of functions in
	AC_CHECK_FUNCS, AC_REPLACE_FUNCS, and similar.  Only passes
	`-Werror' to gcc in maintainer mode.  Doesn't output conf.h.
	Touches pref.h even if it wasn't changed.  

	* aclocal.m4: New file.

	* config.h.in: Renamed from configh.in.

	* pref.h.orig: Renamed from prefh.orig.

	* Made interim release x2.
	
Thu Mar 27 01:07:02 1997  Ben Pfaff  <blp@gnu.org>

    Changed the distribution from flat to deep.  New configuration:

	ANNOUNCE	Makefile.in	config.h.in	mkinstalldirs
	AUTHORS		NEWS		config.sub	orphaned-rules
	BUGS		README		configure	pref.h
	COPYING		THANKS		configure.in	pref.h.orig
	ChangeLog	TODO		debian		src
	ChangeLog~	acconfig.h	doc		stamp-h.in
	INSTALL		aclocal.m4	include		sysdeps
	LANGUAGE	config		install-sh	tests
	Makefile.am	config.guess	lib		util

	config:
	devices      environment  papersize    ps-fontmap   ps-prologue

	debian:
	changelog  control    postinst	 rules
	conffiles  copyright  postrm

	doc:
	ANNOUNCE.html  Makefile.in    fiasco.info-2  stamp-vti
	AUTHORS.html   README.html    fiasco.info-3  texinfo.tex
	BUGS.html      THANKS.html    fiasco.info-4  version.texi
	LANGUAGE.html  fiasco.info    fiasco.texi
	Makefile.am    fiasco.info-1  mdate-sh

	include:
	approx.h       file-handle.h  misc.h	     stats.h
	arena.h        filename.h     output.h	     str.h
	common.h       font.h	      settings.h     tokens.h
	dfm.h	       getline.h      sfm.h	     var.h
	do-ifP.h       getopt.h       sfmP.h	     version.h
	error.h        hash.h	      som.h	     vfmP.h
	expr.h	       heap.h	      somP.h
	exprP.h        log.h	      stat.h

	lib:
	Makefile.am  Makefile.in  avllib       julcal	    misc

	lib/avllib:
	AVLLIB.COPYING	Makefile.in	avl.h
	Makefile.am	avl.c

	lib/julcal:
	Makefile.am  Makefile.in  julcal.c     julcal.h

	lib/misc:
	Makefile.am    getopt1.c      memset.c	     strstr.c
	Makefile.in    memchr.c       qsort.c	     strtol.c
	alloca.c       memcmp.c       stpcpy.c	     strtoul.c
	getdelim.c     memcpy.c       strcasecmp.c
	getline.c      memmem.c       strncasecmp.c
	getopt.c       memmove.c      strpbrk.c

	src:
	Makefile.am	error.c		lexer.c		sfm-write.c
	Makefile.in	expr-evl.c	list.c		show.c
	arena.c		expr-opt.c	list.q		som-frnt.c
	ascii.c		expr-prs.c	log.c		som-high.c
	autorecode.c	file-handle.c	loop.c		som-low.c
	cases.c		file-handle.q	main.c		sort.c
	cmdline.c	file-type.c	mis-val.c	split-file.c
	command.c	filename.c	misc.c		stats.c
	common.c	formats.c	modify-vars.c	str.c
	compute.c	freq.c		numeric.c	sysfile-info.c
	count.c		frequencies.c	output.c	temporary.c
	crosstabs.c	frequencies.g	postscript.c	title.c
	crosstabs.q	frequencies.q	print.c		val-labs.c
	data-in.c	get.c		recode.c	var-labs.c
	data-list.c	getline.c	rename-vars.c	vars-atr.c
	data-out.c	glob.c		repeat.c	vars-prs.c
	descript.c	groff-font.c	sample.c	vector.c
	descript.q	hash.c		sel-if.c	version.c
	dfm.c		heap.c		set.c		vfm.c
	display.c	include.c	set.q		weight.c
	do-if.c		inpt-pgm.c	sfm-read.c

	sysdeps:
	BorlndC4.0  DJGPP2.0	Windows

	sysdeps/BorlndC4.0:
	Makefile     _write.c	  conf.h
	_read.c      compile.bat  config.h

	sysdeps/DJGPP2.0:
	Makefile     compile.bat  conf.h       config.h

	sysdeps/Windows:
	con32s.c

	tests:
	Makefile.am	    expression.stat	reread.data
	Makefile.in	    fall92.data		reread.stat
	autorecode.stat     fall92.stat		sample.stat
	begin-data.stat     file-label.stat	show-check-msg
	bignum.data	    file-type.stat	sort.data
	bignum.stat	    filter.stat		sort.stat
	bug.stat	    gengarbage.c	split-file.stat
	compute.stat	    input-program.stat	sysfile-info.stat
	count.stat	    list.data		temporary.stat
	data-formats.stat   list.stat		time-date.stat
	data-list.data	    loop.stat		vector.stat
	data-list.stat	    modify-vars.stat	weighting.data
	descript.stat	    print.stat		weighting.stat
	do-if.stat	    process-if.stat
	do-repeat.stat	    recode.stat

	util:
	Makefile.am  Makefile.in  q2c.c        reconfigure

    Old configuration:

	ANNOUNCE.html	count.c		hash.h		sample.c
	AUTHORS.html	crosstabs.q	heap.c		sel-if.c
	AVLLIB.COPYING	data-in.c	heap.h		set.q
	BUGS.html	data-list.c	include.c	settings.h
	COPYING		data-out.c	inpt-pgm.c	sfm-read.c
	ChangeLog	debian		install-sh	sfm-write.c
	INSTALL		descript.q	julcal.c	sfm.h
	LANGUAGE.html	devices		julcal.h	sfmP.h
	Makefile.am	dfm.c		lexer.c		show.c
	NEWS		dfm.h		list.q		som-frnt.c
	PATCHLEVEL	display.c	log.c		som-high.c
	README.html	do-if.c		log.h		som-low.c
	THANKS.html	do-ifP.h	loop.c		som.h
	TODO		environment	main.c		somP.h
	_read.c		error.c		makeb40.bat	sort.c
	_write.c	error.h		makedj2.bat	split-file.c
	acconfig.h	expr-evl.c	makefile.b40	stamp-h.in
	alloca.c	expr-opt.c	makefile.dj2	stats.c
	approx.h	expr-prs.c	mdate-sh	stats.h
	arena.c		expr.h		memcmp.c	stpcpy.c
	arena.h		exprP.h		mis-val.c	str.c
	ascii.c		fiasco.texi	misc.c		str.h
	autorecode.c	file-handle.h	misc.h		sysfile-info.c
	avl.c		file-handle.q	mkinstalldirs	temporary.c
	avl.h		file-type.c	modify-vars.c	test
	cases.c		filename.c	numeric.c	texinfo.tex
	cmdline.c	filename.h	output.c	title.c
	command.c	font.h		output.h	tokens.h
	common.c	formats.c	papersize	val-labs.c
	common.h	freq.c		postscript.c	var-labs.c
	compute.c	frequencies.g	prefh.orig	var.h
	con32s.c	frequencies.q	print.c		vars-atr.c
	confh.b40	get.c		ps-fontmap	vars-prs.c
	confh.dj2	getline.c	ps-prologue	vector.c
	confh.in	getline.h	q2c.c		version.c
	confh.tmp.in	getopt.c	qsort.c		version.h
	config.guess	getopt.h	recode.c	vfm.c
	config.sub	getopt1.c	reconfigure	vfmP.h
	configh.b40	glob.c		reject		weight.c
	configh.dj2	groff-font.c	rename-vars.c
	configure.in	hash.c		repeat.c

	debian:
	changelog  control    postinst	 rules
	conffiles  copyright  postrm

	test:
	autorecode.stat     fall92.data		recode.stat
	begin-data.stat     fall92.stat		reread.data
	bignum.data	    file-label.stat	reread.stat
	bignum.stat	    file-type.stat	sample.stat
	bug.stat	    filter.stat		sort.stat
	compute.stat	    gengarbage.c	split-file.stat
	count.stat	    gengarbage.pl	sysfile-info.stat
	data-formats.stat   input-program.stat	temporary.stat
	data-list.data	    list.data		time-date.stat
	data-list.stat	    list.stat		vector.stat
	descript.stat	    loop.stat		weighting.data
	do-if.stat	    modify-vars.stat	weighting.stat
	do-repeat.stat	    print.stat
	expression.stat     process-if.stat

Mon Mar 24 21:47:31 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: @ALLOCA@ is on list of source files instead of
 	alloca.c.  Added $(srcdir)/ to version.c reference.  Changed to
 	pkgdatadir (/usr/share) for pkgsysconfdir, from pkglibdir
	(/usr/lib).  Removed some of extra distfiles.  Added bogus `check'
 	target.

	* Made transition release x1.

Sun Mar  2 20:51:28 1997  Ben Pfaff  <blp@gnu.org>

	No longer uses debmake:
	
	* Makefile.am: Installs documentation according to Debian policy
	manual.  New targets `private-uninstall', `install-data-hook' to
	help implement this.  `debian' target also revised.
	
	* configure.in: Sets up for Debian installation depending on
	DEBIAN environment variable.  Also, improved & fixed (hopefully)
	the scheme for detecting patchlevel.
	
	* Made patchlevel 193.

Wed Feb 19 21:30:31 1997  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* Made patchlevel 192.

Sun Feb 16 20:57:20 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 191.
	
Sat Feb 15 21:26:53 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Removed `descript.g' from sources.

	* Made patchlevel 190.
	
Fri Feb 14 23:32:58 1997  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.
	
	* configure.in: Fixed test for max number of digits in an `int' to
 	use char[] rather than int[].

	* Made patchlevel 189.
	
Tue Feb  4 15:15:50 1997  Ben Pfaff  <blp@gnu.org>

	* configure.in: Fixed some problems with `--with-checker' flag and
	with detection of available libraries; no longer any lines longer
	than 79 characters.

	* Made patchlevel 188.
	
Wed Jan 22 21:54:00 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Add sysfile-info.c to sources.

	* TODO: Moved some notes to different files where they are more
	appropriate.

	* prefh.orig: (macros STORE_2 and LOAD_2) Always load/store as
	little-endian.

	* Made patchlevel 187.

Sun Jan 19 14:22:11 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added rename-vars.c to sources.  Added to distclean
 	files.

	* TODO: Updates.

	* Made patchlevel 186.

Thu Jan 16 13:08:57 1997  Ben Pfaff  <blp@gnu.org>

	* Most files have updated copyright notices for 1997.

	* Makefile.am: Added modify-vars.c to source files.  Also changed
 	`lynx' to $(HTML_FORMATTER), etc.  Changed messages.

	* TODO: Updates.

	* Made patchlevel 185.

Sat Jan 11 15:44:15 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: By default, now installs config files in pkglibdir,
	generally /usr/local/lib/fiasco.

	* TODO: Updated.

	* prefh.orig: Added `/etc/fiasco' to config paths.  Removed
	$ARCH/$VER dirs from include paths. 

	* Made patchlevel 184.

Fri Jan 10 20:22:08 1997  Ben Pfaff  <blp@gnu.org>

	* debian/changelog, debian/control, debian/copyright, debian/dirs,
 	debian/info, debian/menu, debian/rules: Added Debian GNU/Linux
 	control files.
 	
	* Makefile.am: Added sfmP.h to source files.  Added several files
	to the list of distfiles.   dist-hook now copies debian control
	files.  New targets `debian', `debian-clean', `debian-clean-full'.

	* confh.in: Defines PATCHLEVEL.

	* configure.in: Adds the current patchlevel to the version
	number.  Versions are now of the form `1.2.3pl456'.  Determines
	the patchlevel based on directory name and contents of file
	PATCHLEVEL.

	* reconfigure: Passes automake `--strictness=foreign'.

	* Made patchlevel 183.

Thu Jan  2 19:08:23 1997  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 182.

Wed Jan  1 22:08:10 1997  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.
	
	* Made patchlevel 181.
	
Wed Jan  1 17:00:59 1997  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: New target for test/sort.data.

	* Made patchlevel 180.
	
Sun Dec 29 21:36:48 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 179.

Tue Dec 24 20:42:32 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 178.

Sun Dec 22 23:10:39 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added heap.c, heap.h to source files.  Added
	new html files to distfiles & maintainer-clean files.

	* configure.in: Tests for presence of getpid(), sys/types.h.

	* prefh.orig: #defines mkdir() for MS-DOS compatibility.

	* Made patchlevel 177.

Sat Dec 21 21:51:04 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added README.html, LANGUAGE.html to list of
 	distfiles.  Added README, LANGUAGE to list of maintainer-clean
 	files.  Added .html to suffixes.  Added .html implicit rule that
 	calls `lynx -dump -nolist'.

	* Made patchlevel 176.
	
Tue Dec 17 18:57:59 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 175.
	
Sun Dec 15 15:32:16 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added vfmP.c, qsort, sort.c to list of source
	files.

	* prefh.orig: Subtle changes to MAX_WORKSPACE, ALWAYS_PAGE,
	NEVER_PAGE, DEMAND_PAGE macro meanings.

	* Made patchlevel 174.
	
Sat Dec 14 10:35:30 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 173.
	
Fri Dec 13 21:30:53 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added autorecode.c to source files.

	* prefh.orig: Fixed path GROFF_FONT_PATH.

	* Made patchlevel 172.
	
Fri Dec  6 23:53:47 1996  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.
	
	* Made patchlevel 171.
	
Wed Dec  4 21:34:17 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 170.
	
Sun Dec  1 17:19:00 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 169.
	
Thu Nov 28 23:14:07 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added `set.q' to list of source files.

	* Made patchlevel 168.

Thu Nov 28 19:46:10 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 167.

Wed Nov 27 23:18:35 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added `sfm-write.c' to list of source files.

	* confh.in: New #defines RELEASE_NO, SUB_RELEASE_NO, and
 	SPEC_RELEASE_NO for each part of a version number of form 1.2.3.

	* configure.in: Computes RELEASE_NO, etc., by breaking apart
 	VERSION.

	* prefh.orig: (defn of int32, flt64) Formatting fixes.
	(FLT64_MAX) New define.

	* Made patchlevel 166.
	
Sun Nov 24 14:53:53 1996  Ben Pfaff  <blp@gnu.org>

	* Wow, it's been almost two weeks since the last update, hard to
	believe.

	* All source files: Updated e-mail address.
	
	* prefh.orig: local_alloc() calls xmalloc() under Checker because
	Checker can keep track of heap blocks much more accurately.

	* Made patchlevel 165.
	
Mon Nov 11 15:34:09 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 164.
	
Thu Nov  7 20:52:28 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 163.
	
Thu Nov  7 17:29:16 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 162.
	
Thu Nov  7 15:48:52 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 161.
	
Tue Nov  5 18:34:59 1996  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* Made patchlevel 160.
	
Mon Nov  4 22:03:28 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added get.c.

	* TODO: Updated.

	* Made patchlevel 159.
	
Sun Nov  3 12:24:36 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added sfm.h, sfm-read.c to source files.

	* Made patchlevel 158.
	
Wed Oct 30 17:13:08 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added dist-zip target to AUTOMAKE_OPTIONS.

	* acconfig.h: Added FPREP_* defines.

	* configure.in: Added checks for the sizes of floating-point
 	types.  Added a test for the internal floating-point
 	representation of the host architecture.

	* prefh.orig: Renamed `ATTRIBUTION' macro as `__attribute__'.  All
 	references changed.  Defines `flt64' 64-bit floating-point for use
 	with system files.
	[FPREP==FPREP_IEEE754 && __GNUC__ && (ENDIAN==BIG ||
 	ENDIAN==LITTLE] Defines SECOND_LOWEST_VALUE macro.
	
	* Made patchlevel 157.

Sat Oct 26 23:06:06 1996  Ben Pfaff  <blp@gnu.org>

	* configure.in: Checks sizes of short, int, long, long long.

	* prefh.orig: Defines new type int32 for use with system
 	files.

	* Made patchlevel 156.
	
Sat Oct 26 20:46:31 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 155.

Sat Oct 26 10:39:25 1996  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* Made patchlevel 154.
	
Thu Oct 24 20:13:42 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added back in these files: recode.c, sample.c,
 	sel-if.c.  Also added files somP.h, hash.c that should've been
 	there anyway.

	* TODO: Updated.

	* configure.in: Checks for strncasecmp in place of strcasecmp.

	* Made patchlevel 153.
	
Thu Oct 24 17:47:14 1996  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* Made patchlevel 152.
	
Wed Oct 23 21:53:43 1996  Ben Pfaff  <blp@gnu.org>

	* TODO: Organized.

	* Made patchlevel 151.
	
Tue Oct 22 17:27:04 1996  Ben Pfaff  <blp@gnu.org>

	* TODO: Culled old notes.

	* Made patchlevel 150.

Mon Oct 21 20:39:59 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 149.
	
Sun Oct 20 13:45:28 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added back in `numeric.c', `print.c', `title.c'.
  	Defined ETAGS_ARGS.

	* Made patchlevel 148.
	
Sun Oct 20 09:04:15 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 147.
	
Fri Oct 18 19:46:49 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 146.
	
Sun Sep 29 19:37:03 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 145.
	
Sat Sep 28 21:28:07 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added to DISTCLEANFILES. 
   
	* Made patchlevel 144.
	
Fri Sep 27 20:08:39 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 143.
	
Thu Sep 26 22:20:26 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added list.c back into the list of source files.

	* Made patchlevel 142.
	
Wed Sep 25 19:36:11 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Updated for new files.

	* Made patchlevel 141.
		
Tue Sep 24 18:39:09 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 140.

Sat Sep 21 23:16:31 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 139.

Fri Sep 20 22:52:28 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 138.
	
Thu Sep 12 18:40:33 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 137.

Wed Sep 11 22:01:41 1996  Ben Pfaff  <blp@gnu.org>

	* TODO:	Added timestamp.

	* prefh.orig: Removed `/usr/local/share/fiasco' and
	`/usr/share/fiasco' from CONFIG_PATH as per the Linux FSSTND,
	which specifies that programs should never give an explicit
	`/usr(/local)/share' path.

	* Made patchlevel 136.

Tue Sep 10 21:39:00 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added `display.c' back in.

	* TODO: Addition.

	* Made patchlevel 135.
	
Mon Sep  9 21:43:13 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added `split-file.c' back into the project.

	* Made patchlevel 134.
	
Sat Sep  7 22:35:12 1996  Ben Pfaff  <blp@gnu.org>

	* TODO: Updated.

	* prefh.orig: (local_strdup) Moved to misc.h.

	* Made patchlevel 133. 
	
Thu Sep  5 22:05:56 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Changed `prologue.ps' references to `ps-prologue'.

	* Made patchlevel 132.
	
Wed Sep  4 21:45:35 1996  Ben Pfaff  <blp@gnu.org>

	* prefh.orig: New i18n defines.

	* This patchlevel doesn't even compile.

	* Made patchlevel 131.
	
Sat Aug 31 23:52:38 1996  Ben Pfaff  <blp@gnu.org>

	* TODO: Addition.

	* Made patchlevel 130.
		
Thu Aug 29 21:36:41 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 129.
	
Sat Aug 24 23:26:00 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: New target "private-install" to install config files
	to $HOME/.fiasco.

	* configure.in: Now that I have made a less-bogus Checker
 	distribution, removed `-b i486-linuxaout -V 2.6.3' from
 	AC_ARG_WITH(checker, ...).

	* Made patchlevel 127 somewhere in there.
	
	* Made patchlevel 128.
	
Sun Aug 11 21:31:22 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Changed DISTCLEANFILES.

	* Does not compile.
	
	* Made patchlevel 126.
	
Sat Aug 10 23:28:17 1996  Ben Pfaff  <blp@gnu.org>

	* reconfigure: Calls `autoheader' twice: once at the beginning,
 	once after make maintainer-clean.

	* Made patchlevel 125. 
	
Thu Aug  8 22:31:11 1996  Ben Pfaff  <blp@gnu.org>

	* reconfigure: `autoheader' now first operation performed.

	* Made patchlevel 124.
	
Sat Aug  3 20:50:35 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added postscript.c to list of source files.

	* configh.in: Removed since autoheader can regenerate it.

	* configure.in: Improved tests for (ncurses or termcap) and
 	(history and/or readline) libraries and associated headers.  Added
 	check for strcasecmp().  Changed default gcc CFLAGS.

	* prefh.orig: Removed `.' from GROFF_FONT_PATH.
	(local_alloc, local_free) New functions.

	* reconfigure: Added call to autoheader.

	* Made patchlevel 123.
	
Sat Jul 27 22:32:38 1996  Ben Pfaff  <blp@gnu.org>

	* There were some problems with the patchfiles so I had to merge
 	what was previously patchlevels 121 and 122; now everything from
 	what was previously 122 is called 121.  Oh well, just don't let it
 	happen often.

	* This patchlevel does not compile.

	* configure: No longer included in patches to save lotsa space
 	when configure.in changes.

	* configure.in: Changed the technique for detecting libraries.

	* prefh.orig: Style changes; handles changed configure.in.

	* Made patchlevel 122 (second edition).

Tue Jul 23 21:48:36 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 121.
	
Wed Jul 17 21:23:36 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 120.

Tue Jul 16 22:10:04 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 119.

Sun Jul 14 15:45:31 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 118.

Fri Jul 12 22:03:36 1996  Ben Pfaff  <blp@gnu.org>

	* Makefile.am: Added list.c to sources.
	
	* Made patchlevel 117.
	
Sat Jul  6 22:22:25 1996  Ben Pfaff  <blp@gnu.org>

	* configure.in: Removed reference to `malloc.h'.
	
	* Made patchlevel 116.
	
Fri Jul  5 20:16:19 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 115.

Thu Jul  4 20:20:24 1996  Ben Pfaff  <blp@gnu.org>

	* prefh.orig: Changes to CONFIG_PATH, INCLUDE_PATH,
 	GROFF_FONT_PATH.

	* Makefile.am: pkgdata_DATA file `output' changed to `devices'.
	
Thu Jul  4 00:35:59 1996  Ben Pfaff  <blp@gnu.org>

	* TODO: doc fix.
	
	* Made patchlevel 114.
	
Tue Jul  2 22:13:23 1996  Ben Pfaff  <blp@gnu.org>

	* reconfigure: (new file) Runs all the programs necessary to
 	create a Makefile that includes dependencies.

	* Made patchlevel 113.
	
Mon Jul  1 22:13:39 1996  Ben Pfaff  <blp@gnu.org>

	* Made patchlevel 112.

Mon Jul  1 13:00:00 1996  Ben Pfaff  <blp@gnu.org>

	* Most files: Changed references from `stat' (the original, rather
 	dull old name for this project) to `Fiasco' (the creative, rather
 	funny new name for this project).
	
	* Made patchlevel 111.
 	
Sat Jun 29 17:40:47 1996  Ben Pfaff  <blp@gnu.org>

	* prefh.orig: changed default file search paths
	
	* Made patchlevel 110.

Fri Jun 28 11:59:48 1996  Ben Pfaff  <blp@gnu.org>

	* Added automake support; removed GNUmakefile and GNUmakefile.in.

----------------------------------------------------------------------
Local Variables:
mode: change-log
version-control: never
End: