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 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721
|
2006-08-28 Adam Fedor <fedor@gnu.org>
* Version 1.13.0
2006-08-24 Adam Fedor <fedor@gnu.org>
* common.make: Remove 'd' suffix for debug libraries.
* which_lib.c: Don't search for debug libraries in case there are
old ones still around.
* Documentation/news.texi: Update for new release.
2006-08-21 Adam Fedor <fedor@gnu.org>
* target.make: Add dragonfly OS.
* Documentation/machine.texi: Updates.
2006-07-29 10:51-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* configure: Changed "cp -p" to "cp -rp" to correct breakage
when the file being linked is a directory.
2006-07-06 Richard Frith-Macdonald <rfm@gnu.org>
* configure.ac: Prevent bad characters in paths
* configure: regenerate
* GNUstep.csh.in: remove use of obsolete substitutions
* GNUstep.sh.in: ditto
* GNUstep.conf.in: ditto
The use of backslash or space characters in a path/filename can
confuse make and shell scripts, so we check for them and prevent
them from being specified at configure time and/or built in to
scripts. Hopefully this will prevent much confusion on windows.
2006-07-05 Richard Frith-Macdonald <rfm@gnu.org>
* GNUmakefile.in: install config.make in library combo specific
directory so that non-flattened builds can pick up the correct
config info for the library combo being used.
* common.make: pick up config.make from new location
* rules.make: know about new location for config.make
2006-06-14 Richard Frith-Macdonald <rfm@gnu.org>
* common.make: determine host/target info before trying to load
host/target specific configuration.
2006-05-01 Richard Frith-Macdonald <rfm@gnu.org>
* configure.ac: Change --with... options specifying paths so that if
someone oddly uses --without... we treat it as if they had specified
nothing.
2006-04-26 Adam Fedor <fedor@gnu.org>
* Documentation/gnustep-howto.texi: Fix node link
2006-04-26 Saso Kiselkov
* common.make: Add option to turn on native exceptions.
2006-04-25 Adam Fedor <fedor@gnu.org>
* Documentation/gnustep-howto.texi: Update windowmaker address
2006-04-07 Adam Fedor <fedor@gnu.org>
* Documentation/README.MinGW: Correct typo in xml instructions.
2006-04-06 Adam Fedor <fedor@gnu.org>
* config.make.in: Set GNUSTEP_HOME to $(HOME). Fix if statements
with filter in them. Fixes bug #16010.
2006-03-27 Adam Fedor <fedor@gnu.org>
* target.make (openbsd): Add additional link flags for bundle
loading. Patch #4989 from Andrew Sveikauskas.
2006-03-27 Adam Fedor <fedor@gnu.org>
* Master/source-distribution.make (svn-tag): Add comment line
(svn-dist): Simplify checkout.
* Master/framework.make: Add build-headers rules
* GNUmakefile: Add special_prefix to GNUSTEP_MAKEFILES
2006-03-17 Richard Frith-Macdonald <rfm@gnu.org>
* Documentation/README.MinGW: Attempt to clarify versions to be used.
2006-03-13 Adam Fedor <fedor@gnu.org>
* Version 1.12.0
2006-03-09 Adam Fedor <fedor@gnu.org>
* target.make (openbsd): Add specific EXTACT_CLASS_NAMES_COMMAND.
Patch #4957 from Andrew Sveikauskas.
2006-03-07 Jeremy Bettis <jeremy@deadbeef.com>
* Instance/framework.make: Only copy headers if they changed.
Delete framework.dll if the compile fails.
* Instance/subproject.make: Only copy headers if they changed
* Master/framework.make: make
$(FRAMEWORK_NAME:=.all.framework.variables) depend on
$(FRAMEWORK_NAME:=.build-headers.framework.variables), sometimes
the copying of header files would happen too late.
* target.make: Added -Wl,--enable-auto-image-base to link command
for shared libs & bundles on mingw32.
2006-02-23 Adam Fedor <fedor@gnu.org>
* Master/source-distribution.make: Add svn tag/dist rules
* Documentation/userfaq.texi: updates.
2006-01-11 Richard Frith-Macdonald <rfm@gnu.org>
* Documentation/README.MinGW: Update with information on libxml2
2006-01-05 Adam Fedor <fedor@gnu.org>
* Instance/bundle.make: Always link agains all libs when using
Apple's CC.
2006-01-01 Richard Frith-Macdonald <rfm@gnu.org>
* openapp.in: Remove IFS setting and search again ... it prevented
windows paths from working (which was why it was removed in the first
place). Also removed insertion of '.' as a path to search ... since
this is generally considered a security flaw.
Removed some code to search in odd subdirectories.
Added code to search the directories specified in PATH as well as the
standard locations. Does this need a different path separator on
mingw? Can't remember and I don't currently have a windows system to
test on.
2005-12-30 Adam Fedor <fedor@gnu.org>
* openapp.in: Re-add IFS setting and search in current dir
(Fixes Bug #15289).
2005-12-21 Adam Fedor <fedor@gnu.org>
* Version 1.11.2
2005-12-20 Adam Fedor <fedor@gnu.org>
* configure.ac: Check for objc-gnu in the GNUstep libraries dir.
* Instance/bundle.make: Always link againt all libs on darwin.
2005-12-20 Adam Fedor <fedor@gnu.org>
* configure.ac: Don't strip -g from CFLAGS. Someone might want it
without using debug=yes.
2005-12-06 Richard Frith-Macdonald <rfm@gnu.org>
* configure.ac: On mingw32, if we don't get the config file location
from an earlier installatioin or a command line option, use
/c/GNUstep/GNUstep.conf-dev ... assuming a development version
rather than a version for distribution.
* target.m: add -SystemStubs to bundle libraries on MacOS-X tiger ...
as linking of stdio functions seems to fail otherwise.
2005-12-05 Richard Frith-Macdonald <rfm@gnu.org>
* Documentation/filesystem.texi: Initial attempt at adding
documentation on how the filesystem layout is controlled by
the GNUstep config file.
2005-12-05 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Display a message with the GNUSTEP_MAKEFILES that
is used. In psychological preparation for when it will actually
be configurable. ;-)
* configure: Regenerated.
2005-12-05 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/library.make (internal-library-uninstall_): Fixed
uninstallation of dll on windows. (Suggested by Frode
<frode@bredband.net>).
2005-12-02 Richard Frith-Macdonald <rfm@gnu.org>
* opentool.in:
* openapp.in:
* config.make.in:
Honor the GNUSTEP_CONFIG_FILE environment variable.
2005-11-28 Richard Frith-Macdonald <rfm@gnu.org>
* GNUstep.conf.in: Use new variables for handling backslashes in
paths.
* GNUstep.csh.in: ditto
* GNUstep.sh.in: ditto
* GNUmakefile.in: Quote paths when we use them .. to avoid backslashes
being removed when they should be present in the path.
* configure.ac: Always make GNUSTEP_MAKEFILES the Library/Makefiles
subdirectory of the system root. Create new variables containing
escaped backslashes to handle being given a backslash in a path.
* configure: regenerate
2005-11-21 Richard Frith-Macdonald <rfm@gnu.org>
* opentool.in:
* openapp.in:
Changed to use new GNUstep.conf configuration file to obtain the
directories to search.
2005-10-28 Richard Frith-Macdonald <rfm@gnu.org>
* configure.ac: Set up a sensible default location for GNUstep.conf
on mingw32 systems (C:\GNUstep\GNUstep.conf).
* configure: ditto
2005-10-27 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Standardized the format of option help, and also
written fairly complete help on each and every option.
* configure: Regenerated.
2005-10-26 Nicola Pero <n.pero@mi.flashnet.it>
* common.make: Removed checks for GNUSTEP_*_ROOT variables
top-level, they are now automatically and always set by
config.make, no need to check for them here in the new system.
2005-10-26 Nicola Pero <n.pero@mi.flashnet.it>
* Master/rules.make: Rewritten code that determines if this the
top-level make invocation (in order to have the dependencies
install: check-install-permissions all, and distclean: clean
top-level), so that it also works when gnustep-make is invoked
from within a makefile itself (this fixes 'make distclean' in
gnustep-make's own Documentation/GNUmakefile).
* common.make: Updated similar checks.
2005-10-26 Nicola Pero <n.pero@mi.flashnet.it>
* Documentation/GNUmakefile: Updated commands to create temporary
gnustep-make installation. Also, do not source GNUstep.sh but rely
just on passing GNUSTEP_MAKEFILES on the make command line.
2005-10-26 Nicola Pero <n.pero@mi.flashnet.it>
* GNUmakefile.in (install): Fixed installing GNUstep.conf
when the build directory is different from the source directory.
2005-10-23 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Fixed error in the documentation of
--with-user-config-file option.
* configure: Regenerated.
2005-10-23 Nicola Pero <n.pero@mi.flashnet.it>
* config.make.in: Removed code to compute GNUSTEP_HOST,
GNUSTEP_HOST_CPU, etc, when in GNUSTEP_MULTI_PLATFORM mode -- this
is already done by names.make later.
2005-10-23 Nicola Pero <n.pero@mi.flashnet.it>
This change is key to no longer having to source GNUstep.sh when
compiling stuff using gnustep-make. Please understand this is all
very experimental so don't upgrade yet if you need stability.
* config.make.in (GNUSTEP_CONFIG_FILE): Read configuration files
directly and get all required information from there; only
GNUSTEP_MAKEFILES is assumed to be set.
* common.make: Include config.make first because until we include
that one, we can no longer assume anything.
2005-10-23 Nicola Pero <n.pero@mi.flashnet.it>
* which_lib.c (search_for_lib_with_suffix_and_ext): Enhanced
changes to make the code simpler and easier to understand and
avoid duplicate checks for static libs. Needs testing.
2005-10-23 Richard Frith-Macdonald <rfm@gnu.org>
* which_lib.c: Tidied a little on lines suggested by David Ayers
* configure.ac: Check for ctype.h
* configure: regenerate
* config.h.in: regenerate
2005-10-23 Jeremy Bettis
* configure.ac:
* rules.make:
* target.make:
Use install -p so that doing a make install doesn't change the
timestamp on all the headers and cause everything to need rebuilt.
Don't create the obj dir (symlink) on mingw.
Add -Wl,--enable-auto-import to link commands to make the compiler be
quiet.
* which_lib.c: Fixes to support other library types on mingw.
Patches applied and edited to conform to GNUstep coding standard.
2005-10-20 Adam Fedor <fedor@gnu.org>
* config.make.in (GNUSTEP_CONFIG_FILE): Correct capitaliztion
of substitution variable.
2005-10-19 Nicola Pero <n.pero@mi.flashnet.it>
* config.guess: Updated to latest version.
* config.sub: Idem.
2005-10-18 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Make sure that --prefix=xxx takes precedence over
paths read from GNUstep.conf or inherited from the environment.
* configure: Regenerated.
2005-10-17 Adam Fedor <fedor@gnu.org>
* target.make (netbsd): Remove static libs version of netbsd
target and make (netbsdelf) work for all netbsd versions.
* clean_os.sh: Don't clean netbsd targets. Fixes Bug #14635.
2005-10-14 Nicola Pero <n.pero@mi.flashnet.it>
* GNUstep.sh.in: Export GNUSTEP_USER_ROOT after setting it (Bug
reported by Fred Kiefer <fredkiefer@gmx.de>).
2005-10-13 Nicola Pero <n.pero@mi.flashnet.it>
* GNUstep.sh.in: Read system, local, network, user paths from
configuration files and use the configuration files settings in
preference to the hardcoded ones.
* GNUstep.csh.in: Same changes, where we use sed to convert on the
fly the sh syntax of config files to csh syntax, then we eval the
result.
* GNUmakefile.in: Do not compile, install and clean user_home.
* user_home.c: Removed.
* GNUstep-reset.sh (GNUSTEP_USER_CONFIG_FILE, GNUSTEP_USER_DIR,
GNUSTEP_USER_DEFAULTS_DIR, GNUSTEP_CONFIG_FILE): Unset.
2005-10-13 Nicola Pero <n.pero@mi.flashnet.it>
* GNUmakefile.in (GNUSTEP_CONFIG_FILE): Fixed replacing this variable.
2005-10-13 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Added --with-user-config-file, --with-user-dir,
--with-user-defaults-dir options. Remove --with-user-root option.
Simplified implementation of --with-config-file option. Do not
generate GNUsteprc.
* configure: Regenerated.
* GNUstep.conf.in (GNUSTEP_USER_CONFIG_FILE): New variable.
(GNUSTEP_USER_DIR): New variable.
(GNUSTEP_USER_DEFAULTS_DIR): New variable.
* GNUsteprc.in: Removed.
2005-10-13 Nicola Pero <n.pero@mi.flashnet.it>
Warning: --prefix=/usr/GNUstep/System no longer works. Please use
--prefix=/usr/GNUstep or --with-system-root=/usr/GNUstep/System.
* configure.ac: Simplified management of --prefix. Do not try
setting default prefix from an existing GNUSTEP_SYSTEM_ROOT as
that is read from the config file after the default prefix is set.
Do not set $prefix variable that it not used anywhere. Fixed bug
in setting GNUSTEP_SYSTEM_ROOT introduced in previous changes.
* configure: Regenerated.
2005-10-12 Nicola Pero <n.pero@mi.flashnet.it>
* .cvsignore: Ignore GNUstep.conf
2005-10-12 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Use the GNUSTEP_CONFIG_FILE environment variable
to choose the location of the config file, if no configure option
is given. Automatically import the settings from an existing
GNUstep config file if one exists, and use them for anything not
specified. Added --disable-importing-config-file option to
disable this behaviour.
* configure: Regenerated.
2005-10-12 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Added --with-system-root=xxx option.
* configure: Regenerated.
2005-10-12 Nicola Pero <n.pero@mi.flashnet.it>
Removed obsolete public variable GNUSTEP_ROOT.
* configure.ac: Do not replace GNUSTEP_ROOT in generate files.
* configure: Regenerated.
* GNUstep.csh.in: Do not define GNUSTEP_ROOT.
* GNUstep.sh.in: Do not define GNUSTEP_ROOT.
2005-10-12 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Define GNUSTEP_SYSTEM_ROOT from prefix. Export
and reference it instead of exporting and referencing 'prefix' to
clarify what is happening. Reordered some configure stages to
prepare it for further changes.
* configure: Regenerated.
* GNUmakefile.in: Use GNUSTEP_SYSTEM_ROOT instead of prefix.
* GNUstep.csh.in: Same change.
* GNUstep.sh.in: Same change.
* GNUstep.conf.in: Same change.
2005-10-12 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac (MAKEFILE_SUFFIX): Variable removed.
(GNUSTEP_MAKEFILES): New variable (that is more standard and more
suited to make it a configure option in the future). Replace it
in generated files.
* configure: Regenerated.
* debugapp.in: Use everywhere GNUSTEP_MAKEFILES, not
MAKEFILE_SUFFIX.
* opentool.in: Same change.
* GNUmakefile.in: Same change.
* executable.template.in: Same change.
* GNUstep.sh.in: Same change.
* GNUstep.csh.in: Same change.
* gnustep-make.spec.in: Removed MAKEFILE_SUFFIX, use Library/Makefiles
directly.
2005-10-12 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Removed obsolete --without-system-root option.
* configure: Regenerated.
2005-10-12 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac (root_prefix): Variable removed. Wasn't used or
replaced anywhere.
* configure: Regenerated.
2005-10-12 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Use /usr/pkg/etc/GNUstep.conf instead of
/usr/pkg/etc as GNUstep config file on NetBSD (Suggestion by David
Ayers).
* configure: Regenerated.
2005-10-12 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Generate GNUstep.conf from GNUstep.conf.in
so that GNUstep.conf gets properly setup with the paths that
are configured into gnustep-make
* GNUstep.conf.in: New file.
* GNUstep.conf: Removed.
* configure: Regenerated.
* GNUmakefile.in (install): Install the GNUstep.conf file
in the chosen location for the GNUstep config file.
2005-10-12 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Added --with-config-file=xxx (code partially taken
from gnustep-base) option.
* config.make.ac: Added GNUSTEP_CONFIG_FILE variable holding the
configured location of the config file for this installation.
* configure: Regenerated.
2005-10-06 Tom MacSween <macsweent@sympatico.ca>
* Fixes for cygwin.
* Instance/rules.make: Add Windows resource files for cygwin
* config.make.in: Cygwin does not have ln-s
* rules.make: Add Windows resource rules for cygwin
* target.make (cygwin): Fix shared link cmd.
2005-10-06 Nicola Pero <n.pero@mi.flashnet.it>
* rules.make (ALL_OBJCCFLAGS, $(GNUSTEP_OBJ_DIR)/%${OEXT}): When
compiling ObjC++ files, don't use the additional ObjC flags but
only the internal/system ones, to make it easier/possible for end
users to add different flags to ObjC and ObjC++ compilations.
2005-10-06 Nicola Pero <n.pero@mi.flashnet.it>
Added support for ObjC++. You should list the ObjC++ .mm files in
the xxx_OBJCC_FILES variable, and put extra ObjC++ flags in
xxx_OBJCCFLAGS or ADDITIONAL_OBJCCFLAGS.
* rules.make (.SUFFIXES): Added .mm for ObjC++.
($(GNUSTEP_OBJ_DIR)/%${OEXT}): Added rule to compile .mm files
into .o files.
(ALL_OBJCCFLAGS): New variable, set from ADDITIONAL_OBJCCFLAGS and
AUXILIARY_OBJCCFLAGS.
* Instance/rules.make (OBJCC_OBJS, OBJCC_OBJ_FILES): New variables
set from xxx_OBJCC_FILES.
(OBJ_FILES_TO_LINK): Added the new OBJCC_OBJ_FILES to the list of things
to link.
(ADDITIONAL_OBJCCFLAGS): New variable set from xxx_ADDITIONAL_OBJCCFLAGS.
2005-09-28 Adam Fedor <fedor@gnu.org>
* target.make (cygwin/SHARED_LIB_LINK_CMD): Correct lib file name
(Fix from Tom MacSween).
* Instance/framework.make: Add extension to NSExecutable.
2005-09-22 Adam Fedor <fedor@gnu.org>
* Add runtime flags everywhere for Mac OS/gcc dual runtimes
* rules.make (CC_LDFLAGS): New variable for extra ld flags
* target.make (darwin/SHARED_LD_PREFLAGS): Use it.
* Instance/application.make (APP_FILE),
Instance/gswapp.make (GSWAPP_FILE), Instance/objc.make,
Instance/service.make (SERVICE_FILE), Instance/tool.make: Idem.
2005-09-18 Adam Fedor <fedor@gnu.org>
* Version 1.11.1
* target.make (darwin): Add RUNTIME_FLAGS to shared lib link with
GNU compiler (i.e. -fgnu-runtime).
* Documentation/README.MinGW: Update.
2005-09-17 Adam Fedor <fedor@gnu.org>
* Changes to fix compilation on cygwin.
* target.make: Add generic BUNDLE_LINK_CMD.
(cygwin): Modify it for cygwin. New SHARED_LIB_LINK_CMD and
other support variables.
* Instance/application.make: Remove OLD_DLL_SUPPORT
* Instance/bundle.make: Idem. Use BUNDLE_LINK_CMD.
* Instance/library.make: Remove OLD_DLL_SUPPORT
* Instance/palette.make: Idem.
* Instance/rules.make: Remove subproject def file rule.
* Instance/subprojects.make: Remove def file rules.
* Instance/framework.make: Add OBJ_EXT in Info file.
(Based on patch and suggestions by Tom MacSween).
2005-08-08 Adam Fedor <fedor@gnu.org>
* Documentation/machines.texi: Update.
2005-08-08 Adam Fedor <fedor@gnu.org>
* Instance/application.make, Instance/gswapp.make,
Instance/service.make, Instance/tool.make: Revert change from
2005-06-06.
2005-07-21 Adam Fedor <fedor@gnu.org>
* Version 1.11.0
2005-07-20 Jeremy Bettis <jeremy@deadbeef.com>,
Nicola Pero <n.pero@mi.flashnet.it>
* config.make.in: Set FRAMEWORK_VERSION_SUPPORT here.
* Instance/framework.make: And do not set it here.
* Master/rules.make (%.variables, %.subprojects): if
FRAMEWORK_VERSION_SUPPORT is not set to yes, use
non-Versions directories for frameworks.
* config.make.in (HAS_LN_S): Make sure it's set to no
when it's not set to yes.
2005-07-14 Jeremy Bettis <jeremy@deadbeef.com>,
Nicola Pero <n.pero@mi.flashnet.it>
Implemented support for xxx_WINDRES_FILES on mingw32.
* rules.make ($(GNUSTEP_OBJ_DIR)/%${OEXT}): New mingw32 rule to
compile a .rc (windres) file into an object file.
(.SUFFIXES): On mingw32, add .rc.
* Instance/rules.make (WINDRES_OBJS, WINDRES_OBJ_FILES): New
variables for mingw32; generate them from xxx_WINDRES_FILES.
(OBJ_FILES_TO_LINK): Add WINDRES_OBJ_FILES to the list of files to
link.
2005-07-14 Jeremy Bettis <jeremy@deadbeef.com>,
Nicola Pero <n.pero@mi.flashnet.it>
Implemented pseudo-framework support for mingw32 (Windows).
* Instance/framework.make: disable versioning on Windows, switch
to use the new DLL building system already used by libraries, and
clean up all the small details of pseudo-frameworks on mingw32.
2005-07-13 Nicola Pero <n.pero@mi.flashnet.it>
* target.make (EXTRACT_CLASS_NAMES_COMMAND): New define for
mingw32 where class name symbols start with '___' rather than
'__'.
2005-07-12 Nicola Pero <n.pero@mi.flashnet.it>
* target.make (FreeBSD ELF): if -pthread is being used for
threads, add -pthread to INTERNAL_CFLAGS, INTERNAL_OBJCFLAGS,
INTERNAL_LDFLAGS.
2005-07-12 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make (DUMMY_FRAMEWORK): Mangle
framework names into valid ObjC class names.
2005-07-12 Nicola Pero <n.pero@mi.flashnet.it>
* Documentation/README.MinGW: Updated.
2005-07-08 Adam Fedor <fedor@gnu.org>
* Documentation/news.texi: Update for next version.
2005-07-06 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/bundle.make: Removed usage of :: rules for all but the
internal- rules. Can't see a reason why we were using :: rules in
the other cases, probably a tradition that was followed without
really understanding why.
* Instance/gswbundle.make: Same change.
* Instance/framework.make: Same change.
* Instance/subproject.make: Same change.
2005-06-17 Adam Fedor <fedor@gnu.org>
* Documentation/GNUmakefile: Don't try to install README.NetBSD
* Documentation/machines.texi: Updates.
2005-06-10 Adam Fedor <fedor@gnu.org>
* Instance/test-library.make: Remove dejagnu code and replace
with rules to inherit from library.make
2005-06-10 Adam Fedor <fedor@gnu.org>
* Master/source-distribution.make (dist): Tar/copy the directory
instead of moving it to make the distribution. Fixes bug #13305
* Documentation/machines.texi: Update Suse.
2005-06-06 Adam Fedor <fedor@gnu.org>
* Instance/application.make (ALL_GUI_LIBS): Remove OBJC_LIBS,
AUXILIARY_OBJC_LIBS, and TARGET_SYSTEM_LIBS
* Instance/gswapp.make (ALL_GSW_LIBS): Idem.
* Instance/service.make (ALL_SERVICE_LIBS): Idem.
* Instance/test-library.make (ALL_TEST_LIBRARY_LIBS): Idem.
* Instance/tool.make (ALL_TOOL_LIBS): Idem.
Fixes bug #9920.
2005-05-31 Nicola Pero <n.pero@mi.flashnet.it>
* Documentation/README.MinGW: Rewritten with updated instructions.
2005-05-23 David Lazaro Saz <dlazaro@acm.org>
* Documentation/userfaq.texi: Updated style, trademark usage and some
spelling mistakes.
2005-05-21 Adam Fedor <fedor@gnu.org>
* Update FSF Address.
* Documentation/gnustep-howto.texi: Update required libs.
2005-04-19 Adam Fedor <fedor@gnu.org>
* GNUmakefile.in (install): Don't make Makefiles link
* target.make (darwin/GNU): Use $(CC) to link library.
* Instance/framework.make: More comments.
2005-04-15 Adam Fedor <fedor@gnu.org>
* Instance/framework.make: Add top-level symlink for all darwin
* ld_lib_path.[c]sh: Clarify framework comment.
* Documentation/machines.texi: Update
* Documentation/README.NetBSD: Remove, obsolete.
2005-04-06 Nicola Pero <n.pero@mi.flashnet.it>
* GNUstep.conf (USER_GNUSTEP_RC): Fixed typo, it was spelt
as .GNusteprc instead of .GNUsteprc.
2005-04-06 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make: Create header directories and copy them
even if HEADER_FILES is empty. This fixes problems when
subprojects have headers, but the top-level framework does not.
* Instance/Shared/headers.make (HEADER_FILES_DIR,
HEADER_FILES_INSTALL_DIR): Always compute those two variables
even if HEADER_FILES is empty.
2005-04-06 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make ($(FRAMEWORK_HEADER_FILES)): Fixed
depending on HEADER_FILES, which wasn't taking HEADER_FILES_DIR
into account (Fix suggested by Matt Rice <ratmice@yahoo.com>).
2005-03-22 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/application.make (ALL_LDFLAGS): When on a platform
where DLLs are built (such as Mingw), automatically generate a
.exe.a library for the application. Required by Gorm.
2005-03-21 Adam Fedor <fedor@gnu.org>
* GNUmakefile.in: Don't install .GNUsteprc file
* GNUstep.conf: New file.
* Documentation/README.Darwin, Documentation/README.MinGW,
Documentation/faq.texi, Documentation/machines.texi: Updates.
2005-03-21 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/palette.make (internal-palette-all_): Use the old dll
rules only if OLD_DLL_SUPPORT is YES. In all other cases,
including Mingw, use the standard ones.
(Info-gnustep.plist): Include PALETTE_OBJ_EXT in NSExecutable.
2005-03-21 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/bundle.make: Use make quotes, not shell quotes, for
BUNDLE_OBJ_EXT when used in rules.
2005-03-21 Nicola Pero <n.pero@mi.flashnet.it>
* target.make (SHARED_LIBEXT): Set to .dll.a for Mingw so that
which_lib manages to find the libs and building with debug=yes now
works on Mingw.
2005-03-10 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/library.make: On Windows, try to link against all
libraries, except the one we are compiling.
* Instance/bundle.make: Replaced all occurrences of WITH_DLL with
BUILD_DLL.
* Instance/framework.make: Same change.
* Instance/palette.make: Same change.
* Instance/bundle.make (build-bundle): Use the old DLL rules to
build bundles only if OLD_DLL_SUPPORT is defined. Else, use the
rules specified in target.make for that platform.
* target.make (BUNDLE_LD): Just use -shared on Mingw.
2005-03-10 Nicola Pero <n.pero@mi.flashnet.it>
* user_home.c (main): Fixed missing case for Windows ... if
HOMEPATH was already a full path, the code would forget to copy
the path into home.
2005-03-09 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Detect libobjc.dll.a as a custom ObjC library.
* configure: Regenerated.
2005-03-01 Nicola Pero <n.pero@mi.flashnet.it>
* target.make (WITH_DLL): Variable removed.
(OLD_DLL_SUPPORT): New variable which is set to yes for cygwin,
but to no for mingw.
(DLLTOOL): Do not define for mingw.
(DLLWRAP): Do not define for mingw.
(SHARED_LIB_LINK_CMD): New variable for mingw.
(AFTER_INSTALL_SHARED_LIB_CMD): The same.
(AFTER_INSTALL_SHARED_LIB_CHOWN): The same.
(SHARED_LIBEXT): Do not define to be .a on mingw; that is only
confusing; use LIBEXT instead.
(LIBEXT): Define to be .a on mingw.
(TARGET_SYSTEM_LIBS): Define using =, not :=.
* rules.make (ALL_CPPFLAGS): Check BUILD_DLL instead of WITH_DLL
when adding -DGNUSTEP_WITH_DLL.
* Instance/library.make (LIBRARY_NAME_WITHOUT_LIB): New variable.
(LIBRARY_FILE_EXT): Unused variable removed.
(CLEAN_library_NAME): Generate using make functions rather than
firing external shell scripts to increase building speed.
Execute existing DLL code when OLD_DLL_SUPPORT is set to yes. For
BUILD_DLL but not OLD_DLL_SUPPORT, added brand new code which uses
the new target.make mingw variables and takes advantage of the new
DLL support in GCC and mingw.
2005-02-19 Adam Fedor <fedor@gnu.org>
* Documentation/README.MinGW: Minor edit.
* Documentation/faq.texi: Add question.
* Documentation/gnustep-howto.texi: Add service
* Documentation/machines.texi: Edit FreeBSD 5.x
2005-02-18 Richard Frith-Macdonald <rfm@gnu.org>
* Documentation/README.MinGW: Update with my latest experiences.
2005-01-31 Adam Fedor <fedor@gnu.org>
* Documentation/GNUmakefile: Install README.* docs
* Documentation/machines.texi: Typo.
2005-01-14 Armando Di Cianno <fafhrd@gentoo.org>
* GNUstep-reset.sh (reset-path): Add new argument with a path
fragment to make the path removal more accurate. Use it with
appropriate arguments for each variable. (with small changes by
Nicola).
2005-01-05 Sergii Stoian <stoian255@ukr.net>
* Instance/Shared/bundle.make (shared-instance-bundle-all): Fixed
copying resource files and localized resource files into the
bundle when they are in subdirs.
2004-12-27 Quentin Mathe <qmathe@club-internet.fr>
* Documentation/README.Darwin: Rewritten the base library install
instructions (libxslt support with Fink explained) and other minor
updates.
* Documentation/machines.texi: Made the GNUstep on MacOSX section a bit
more clear.
* GNUstep-HOWTO: Synchronized with Documentation/machines.texi and made
the spacing more consistent.
2004-12-26 Quentin Mathe <qmathe@club-internet.fr>
* Documentation/README.Darwin: Updated to take in account the latest
feedback by Uli Kusterer.
* Documentation/machines.texi:
* GNUstep-HOWTO:
Updated the current GCC state for GNUstep on Darwin.
2004-12-26 Quentin Mathe <qmathe@club-internet.fr>
* Documentation/README.Darwin: Improved indentation and presentation.
2004-12-19 Richard Frith-Macdonald <rfm@gnu.org>
* target.make: For gnu compiler on darwin, use flat namespace and
undefined warning for executables as well as libraries/bundles so
that we can link with libraries/bundles without havint to explictly
name all the libraries that thay depend upon.
2004-12-06 Adam Fedor <fedor@gnu.org>
* Documentation/machines.texi (MacOSX): Update (info from Markus
Hitter).
* Documentation/README.Darwin: Clean up, simplify.
Sun Nov 7 04:18:39 2004 Nicola Pero <n.pero@mi.flashnet.it>
* tar-exclude-list: Use *.svn instead of .svn to have
.svn dirs excluded.
Sun Nov 7 04:07:50 2004 David Wetzel <dave@turbocat.de>
* Instance/Shared/bundle.make: Everywhere use the '-f' flag to 'cp
-r' so that read-only files such as subversions dirs can be
written and overwritten.
Thu Nov 4 08:39:29 2004 Nicola Pero <n.pero@mi.flashnet.it>
* common.make (RM_LN_S): New variable.
* target.make: Replaced 'rm -f', when used before creating a
symlink, with $(RM_LN_S).
* rules.make ($(GNUSTEP_OBJ_DIR)): Same change.
* Instance/framework.make: Same change.
* Instance/gswbundle.make: Same change.
2004-10-29 Adam Fedor <fedor@gnu.org>
* Documentation/README.Cygwin: Updated
* Documentation/README.Darwin: Minor update
* Documentation/gnustep.init: Add navigation tags back
2004-10-18 Adam Fedor <fedor@gnu.org>
* Documentation/README.MinGW: Mention Windows installer. Update links
* Documentation/gnustep-howto.texi: Some setup no longer needed.
* Documentation/gnustep.init: Don't add links - currently not
referenced correctly.
* Documentation/machines.texi: Add compilers section.
* Instance/tool.make: Fix a typo.
2004-09-07 Adam Fedor <fedor@gnu.org>
* Version 1.10.0
Tue Sep 7 12:48:31 2004 Nicola Pero <n.pero@mi.flashnet.it>
* target.make (SHARED_LIB_LINK_CMD): Removed -prebind flag.
2004-09-06 Adam Fedor <fedor@gnu.org>
* configure.ac: Don't reset LIB_DIR.
2004-09-03 Adam Fedor <fedor@gnu.org>
* Add missing GNUsteprc.in
Fri Sep 3 21:52:00 2004 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Recognize --with-user-root option and store
the configuration into the system GNUsteprc.
* configure: Regenerated.
* GNUsteprc.in: New file.
* GNUmakefile.in (install): Install the system GNUsteprc into
GNUSTEP_SYSTEM_ROOT. (uninstall): Uninstall the same file.
(distclean): Remove GNUsteprc.
* user_home.c: Do not segfault if the environment variable
GNUSTEP_SYSTEM_ROOT is not set when the tool is executed.
Thu Sep 02 17:01:11 2004 Nicola Pero <n.pero@mi.flashnet.it>
* tar-exclude-list: New file currently containing CVS and .svn.
* GNUmakefile.in: Install the new file.
* Instance/Shared/bundle.make: Modified TAR commands to exclude
files listed in the tar-exclude-list file.
* Instance/framework.make: Same changes.
* Instance/gswbundle.make: Same changes.
* Instance/Documentation/autogsdoc.make: Same changes.
* Instance/Documentation/javadoc.make: Same changes.
* Instance/Documentation/latex.make: Same changes.
Tue Aug 31 16:21:41 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/library.make: If xxx_INTERFACE_VERSION or xxx_SOVERSION
is set, but xxx_VERSION is not set, guess xxx_VERSION by taking
xxx_INTERFACE_VERSION and appending .0.
2004-08-24 Quentin Mathe <qmathe@club-internet.fr>
* ld_lib_path.sh:
* ld_lib_path.csh:
Added comments to explain why we set DYLD_FRAMEWORK_PATH on Darwin with
any library combo and not just apple-apple-apple (it is a temporary
solution).
2004-08-24 Adam Fedor <fedor@gnu.org>
* GNUstep.sh.in: Add newline at end of file (avoids bug in Solaris
sed).
Fri Aug 20 02:26:12 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Documentation/install.texi (Single-User): Removed mention of
FORCE_USER_ROOT which is going to be dropped in next releases.
Fri Aug 20 02:19:54 2004 Nicola Pero <n.pero@mi.flashnet.it>
* GNUstep.sh.in: Do not run make_services.
* GNUstep.csh.in: Do not run make_services.
2004-08-07 Adam Fedor <fedor@gnu.org>
* configure.ac: Remove warning about moving old directories into
new directory structure (been there since 1.7.0).
2004-07-31 Adam Fedor <fedor@gnu.org>
* configure.ac: Add checks for specific Apple compiler flags.
* target.make (darwin): Use them. Don't add no-cpp-precomp flag
when compiling with Apple compiler.
* Documentation/README.Darwin: Minor fixes (Patch from
lars.sonchocky-helldorf@hamburg.de).
* Master/source-distribution.make: Add CVS_TAG_NAME variable.
2004-07-11 Gregory John Casamento <greg_casamento@yahoo.com>
* Instance/palette.make: Updated the palette.make to create
a plist instead of a string format file for the palette.table.
It's necessary for the the palette.table to be able to pass in
a set of classes to be imported.
2004-07-09 Adam Fedor <fedor@gnu.org>
* configure.ac: Improve compiler type test.
* Documentation/gnustep.init: Fix template parsing rules.
2004-07-04 Adrian Robert <arobert@cogsci.ucsd.edu>
* Instance/Documentation/texi.make:
Added rules to use texi2pdf to generate PDF doc, and replace PS by PDF
in the default generate/install/uninstall rules. Add <instance>.html
to the list of files installed/uninstalled for HTML.
2004-06-23 01:47 Alexander Malmberg <alexander@malmberg.org>
* common.make, config.make.in: Rename HAS_OBJC_EXCEPTIONS to
USE_OBJC_EXCEPTIONS.
* configure.ac: Same. Also add --enable-native-objc-exceptions
argument and make the test for this feature stricter.
* configure: Rebuild.
Fri Jun 19 13:01:02 2004 Nicola Pero <n.pero@mi.flashnet.it>,
Yves de Champlain <yves@gnu-darwin.org>
* target.make (EXTRACT_CLASS_NAMES_COMMAND): New variable, with
special value for darwin.
* Instance/framework.make: Use the new variable when building
the list of classes in the framework.
Fri Jun 18 18:49:16 2004 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Detect native exception handler support in the
compiler, and set HAS_OBJC_EXCEPTIONS to yes if it's there.
* configure: Regenerated.
* config.make.in: New variable HAS_OBJC_EXCEPTIONS.
* common.make: If HAS_OBJC_EXCEPTIONS is set, add
-fobjc-exceptions to the ObjC flags.
2004-06-16 Adam Fedor <fedor@gnu.org>
* GNUmakefile (distclean): Remove duplicate GNUmakefile removal
Don't remove Documentation/GNUmakefile
* Documentation/machines.texi: Update
* Instance/resource-set.make (internal-resource_set-uninstall_):
Remove directories after removing files.
Tue Jun 15 09:49:16 2004 Nicola Pero <n.pero@mi.flashnet.it>
* GNUstep.sh.in: Detect if we're running under zsh, and if so, if
the shwordsplit option is not set, set it for the duration of the
script, then restore it to its original value at the end. This
seems to fix setting the paths on zsh.
2004-06-14 Adam Fedor <fedor@gnu.org>
* GNUmakefile.in (uninstall): Remove all installed files (still
need to do directories).
2004-06-09 Adam Fedor <fedor@gnu.org>
* Version 1.9.2
* Documentation/GNUmakefile: Include ../Version
* Documentation/README.Cygwin: minor updates.
* Documentation/gnustep-howto.texi, Documentation/machines.texi: Update
2004-06-05 Adam Fedor <fedor@gnu.org>
* ld_lib_path.[c]sh: Allow seting of GNUstep framework location on
Mac OS X for all library combos (patch from Quentin Mathe
<gnustep-quentin@club-internet.fr>).
* Instance/application.make ($(APP_INFO_PLIST_FILE)): Don't fail
if plmerge does not work.
* Documentation/README.Cygwin: Update
* Documentation/machines.texi: Add Mac OS X section.
* Documentation/news.texi: Update.
Tue Jun 1 15:43:45 BST 2004 Riccardo Mottola <rollei@tiscalinet.it>
* debugapp.in (appname): Fixed escaping of --args argument to work
with an alien grep / os.
2004-05-17 Richard Frith-Macdonald <rfm@gnu.org>
* Instance/Documentation/autogsdoc.make: Simplify rules. Avoid
dependency on existence of documentation subdirectory by relying on
new autogsdoc feature (it now creates the subdirectory if necessary).
This prevents possible recursion in make process.
2004-05-07 Richard Frith-Macdonald <rfm@gnu.org>
* Master/rules.make: Pass 'operation' to instances in
'GNUSTEP_OPERATION'
* Instance/Documentation/autogsdoc.make: Use 'GNUSTEP_OPERATION'
Thu Apr 29 15:54:17 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Documentation/autogsdoc.make
(GNUSTEP_INSTANCE/dependencies): Only include this file when the
operation is 'all'.
(internal-doc-clean): Do not run autogsdoc here.
(internal-doc-distclean): Rule removed. No longer needed, as the
previous changes should do the real fix.
Thu Apr 29 14:04:61 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Documentation/autogsdoc.make (internal-doc-distclean):
Added rule, to make sure a 'make distclean' actually cleans.
2004-04-27 Adam Fedor <fedor@gnu.org>
* clean_os.sh: Report netbsd1.6* and netbsd2* as netbsdelf.
Tue Apr 20 10:27:16 2004 Matt Rice <ratmice@yahoo.com>
* target.make: Use the GNU/Linux ELF code for GNU/Hurd too.
2004-04-12 Adam Fedor <fedor@gnu.org>
* common.make (GNUSTEP_FRAMEWORKS_FLAGS): Add missing close paren.
* clean_os.sh: Add netbsd1.6Z
* Documentation/GNUmakefile (GNUSTEP_TEXI2HTML_FLAGS): Add.
* Documentation/gnustep.init: Some updates.
* Documentation/announce.texi: Fix bug url.
* Documentation/gnustep-howto.texi: Add more dependancy explanations.
* Documentation/machines.texi: Add FreeBSD 5.x.
2004-04-02 David Ayers <d.ayers@inode.at>
* GNUstep-reset.sh: Unset DYLD_LIBRARY_PATH and
DYLD_FRAMEWORK_PATH.
* common.make: Mark as makefile for emacs. Add support for
setting GNUSTEP_FRAMEWORKS_DIRS and GNUSTEP_FRAMEWORKS_FLAGS
for apple-apple-apple.
* ld_lib_path.(c)sh: Set DYLD_FRAMEWORK_PATH for
apple-apple-apple.
* rules.make: Added support for GNUSTEP_FRAMEWORKS_FLAGS.
Wed Mar 31 11:46:03 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/bundle.make: Use ALL_LDFLAGS when running DLLWRAP on
windows.
* Instance/framework.make: Similar change.
* Instance/palette.make: Similar change.
Wed Mar 31 11:44:21 2004 Willem Rein Oudshoorn <woudshoo@xs4all.nl>
* Instance/library.make: Use ALL_LDFLAGS when running DLLWRAP on
windows.
2004-03-31 Richard Frith-Macdonald <rfm@gnu.org>
* Instance/Documentation/autogsdoc.make: Make doc subdirectory if
necessary.
2004-03-31 Richard Frith-Macdonald <rfm@gnu.org>
* jni.make: Add support for MacOS-X ... use the java 1.3.1 headers
fromt the JavaVM framework.
Tue Mar 30 02:44:21 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Documentation/filesystem.texi: Clarify the differences between
the Local domain and System domain, clearly state that the default
installation directory of software should be the Local domain, and
mention that the Network domain is now optional and disabled by
default. Other minor clarifications and tidyups.
Tue Mar 30 02:01:59 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Documentation/make.texi (PACKAGE_NAME, PACKAGE_VERSION): Updated
documentation.
Mon Mar 29 12:58:34 2004 Nicola Pero <n.pero@mi.flashnet.it>
* common.make (MAJOR_VERSION): Variable removed.
(MINOR_VERSION): Variable removed.
(SUBMINOR_VERSION): Variable removed.
(VERSION): Variable removed.
* Instance/framework.make (VERSION): Set VERSION from xxx_VERSION
if available. Use 0.0.1 as default.
* Instance/library.make (VERSION): Similar changes.
Mon Mar 29 12:41:58 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Master/rules.make (PACKAGE_NAME): Set it here; set it to
unnamed-package if not set.
(PACKAGE_VERSION): Set it to 0.0.1 if not set.
* Master/source-distribution.make (PACKAGE_NAME): Do not set it
here.
Mon Mar 29 12:19:38 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Version: Do not define VERSION.
Mon Mar 29 12:19:38 2004 Matt Rice <ratmice@yahoo.com>
* Master/source-distribution.make: Strip whitespaces from
PACKAGE_NAME.
2004-03-28 Richard Frith-Macdonald <rfm@gnu.org>
* Instance/Documentation/autogsdoc.make: Correct dependency
information so that documentation is regenerated when needed.
2004-03-28 David Ayers <d.ayers@inode.at>
* Documentation/make.texi: Document native-library.make.
Capitalize acronyms.
2004-03-23 David Ayers <d.ayers@inode.at>
* Documentation/make.texi: Spelling fixes.
Thu Mar 18 12:57:40 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Documentation/GNUmakefile: New file using standard gnustep-make
to build the documentation. If there is no available gnustep-make
installation, it creates a local/temporary one, and uses it.
* Documentation/GNUmakefile.in: Removed.
* Documentation/makerules.make: Removed.
* Documentation/makedoc.make: Removed.
* configure.ac: Do not generate Documentation/GNUmakefile.
* configure: Regenerated.
2004-03-17 Adam Fedor <fedor@gnu.org>
* Instance/palette.make: Link palatte to all libs on Windows
and Apple/two-level-namespaces. Similar to bundles.
(patch from Marc Ordinas i Llopis <lists@tragnarion.com>).
Mon Mar 15 13:57:50 2004 Nicola Pero <n.pero@mi.flashnet.it>
* GNUmakefile.in: Fixed installation of strip_makefiles.sh when
using a different build directory.
Thu Mar 11 18:36:59 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/gswapp.make: Rewritten to use the new
Instance/Shared/bundle.make, so that for example subprojects with
resources now should be possible.
Thu Mar 11 02:26:20 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/gswapp.make: Do not create library_paths.openapp on
Apple. ($(GNUSTEP_INSTANCE).iconheader): Rule removed.
2004-03-09 Adam Fedor <fedor@gnu.org>
* Documentation/GNUMakefile.in (GNUSTEP_TEXI2HTML_FLAGS): Add
init_file flag
* Documentation/README.MinGW: Update library locations.
Tue Mar 9 17:28:37 2004 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Make by default GNUSTEP_NETWORK_ROOT the same as
GNUSTEP_LOCAL_ROOT. This has the effect of disabling
GNUSTEP_NETWORK_ROOT by default, which is very rarely used - if
ever, and simplifying paths and flags.
* configure: Regenerated.
Tue Mar 9 17:25:16 2004 Nicola Pero <n.pero@mi.flashnet.it>
* common.make (GNUSTEP_HEADERS_DIRS, GNUSTEP_LIBRARIES_DIRS,
GNUSTEP_HEADER_FND_DIRS): Rewritten the code creating the list of
-I and -L flags to pass to the compiler and linker so that if two
GNUSTEP_XXX_ROOT are the same, the flags are added only once.
Tue Mar 9 17:21:34 2004 Nicola Pero <n.pero@mi.flashnet.it>
* common.make: Removed stale debugging statement.
Tue Mar 9 17:05:38 2004 Nicola Pero <n.pero@mi.flashnet.it>
* common.make (GNUSTEP_HEADERS_FND_DIRS): Only set these flags
when libFoundation is used. In the standard case, we no longer
add the -Ixxx/Headers/gnustep/ flags.
* library-combo.make (GNUSTEP_FND_DIR): Do not define.
* rules.make (ALL_OBJCFLAGS): Removed GNUSTEP_HEADERS_FND_FLAG.
(ALL_CFLAGS): Same change.
Tue Mar 9 16:58:50 2004 Nicola Pero <n.pero@mi.flashnet.it>
* rules.make (ALL_OBJCFLAGS): Removed GNUSTEP_HEADERS_GUI_FLAG,
which is defined nowhere.
(ALL_CFLAGS): Same change.
Mon Mar 8 13:52:43 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/application.make ($(APP_FILE)): Do not create the
library_paths.openapp file on Apple.
Mon Mar 8 13:20:38 2004 Nicola Pero <n.pero@mi.flashnet.it>
* openapp.in: On Apple, look for the executable in the new location.
* debugapp.in: On Apple, look for the executable in the new
location. Also, removed obsolete nextstep support code.
2004-03-07 Adam Fedor <fedor@gnu.org>
* Documentation/machines.texi: Updates, add URL's for README's.
Sun Mar 7 15:22:37 2004 Nicola Pero <n.pero@mi.flashnet.it>
Updated application and bundle file structure on Apple to the
latest Apple conventions.
* Instance/application.make (APP_FILE_NAME): On Apple, create it
as xxx.app/Contents/MacOS/xxx. ($(APP_FILE)): Put the
library_paths.openapp file inside xxx.app/Contents.
($(APP_DIR)/Contents/MacOS): New rule on Apple replacing the rule
to create xxx.app (GNUSTEP_STAMP_DIR): On Apple, use
xxx.app/Contents as directory in which to create the stamp.make
file. (internal-app-all_): On Apple, create the
xxx.app/Contents/MacOS directory instead of xxx.app.
* Instance/bundle.make (BUNDLE_FILE_NAME): On Apple, create it as
xxx.bundle/Contents/MacOS/xxx. (build-bundle): On Apple, depend on
creating the xxx.bundle/Contents/MacOS directory rather than the
xxx.bundle/library-combo one. (GNUSTEP_STAMP_DIR): On Apple, use
xxx.bundle/Contents as directory for stamp.make.
($(GNUSTEP_STAMP_DIR)): On Apple, updated rule for new setup.
($(BUNDLE_DIR)/Contents/MacOS): New rule on Apple replacing the
xxx.bundle/Contents one.
2004-03-4 Quentin Mathe <qmathe@club-internet.fr>
* Documentation/README.Darwin: Minor improvements.
Thu Mar 4 13:06:22 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make (xxx_DEPLOY_WITH_CURRENT_VERSION):
Variable renamed to xxx_MAKE_CURRENT_VERSION.
(update-current-symlink): New optional rule, executed only if
MAKE_CURRENT_VERSION is yes, to create the symlink from Current to
the current version.
(build-framework-dirs): Moved code into the new rule.
(xxx.framework/xxx): On Apple, build the symlink xxx.framework/xxx
to the current instance only when MAKE_CURRENT_VERSION is yes.
Thu Mar 4 12:09:27 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make (SOVERSION): Variable removed, replaced
with INTERFACE_VERSION. Made xxx_INTERFACE_VERSION available for
frameworks too exactly as it happens for libraries.
Thu Mar 4 11:36:41 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/library.make (INTERFACE_VERSION): New variable.
xxx_SOVERSION has been renamed to xxx_INTERFACE_VERSION, which
will be used consistently by frameworks too, and not only for the
.so names. Backwards compatibility code for xxx_SOVERSION
included.
Thu Mar 4 10:41:21 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/bundle.make (internal-bundle-copy_into_dir): New rule.
(.PHONY): Added internal-bundle-copy_into_dir.
* Instance/palette.make (internal-palette-copy_into_dir): New
rule. (.PHONY): Added internal-palette-copy_into_dir.
* Instance/service.make (internal-service-copy_into_dir): New
rule. (.PHONY): Added internal-service-copy_into_dir.
2004-02-28 Adam Fedor <fedor@gnu.org>
* Version 1.9.1
* Documentation/announce.texi, readme.texi, install.texi, news.texi:
Update.
2004-02-28 Quentin Mathe <qmathe@club-internet.fr>
* Documentation/README.Darwin: Update with the detailed and
complete installation process on Mac OS X And Darwin (with the
help of Nicolas Roard).
2004-02-23 Adam Fedor <fedor@gnu.org>
* user_home.c (main): Fix check for space in home dir, issue
warning if space found (Suggestion from Sheldon Gill).
Wed Feb 18 16:57:46 2004 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Removed --enable-import / --disable-import option.
* common.make (OBJCFLAGS): Do not add OBJC_NO_IMPORT.
* config.make.in (OBJC_NO_IMPORT): Removed.
* configure: Regenerated.
* Documentation/userfaq.texi: Removed mention of --enable-import.
2004-02-11 Adam Fedor <fedor@gnu.org>
* Documentation/README.Darwin: Update (from Lars Sonchocky-Helldorf).
* Documentation/GNUMakefile (GNUSTEP_TEXI2HTML_FLAGS): Add init_file
flag
* Documentation/gnustep.init: texi2html init file.
2004-02-07 Adam Fedor <fedor@gnu.org>
* Instance/framework.make: Simplify search for framework location
and change order to prevent problems in obscure case where GNUstep
is installed in user's home.
* Documentation/machines.texi (cygwin): Update link.
2004-01-25 Adam Fedor <fedor@gnu.org>
* Documentation/README.Darwin: Update.
2004-01-21 Adam Fedor <fedor@gnu.org>
* clean_os.sh: Add darwin7
* target.make (darwin/SHARED_LD_PREFLAGS): Remove -arch_only. Add
-single_module on darwin7
(darwin/DYLIB_EXTRA_FLAGS): Idem.
* Documentation/README.Darwin: New file.
2004-01-18 Adam Fedor <fedor@gnu.org>
* Documentation/gnustep-howto.texi: Add gui image libs.
* Documentation/install.texi: Update info on #import.
* Documentation/userfaq.texi: Idem.
* Documentation/machines.texi: Update Darwin compiler.
Fri Jan 16 17:01:55 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/bundle.make: Recognize xxx_INSTALL_DIR and use it if
set.
* Instance/clibrary.make: Same change.
* Instance/ctool.make: Same change.
* Instance/framework.make: Same change.
* Instance/gswbundle.make: Same change.
* Instance/java.make: Same change.
* Instance/library.make: Same change.
* Instance/objc.make: Same change.
* Instance/palette.make: Same change.
* Instance/service.make: Same change.
* Instance/tool.make: Same change.
2004-01-15 Adam Fedor <fedor@gnu.org>
* configure.ac: Add check for Apple cc
* config.make.in: Add CC_TYPE
* target.make (darwin): Use it instead of OBJC_COMPILER.
* Documentation/machines.texi: Update
Wed Jan 14 18:59:25 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Master/rpm.make: Use PACKAGE_VERSION instead of VERSION.
* Master/source-distribution.make: Use PACKAGE_VERSION instead of
VERSION.
* Master/rules.make: Set PACKAGE_VERSION from VERSION if
PACKAGE_VERSION is not set, for backwards compatibility.
Mon Jan 12 12:45:56 2004 Nicola Pero <n.pero@mi.flashnet.it>
* common.make: If a framework is being compiled with shared=no,
print a warning and use shared=yes instead.
Mon Jan 12 11:47:00 2004 Jeff Teunissen <deek@d2dc.net>,
Nicola Pero <n.pero@mi.flashnet.it>
* target.make (SHARED_LIB_LINK_CMD, AFTER_INSTALL_SHARED_LIB_CMD):
Do not remove LIB_LINK_SONAME_FILE and do not create the symlink
LIB_LINK_SONAME_FILE --> LIB_LINK_VERSION_FILE if
LIB_LINK_SONAME_FILE and LIB_LINK_VERSION_FILE are equal, which
happens for example if you use 'A' as version.
2004-01-05 David Ayers <d.ayers@inode.at>
* Instance/framework.make (internal-framework-uninstall_):
Remove symlinks in $(GNUSTEP_LIBRARIES).
Mon Jan 5 00:33:00 2004 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make (build-framework-dirs): Replaced test -L
with test -h because test -L does not work on some old Sun Solaris.
2003-12-29 Adam Fedor <fedor@gnu.org>
* Documentation/gnustep-howto.texi: Update.
* Documentation/machines.texi: Idem.
Fri Dec 26 17:40:23 2003 Nicola Pero <n.pero@mi.flashnet.it>
* debugapp.in: Iterate over command line arguments to be able to
process more than one of them at the same time. Added
--gdb=... command line flag. Documented it.
2003-11-3- Richard Frith-Macdonald <rfm@gnu.org>
* user_home.c: Use name of current user under unix (rather than
environment variables etc).
Fri Nov 28 19:07:11 2003 Nicola Pero <n.pero@mi.flashnet.it>
* rules.make (ADDITIONAL_OBJC_LIBS): Fixed bug in the
implementation of ADDITIONAL_NATIVE_LIBS on gnu.
Tue Nov 25 12:23:20 2003 Manuel Guesdon <ml@orange-concept.com>
* Instance/Shared/bundle.make
(shared-instance-bundle-all-localized-webresources): Fixed syntax
error.
2003-11-13 David Ayers <d.ayers@inode.at>
* Instance/framework.make: Remove symlink.
Sat Nov 8 22:41:03 2003 Nicola Pero <n.pero@mi.flashnet.it>
* target.make: Use $(ALL_LDFLAGS) when linking shared stuff.
Otherwise there is no way to add linker flags when libraries and
frameworks are linked. Change applied to all shared link commands
on all platforms.
Sat Nov 8 16:40:59 2003 Matt Rice <ratmice@yahoo.com>
* Documentation/DESIGN: Updated makefiles location.
* Documentation/README.MinGW: Updated makefiles location. Added
comment on buggy 'ln -s' on mingw.
* Documentation/README.Cygwin: Updated makefiles location.
* Documentation/README.NetBSD: Updated makefiles location.
* Documentation/install.texi: Updated makefiles location.
* Documentation/machines.texi: Updated makefiles location.
* Documentation/make.texi: Updated makefiles location, use
GNUSTEP_MAKEFILES variable.
Mon Nov 3 23:48:41 2003 Marcus Muller <znek@mulle-kybernetik.com>
* target.make (SHARED_LIB_LINK_CMD): Use -prebind flag on Apple.
* Instance/framework.make (DYLIB_INSTALL_NAME_BASE): New variable.
(LIB_LINK_INSTALL_NAME): Define using DYLIB_INSTALL_NAME_BASE if
it was set.
Mon Nov 3 23:34:56 2003 Nicola Pero <n.pero@mi.flashnet.it>
* rules.make (ADDITIONAL_INCLUDE_DIRS): Do not add -framework
flags from ADDITIONAL_NATIVE_LIBS.
Mon Nov 3 23:30:47 2003 Marcus Muller <znek@mulle-kybernetik.com>
* library-combo.make (INTERNAL_OBJCFLAGS): Do not add -framework
Foundation and -framework AppKit for Apple.
Mon Nov 3 23:25:07 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make (build-framework): Do not build
Info-gnustep.plist on Apple.
Mon Nov 3 11:50:30 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make (FRAMEWORK_LIBRARY_FILE_EXT): Unused
variable removed.
* Instance/framework.make (FRAMEWORK_FILE_EXT): Unused variable
removed.
Fri Oct 31 17:16:51 2003 Matt Rice <ratmice@yahoo.com>
* config.make.in (HAS_LN_S): Set to no for mingw32.
2003-10-25 00:50 Alexander Malmberg <alexander@malmberg.org>
* debugapp.in: Only pass --args to gdb if its new enough to handle
it. Based on patch from Ian Jones.
Fri Oct 24 15:54:41 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Documentation/texi.make (internal-doc-clean): Remove
$(GNUSTEP_INSTANCE).html.
2003-10-20 Adam Fedor <fedor@gnu.org>
* configure.ac: Add 2.57 prereq, subst OBJCFLAGS
* config.make.in (OBJCFLAGS): New
Mon Oct 20 15:02:22 2003 Nicola Pero <n.pero@mi.flashnet.it>
* cpu.sh: Simplified code by removing unused echo command.
* os.sh: Same change.
* vendor.sh: Same change.
Mon Oct 20 14:49:03 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make (internal-framework-distclean): Delete
from GNUSTEP_BUILD_DIR.
Mon Oct 20 14:44:57 2003 Nicola Pero <n.pero@mi.flashnet.it>
Write the list of classes belonging to a framework into the
framework's Info-gnustep.plist too.
* Instance/framework.make (DUMMY_FRAMEWORK_CLASS_LIST): New
variable.
($(DUMMY_FRAMEWORK_FILE)): Build a classarray list of classes in
the framework, and store it in $DUMMY_FRAMEWORK_CLASS_LIST.
(Info-gnustep.plist): Add a Classes key/value. Depend on
DUMMY_FRAMEWORK_FILE.
2003-10-19 Adam Fedor <fedor@gnu.org>
* Documentation/gnustep-howto.texi: Updates, clearer instructions.
* Documenation/machines.texi, Documentation/userfaq.texi: Idem.
Sun Oct 19 16:09:46 2003 Nicola Pero <n.pero@mi.flashnet.it>
* native-library.make: New file.
* GNUmakefile.in: Install native-library.make.
* Instance/rules.make (ADDITIONAL_NATIVE_LIBS): Set from
xxx_NATIVE_LIBS.
* rules.make: Implemented ADDITIONAL_NATIVE_LIBS.
Sun Oct 19 15:43:50 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/library.make (LIBRARY_NAME_WITH_LIB): New variable.
Use it in place of GNUSTEP_INSTANCE whenever lib{library-name} is
expected. With this change, LIBRARY_NAME can now include or not
the 'lib' prefix, and everything should work in both cases.
Wed Oct 15 17:02:30 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Master/tool.make (internal-distclean): Fixed typo causing it not
to work.
* Master/test-tool.make (internal-distclean): Same change.
Wed Oct 15 10:55:58 2003 Nicola Pero <n.pero@mi.flashnet.it>
* configure: Regenerated using autoconf 2.57 instead of 2.53.
2003-10-14 Adam Fedor <fedor@gnu.org>
* common.make: Simplify common GNUstep dirs.
Tue Oct 14 01:07:22 2003 Nicola Pero <n.pero@mi.flashnet.it>
Implemented support for building in a build directory outside the
source tree. Not supported for Java and doc yet.
* common.make (GNUSTEP_BUILD_DIR): New variable.
(GNUSTEP_OBJ_DIR_NAME): New variable.
(GNUSTEP_OBJ_DIR): Define using GNUSTEP_BUILD_DIR.
* rules.make (DERIVED_SOURCES_DIR): New variable.
(DERIVED_SOURCES_HEADERS_FLAG): Check using
OWNING_PROJECT_HEADER_DIR_NAME instead of
OWNING_PROJECT_HEADER_DIR.
($(GNUSTEP_BUILD_DIR)): New rule to create GNUSTEP_BUILD_DIR.
($(GNUSTEP_OBJ_DIR)): Modified the rule to create
GNUSTEP_OBJ_DIR_NAME inside GNUSTEP_BUILD_DIR.
* Master/aggregate.make: Pass GNUSTEP_BUILD_DIR to submake
invocations.
* Master/rules.make (all): Depend on creating GNUSTEP_BUILD_DIR
if any is specified.
(ABS_GNUSTEP_BUILD_DIR): New variable - compute if needed.
(%.variables, %.subprojects): Pass GNUSTEP_BUILD_DIR to submake
invocations; pass OWNING_PROJECT_DIR_NAME rather than
OWNING_PROJECT_DIR to submake invocations.
* Master/application.make: Modified all clean targets to clean
in GNUSTEP_BUILD_DIR.
* Master/bundle.make: The same.
* Master/clibrary.make: The same.
* Master/ctool.make: The same.
* Master/gswapp.make: The same.
* Master/gswbundle.make: The same.
* Master/library.make: The same.
* Master/objc.make: The same.
* Master/palette.make: The same.
* Master/rules.make: The same.
* Master/service.make: The same.
* Master/subproject.make: The same.
* Master/test-application.make: The same.
* Master/test-library.make: The same.
* Master/test-tool.make: The same.
* Master/tool.make: The same.
* Instance/application.make: Modified all code as required to
implement the new functionality.
* Instance/bundle.make: The same.
* Instance/framework.make: The same.
* Instance/gswapp.make: The same.
* Instance/gswbundle.make: The same.
* Instance/library.make: The same.
* Instance/palette.make: The same.
* Instance/rules.make: The same.
* Instance/service.make: The same.
* Instance/Shared/bundle.make: The same.
Tue Oct 14 00:34:57 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/library.make (DERIVED_SOURCES): Do not define here;
it's already defined in rules.make.
Mon Oct 13 23:23:40 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/bundle.make (internal-bundle-install_): Fixed error
when installing with strip=yes a bundle without object file.
Mon Oct 13 15:53:43 2003 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Added configure option --enable-strip-makefiles;
substitute @GNUSTEP_STRIP_MAKEFILES@ in output.
* configure: Regenerated.
* GNUmakefile.in (install): Install strip_makefiles.sh;
execute it if --enable-strip-makefiles.
* strip_makefiles.sh: New file.
Mon Oct 13 15:07:53 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Shared/java.make (.PHONY): Removed line continuation in
excess.
Mon Oct 13 13:56:00 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/palette.make: Tidied up the way in which code was
commented.
Mon Oct 13 13:09:53 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Master/application.make (internal-clean): Do the entire
clean in a single shell command.
* Master/gswapp.make (internal-clean): Same change.
* Master/palette.make (internal-clean): Same change.
* Master/service.make (internal-clean): Same change.
* Master/test-application.make (internal-clean): Same change.
Mon Oct 13 12:55:50 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Master/application.make (internal-distclean): Do not remove
.iconheader files, no longer used.
* Master/gswapp.make (internal-clean, internal-distclean): Do not
remove .iconheader files.
(internal-clean): Obsolete code removed.
* Master/service.make (internal-clean): Same changes.
* Master/test-application.make (internal-clean,
internal-disclean): Same changes.
* Instance/gswapp.make: Removed obsolete iconheader code.
Mon Oct 13 12:25:50 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Master/palette.make (internal-clean): Remove objects inside
.palette on clean.
(internal-distclean): Remove *.palette and similar on distclean
without performing a recursive make invocation.
* Instance/palette.make (internal-palette-distclean_): Removed.
* Master/service.make (internal-distclean): Remove *.service and
similar on distclean without performing a recursive make
invocation.
* Instance/service.make (internal-service-distclean_): Removed.
Sun Oct 12 18:43:20 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/subproject.make (internal-subproject-clean): Fixed typo
- it was removing non-existing DLL_DEF_IMP instead of DLL_DEF_INP.
Sun Oct 12 18:29:49 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/palette.make: Use Instance/Shared/bundle.make to
install and uninstall.
* Instance/service.make: Same changes.
Sun Oct 12 13:09:12 2003 Nicola Pero <n.pero@mi.flashnet.it>
* rules.make ($(GNUSTEP_OBJ_DIR)): Use ECHO_NOTHING.
2003-10-09 Adam Fedor <fedor@gnu.org>
* Correct problem where *bsd lib flags were not getting used.
* configure.ac: Use LIB_DIR not LDFLAGS
* config.make.in (CONFIG_SYSTEM_LIB_DIR): New var for LIB_DIRs
* library-combo.make (SYSTEM_LIB_DIR): Use it.
2003-10-05 Adam Fedor <fedor@gnu.org>
* Version: Bump to 1.8.90
2003-10-04 Adam Fedor <fedor@gnu.org>
* GNUmakefile.in (dist): Remove
* Documentation/machines.texi: Doc updates.
* Documentation/faq.texi, Documentattion/userfaq.texi: Idem.
2003-09-29 Adam Fedor <fedor@gnu.org>
* Simplify use of user-defined flags.
* configure.ac: USE LDFLAGS not LIBS. Leave CPPFLAGS alone
* common.make (INTERNAL_LDFLAGS): Don't add LDFLAGS
* library-combo.make (SYSTEM_LDFLAGS): Add LDFLAGS.
* config.make.in (CONFIG_SYSTEM_DEFS): Remove.
* Documentation/faq.texi: Update answers.
2003-09-27 Adam Fedor <fedor@gnu.org>
* target.make (darwin/BUNDLE_LDFLAGS): Supress warnings
* Documentation/machines.texi: Update darwin.
2003-09-26 Adam Fedor <fedor@gnu.org>
* Version 1.8.0 released on branch.
2003-09-25 Adam Fedor <fedor@gnu.org>
* target.make (darwin): Fix up bundle flags for GNU compiler.
2003-09-19 Leigh Smith <leigh@leighsmith.com>
* library.make: Changed the full .inp declaration to $(DLL_DEF_INP).
2003-09-15 Adam Fedor <fedor@gnu.org>
* Version: Add VERSION
* gnustep-make.spec.in: Update packager.
Sun Sep 7 12:43:59 2003 Nicola Pero <n.pero@mi.flashnet.it>
* config.site: Fixed Headers directory, it is now in Library/.
Wed Sep 3 10:29:26 2003 Matt Rice <ratmice@yahoo.com>,
Nicola Pero <n.pero@mi.flashnet.it>
* Instance/library.make: Removed ADDITIONAL_INSTALL_DIRS code.
* Instance/rules.make: Implemented support for
ADDITIONAL_INSTALL_DIRS.
* common.make (GNUSTEP_APPLICATION_SUPPORT): New variable.
2003-08-23 Adam Fedor <fedor@gnu.org>
* Version 1.7.3
2003-08-22 Adam Fedor <fedor@gnu.org>
* configure.ac: On netbsd, Use -Wl to pass linker options.
2003-08-05 Martin Brecher <martin@mb-itconsulting.com>
* Documentation/openapp.1: New file.
* Documentation/GNUstep.7: Updated. File is now unprocessed.
2003-08-07 Richard Frith-Macdonald <rfm@gnu.org>
* Instance/Documentation/autogsdoc.make: Rewrite dependency rules
to avoid regeneration of documentation when we are going to clean.
Also, use autogsdoc -Clean argument to get all files.
Wed Jul 30 09:52:16 2003 Nicola Pero <n.pero@mi.flashnet.it>
* target.make (BUNDLE_LDFLAGS): openbsd: use -fPIC instead of
-fpic to match the -fPIC flag used when compiling as recommended
by the gcc manual.
Tue Jul 29 12:06:02 2003 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: If flattened, add library combo to headers
directory.
* configure: Regenerated.
* config.site (includedir): If flattened, add library combo.
* GNUmakefile.in (MAYBE_LIBRARY_COMBO): Define.
Export GNUSTEP_TARGET_DIR, GNUSTEP_TARGET_LDIR and
MAYBE_LIBRARY_COMBO.
* create_domain_dir_tree.sh: Use MAYBE_LIBRARY_COMBO when creating
the headers dir.
* common.make (GNUSTEP_HEADERS): Define using library combo if
not flattened.
(GNUSTEP_HEADERS_DIRS): Use library combo if not flattened.
Mon Jul 28 11:49:18 2003 Pete French <pete@twisted.org.uk>
* Instance/application.make (MAIN_MARKUP_FILE): New variable.
* Instance/application.make (GNUSTEP_STAMP_STRING): Include
MAIN_MARKUP_FILE in the stamp string.
* Instance/application.make ($(APP_INFO_PLIST_FILE)): Set
GSMarkupMainFile to MAIN_MARKUP_FILE in the info dictionary.
Mon Jul 28 10:59:21 2003 Pete French <pete@twisted.org.uk>
* rules.make (%.plist): Filter the result through sed to drop #pragma
statements.
2003-07-23 Richard Frith-Macdonald <rfm@gnu.org>
* Instance/Documentation/autogsdoc.make: put stamp file in
documentation subdirectory so it gets removed properly with 'clean'
2003-07-22 Adam Fedor <fedor@gnu.org>
* Version 1.7.2
2003-07-22 Richard Frith-Macdonald <rfm@gnu.org>
* user_home.c: Use HOMEPATH in preference to USERPROFILE for
OPENSTEP compatibility and because USERPROFILE generally doesn't
work due to the presence of spaces.
* messages.make: Make documentation generation less verbose.
* Instance/Documentation/autogsdoc.make: ditto
Also use autogsdoc -MakeDependencies to avoid unnecessary
regeneration of documentation.
2003-07-21 Adam Fedor <fedor@gnu.org>
* target.make: Set thread library in AUXILIARY_OBJC_LIBS. Set
reentrant flags for all targets if threaded. Remove duplicates.
* Documentation/README.MinGW: Updated for default flattened
structure.
* Documentation/gnustep-howto.texi: Idem.
Mon Jul 21 10:42:42 2003 Nicola Pero <n.pero@mi.flashnet.it>
* debugapp.in: Detect core files with name core.xxx, not just
core, as found on some gnu-linux systems. Improved user
prompting.
Mon Jul 21 10:31:08 2003 Andrew Ruder <aeruder@ksu.edu>
* debugapp.in: Pass debugapp arguments to gdb to use when running
the application.
Wed Jul 16 09:46:16 2003 Nicola Pero <n.pero@mi.flashnet.it>
* target.make (INTERNAL_OBJCFLAGS): On darwin with library-combo
apple-apple-apple, use -no-cpp-precomp rather than
-traditional-cpp.
Wed Jul 9 16:28:14 2003 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Made flattened directory structure the default.
Explicitly print a message saying if we use flattened or
non-flattened directory structure.
* configure: Regenerated.
2003-07-06 Adam Fedor <fedor@gnu.org>
* configure.ac: Remove '^' match from gcc version sed script.
2003-07-05 Adam Fedor <fedor@gnu.org>
* configure.ac: Add flags for openbsd like freebsd.
2003-07-05 Adam Fedor <fedor@gnu.org>
* Documentation/GNUmakefile.in (after-install): gzip man files
* Documentation/GNUstep.7: Unziped.
2003-07-05 Adam Fedor <fedor@gnu.org>
* clean_os.sh: Clean netbsdelf.
* configure.ac: Add -R flags for netbsdelf
* target.make (netbsd/ADDITONAL_LDFLAGS): Idem.
(Patches from Peter Cooper <comrade@obverse.com.au>
2003-06-29 Richard Frith-Macdonald <rfm@gnu.org>
* user_home.c: Cast all arguments to isspace() as int ... for picky
compiler versions.
2003-06-25 Adam Fedor <fedor@gnu.org>
* Documentation/GNUmakefile.in (after-install): Install man pages
* Documentation/GNUstep.7.gz: New file (from Martin Brecher).
Wed Jun 25 15:47:46 2003 Tom Koelman <tkoelman@xs4all.nl>
* Instance/subproject.make (subproject.def): Depend on DLL_DEF_INP.
2003-06-21 Adam Fedor <fedor@gnu.org>
* Instance/Documentation/autogsdoc.make: If not BASE_MAKE_LOADED
print a better error message about needing to install GNUstep-base
first.
2003-06-20 Adam Fedor <fedor@gnu.org>
* Version 1.7.1
2003-06-18 Adam Fedor <fedor@gnu.org>
* target.make (openbsd): Enable shared libs, use -fPIC not -fpic.
2003-06-17 Adam Fedor <fedor@gnu.org>
* Instance/Documentation/texi.make: Don't abort make if
texi programs aren't available. Don't install if files not made.
2003-06-16 Adam Fedor <fedor@gnu.org>
* configure.ac: Add option to disable moving obsolete dirs
* GNUmakefile.in: Update for change.
2003-06-15 Adam Fedor <fedor@gnu.org>
* target.make (openbsd/SHARED_LIB_LINK_CMD): Use gcc to link
the library.
2003-06-11 Adam Fedor <fedor@gnu.org>
* move_obsolete_paths.sh: Don't remove the Developer dir.
2003-06-06 Adam Fedor <fedor@gnu.org>
* target.make (openbsd/OBJ_MERGE_CMD): Add.
2003-06-05 Adam Fedor <fedor@gnu.org>
* config_thread.m: More complete thread test.
* configure.ac: Add runtime based on RUNTIME_LIB
2003-06-03 Adam Fedor <fedor@gnu.org>
* target.make (darwin/BUNDLE_LD): Use libtool
(darwin/AFTER_INSTALL_SHARED_LIB_CMD): Link to the LIB_LINK_FILE
as well.
Tue Jun 3 11:51:02 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Documentation/autogsdoc.make (internal-doc-install_):
Fixed typo - added missing ";".
2003-06-02 18:16 Alexander Malmberg <alexander@malmberg.org>
* Instance/Documentation/autogsdoc.make (internal-doc-install_):
Add a missing "\" line continuation.
(internal-doc-uninstall_): Add an $(END_ECHO) to balance the
echoing.
Mon Jun 2 10:21:11 2003 Nicola Pero <n.pero@mi.flashnet.it>
* GNUmakefile.in (install): Only create the symlink Makefiles -->
Library/Makefiles if symbolic links are available. (Problems
reported by Matt Rice).
Sat May 31 09:13:07 2003 Matt Rice <ratmice@yahoo.com>,
David Ayers <d.ayers@inode.at>
* Instance/gswapp.make (internal-gswapp-install_): Fixed typo:
removed excess bracket.
Fri May 30 23:28:55 2003 Nicola Pero <n.pero@mi.flashnet.it>
* common.make (OBJC_FLAGS): Added -fno-strict-aliasing.
2003-05-29 Adam Fedor <fedor@gnu.org>
* target.make (TARGET_SYSTEM_LIBS): Remove -ldl (added when necessary
by gnustep-base).
Wed May 28 09:47:42 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make: Use test -r instead of test -f to check
that a file, which might be a symlink, exists.
* Instance/framework.make (internal-framework-install_): Always remove
the old symlinks without checking.
Tue May 27 16:52:27 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Documentation/javadoc.make (internal-doc-install_): Fixed line breaking
typo.
Tue May 27 13:21:57 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/objc.make: Remove old deprecation warning.
* Instance/tool.make: The same.
Tue May 27 13:12:59 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/application.make: Use ECHO_NOTHING in commands which
were using @ or printing the command.
* Instance/documentation.make: The same.
* Instance/framework.make: The same.
* Instance/gswapp.make: The same.
* Instance/java-tool.make: The same.
* Instance/library.make: The same.
* Instance/palette.make: The same.
* Instance/resource-set.make: The same.
* Instance/service.make: The same.
* Instance/subproject.make: The same.
* Instance/Documentation/autogsdoc.make: The same.
* Instance/Documentation/gsdoc.make: The same.
* Instance/Documentation/javadoc.make: The same.
* Instance/Documentation/latex.make: The same.
* Instance/Documentation/texi.make: The same.
* Instance/Shared/java.make: The same.
* Instance/ctool.make (internal-ctool-uninstall_): Use ECHO_UNINSTALLING.
* Instance/document.make (internal-textdoc-uninstall_): The same.
* Instance/framework.make (internal-framework-uninstall_): The same.
* Instance/gswapp.make (internal-gswapp-uninstall_): The same.
* Instance/gswbundle.make (internal-gswbundle-uninstall_): The same.
* Instance/java-tool.make (internal-java_tool-uninstall_): The same.
* Instance/library.make (internal-library-uninstall_): The same.
* Instance/objc.make (internal-objc-uninstall_): The same.
* Instance/service.make (internal-service-uninstall_): The same.
* Instance/Documentation/autogsdoc.make (internal-doc-uninstall_): The same.
* Instance/Documentation/gsdoc.make (internal-doc-uninstall_): The same.
* Instance/Documentation/install_files.make (internal-doc-uninstall_): The same.
* Instance/Documentation/javadoc.make (internal-doc-uninstall_): The same.
* Instance/Documentation/latex.make (internal-doc-uninstall_): The same.
* Instance/gswbundle.make (internal-gswbundle-install_): Use ECHO_INSTALLING.
* Instance/Documentation/autogsdoc.make (internal-doc-install_): The same.
* Instance/Documentation/gsdoc.make (internal-doc-install_): The same.
* Instance/Documentation/install_files.make (internal-doc-install_): The same.
* Instance/Documentation/javadoc.make (internal-doc-install_): The same.
* Instance/gswapp.make: Use ECHO_CREATING when building the
various files.
* Instance/subproject.make: Use ECHO_CREATING when building the
DLL_DEF_INP file.
Tue May 27 12:04:38 2003 Nicola Pero <n.pero@mi.flashnet.it>
* messages.make (ECHO_CHOWNING, ECHO_STRIPPING): New variables.
* Instance/service.make (internal-service-install_):
* Instance/application.make: Use them.
* Instance/bundle.make: Use them.
* Instance/framework.make: Use them.
* Instance/gswapp.make: Use them.
* Instance/gswbundle.make: Use them.
* Instance/java-tool.make: Use them.
* Instance/palette.make: Use them.
* Instance/service.make: Use them.
* Instance/Shared/bundle.make: Use them.
* Instance/Documentation/autogsdoc.make: Use them.
* Instance/Documentation/javadoc.make: Use them.
Tue May 27 11:45:41 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make (build-framework-dirs): Merge contiguous
commands into single subshell.
Tue May 27 11:36:06 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/application.make: Use ECHO_CREATING when building the
.plist files.
* Instance/bundle.make: Same
* Instance/framework.make: Same.
* Instance/gswbundle.make: Same.
* Instance/palette.make: Same.
* Instance/service.make: Same.
* Instance/application.make: Use ECHO_CREATING when building the
.desktop file.
* Instance/framework.make ($(DUMMY_FRAMEWORK_FILE)): Use
ECHO_CREATING when building the internal framework class file.
Tue May 27 11:22:44 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/application.make: Use ECHO_CREATING when running MKDIRS
or MKINSTALLDIRS.
* Instance/bundle.make: The same.
* Instance/ctool.make: The same.
* Instance/documentation.make: The same.
* Instance/framework.make: The same.
* Instance/gswapp.make: The same.
* Instance/gsbundle.make: The same.
* Instance/library.make: The same.
* Instance/objc.make: The same.
* Instance/palette.make: The same.
* Instance/resource-set.make: The same.
* Instance/rules.make: The same.
* Instance/service.make: The same.
* Instance/subproject.make: The same.
* Instance/test-library.make: The same.
* Instance/tool.make: The same.
* Instance/Documentation/autogsdoc.make: The same.
* Instance/Documentation/texi.make: The same.
* Instance/gswapp.make (internal-gswapp-install_): Use ECHO_INSTALLING.
Tue May 27 11:08:52 2003 Nicola Pero <n.pero@mi.flashnet.it>
* messages.make (ECHO_UNINSTALLING): New variable.
(ECHO_PREPROCESSING): Added missing definition in case
messages=yes.
Tue May 27 11:00:59 2003 Nicola Pero <n.pero@mi.flashnet.it>
* messages.make (ECHO_CREATING, ECHO_NOTHING): New variables.
* Instance/Shared/bundle.make: Use them.
* Instance/Shared/headers.make: Same.
* Instance/Shared/java.make: Same.
* Instance/Shared/stamp-string.make: Same.
Tue May 27 10:54:36 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/ctool.make: Old deprecation warning removed.
Tue May 27 10:02:46 2003 Nicola Pero <n.pero@mi.flashnet.it>
* relative_path.sh: Added code to normalize input paths by
removing /./ components before using them.
2003-05-19 Adam Fedor <fedor@gnu.org>
* Version 1.7.0
* Documentation/news.texi: Updated
* configure.ac: On some systems, check for thread libraries
in different order.
Thu May 15 10:30:55 2003 Nicola Pero <n.pero@mi.flashnet.it>
* GNUmakefile.in (generated-files): Added fixpath.sh.
(fixpath.sh): New rule.
Wed May 14 16:19:02 2003 Nicola Pero <n.pero@mi.flashnet.it>
* transform_paths.sh: Quote paths.
Wed May 14 16:15:16 2003 Nicola Pero <n.pero@mi.flashnet.it>
* debugapp.in: Added more strict quoting of paths everywhere.
* executable.template.in: Idem.
* openapp.in: Idem.
* opentool.in: Idem.
Fri May 9 12:22:24 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Documentation/install.texi (Flat Structure): Fixed typo.
(Reported by Lele Gaifax <lele@seldati.it>).
Tue May 6 11:30:19 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Shared/bundle.make (shared-instance-bundle-all):
Reverted last change for resource files, but not localized
resource files.
Mon May 5 00:52:20 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Shared/bundle.make (shared-instance-bundle-all): Fixed
copying resource files and localized resource files into the
bundle when they are in subdirs.
2003-05-02 Adam Fedor <fedor@gnu.org>
* common.make (GNUSTEP_PALLETES): Put in ApplicationSupport/Palettes
* move_obsolete_paths.sh: Remove Developer dir.
* Documentat/GNUmakefile.in: Install docs in Library/Documentation
2003-04-28 Nicola Pero <nicola@nicola.brainstorm.co.uk>
* Instance/resource-set.make (RESOURCE_FILES_FULL_INSTALL_DIR): Reverted
last change. This file is of general use, not just for libraries.
2003-04-27 Adam Fedor <fedor@gnu.org>
* New filesystem structure.
Use @MAKEFILE_SUFFIX@ instead of Makefiles.
Replace $GNUSTEP_SYSTEM_ROOT/Makefiles with $GNUSTEP_MAKEFILES
Replace Libraries with Library/Libraries
Replace Headers with Library/Headers
Replace Documentation with Library/Documentation
* GNUmakefile.in, GNustep.csh.in, common.make, config.site,
debugapp.in, executable.template.in, gnustep-make.spec.in,
java-executable.template, ld_lib_path.csh, ld_lib_path.sh,
opentool.in, relative_path.sh, setlocaltz.sh,
spec-debug-alone-rules.template, spec-debug-rules.template,
spec-rules.template, target.make, which_lib.c, gswbundle.make,
java.make, test-library.make: Idem.
* configure.ac (MAKEFILES_SUFFIX): Define to Library/Makefiles
* create_domain_dir_tree.sh: Add additional Library dirs.
* resource-set.make (RESOURCE_FILES_FULL_INSTALL_DIR): Use
$(GNUSTEP_RESOURCES), not $(GNUSTEP_INSTALLATION_DIR).
* move_obsolete_paths.sh: New file used in installation
Fri Apr 25 17:02:55 2003 Nicola Pero <n.pero@mi.flashnet.it>
* GNUstep.csh.in: Use the grep -v trick to make sure that
GUILE_LOAD_PATH is not increased if the paths to add are already
there in the variable.
* ld_lib_path.csh: Similar change/fix for all paths.
2003-04-24 Adam Fedor <fedor@gnu.org>
* Documentation/filesystem.texi: Clarify Local installation
rights, Remove Network/{Server,Users}.
Wed Apr 23 09:18:07 2003 Nicola Pero <n.pero@mi.flashnet.it>
* config.make.in (CPP): Added. (GENERAL_CPP): Removed.
* rules.make (ALL_CPLISTFLAGS): Added -x c -traditional.
(%.plist): Use CPP, not GENERAL_CPP.
Tue Apr 22 16:11:14 2003 Nicola Pero <n.pero@mi.flashnet.it>
* rules.make (%.c): New rules to generate .c files from .l files
using lex and from .y files using yacc.
Tue Apr 22 15:27:02 2003 Nicola Pero <n.pero@mi.flashnet.it>
* GNUstep.csh.in: Quote all values of setenv, set, source calls.
Mon Apr 14 12:59:23 2003 Nicola Pero <n.pero@mi.flashnet.it>
Implemented support for preprocessed Info.plists in applications.
* config.make.in (GENERAL_CPP): New variable.
* rules.make (ALL_CPLISTFLAGS): New flags.
(%.plist): Added rule to generate %.plist from %.cplist by running
the preprocessor.
* messages.make (ECHO_PREPROCESSING): New message.
* Instance/application.make: If xxx_PREPROCESS_INFO_PLIST is set
to yes in the user makefile, automatically depend on
xxxInfo.plist, which is then automatically generated from
xxxInfo.cplist.
* Master/application.make (_PLIST_INFO_FILES): New variable.
(internal-clean): Remove info plist files generated by the
preprocessor.
Fri Apr 11 12:38:44 2003 Nicola Pero <n.pero@mi.flashnet.it>
* GNUmakefile.in (install): Bug fix - install fixpath.sh from the
local directory, not from the source directory.
Sun Apr 6 02:25:07 2003 Nicola Pero <n.pero@mi.flashnet.it>
* GNUmakefile.in (install): Bug fix - install GNUstep-reset.sh
from the source directory, not from the local directory.
Mon Mar 31 18:43:07 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make (build-framework-dirs): Do not create
the symlink from inside derived_src to the headers if there are no
headers; remove the file before creating the symlink.
2003-03-23 Richard Frith-Macdonald <rfm@gnu.org>
* Merged 1.6.0 branch changes in
Mon Mar 10 12:51:20 2003 Nicola Pero <n.pero@mi.flashnet.it>
* rules.make: Disable all built-in SUFFIXES and all built-in rules
with a % target -- for performance.
Wed Feb 26 18:34:37 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/application.make ($(APP_INFO_PLIST_FILE)): Implemented
merging the xxxInfo.plist into Info.plist on Apple. Use
CFBundleIconFile, and not NSIcon, on Apple. Quote full path of
xxxInfo.plist file.
2003-03-17 Adam Fedor <fedor@gnu.org>
* Version: 1.6.0
2003-03-14 Adam Fedor <fedor@gnu.org>
* configure.ac: Check for -lpthread on unknown hosts (e.g. irix)
* target.make (darwin): Add -read_only_reolcs warning.
(darwin5): Remove
* Documentation/machines.texi: Update Darwin.
(suggestions from Carl Eugen Hoyos)
2003-03-13 Adam Fedor <fedor@gnu.org>
* clean_cpu.sh: Make all hppa variants the same.
(suggestion from Matthias Klose)
2003-03-04 Adam Fedor <fedor@gnu.org>
* configure.ac: Change sense of --disable-import help line
* configure: Regen.
* Documentation/install.texi: Update import section
* Documentation/userfaq.texi: Add import section.
Tue Mar 4 17:13:46 2003 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Enable GCC deprecation warnings for #import.
* configure: Regenerated.
2003-03-03 iMartin Brecher <martin@mb-itconsulting.com>
* Documentation/README.MinGW: Tidied
Some modifiecations by rfm@gnu.org also ... mainly to change the
order of build/install of libobjc and ffcall
2003-02-23 Richard Frith-Macdonald <rfm@gnu.org>
* user_home.c: fix HOMEPATH and HOMEDRIVE handling for mingw to
only use the drive if there isn't one in the path.
2003-02-17 Tom Koelman <tkoelman@xs4all.nl>
* Documentation/README.MingW: Update URLs.
2003-02-16 Adam Fedor <fedor@gnu.org>
* Version: 1.5.2
* Documentation/announce.texi, news.texi, install.texi: Update
2003-02-14 Adam Fedor <fedor@gnu.org>
* target.make (Darwin/SHARED_LIBRARY_LINK_CMD): Include object files
before library depends.
* Documentation/gnustep-howto.texi, install.texi: Updates.
Mon Feb 10 13:42:54 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Master/source-distribution.make: Define a CVS variable, and use
it in place of `cvs', so that it can be overridden with a
different value (example: make cvs-snapshot CVS='runsocks cvs').
2003-02-06 Richard Frith-Macdonald <rfm@gnu.org>
* Instance/subproject.make: Build dll exported symbols def file.
Remove temporary def file on clean.
* Instance/rules.make: Make list of subproject def files (thanks Nicola)
* Instance/library.make: Use list of subproject def files to put
symbols from subprojects into final dll output.
Wed Feb 5 04:07:05 2003 Nicola Pero <n.pero@mi.flashnet.it>
* library-combo.make (BUNDLE_LIBS): For apple library-combo,
do not add -framework Foundation and -framework AppKit.
* Instance/bundle.make: Link bundle to all libs on Apple so
that it can be made to work with two-level namespaces.
Fri Jan 31 01:20:59 2003 Nicola Pero <n.pero@mi.flashnet.it>
* openapp.in: Added new option --find. Calling 'openapp --find
Ink' will search for the Ink application as usual, but then only
print out the full path of the application instead of executing
it. Replaced `basename $0` with openapp in messages. Do not talk
of unimplemented --library-combo option in messages.
Thu Jan 30 17:32:37 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Documentation/gsdoc.make: Use autogsdoc, not gsdoc, to
compile gsdoc files. gsdoc is not even installed in the latest
gnustep-base.
Sun Jan 26 04:54:09 2003 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: New --enable-multi-platform option, off by
default. Substitute GNUSTEP_MULTI_PLATFORM and target when
processing .in files.
* configure: Regenereated.
* GNUstep.sh.in: If GNUSTEP_MULTI_PLATFORM is empty, use hardcoded
GNUSTEP_HOST, GNUSTEP_HOST_OS, GNUSTEP_HOST_CPU,
GNUSTEP_HOST_VENDOR as provided by configure.
* GNUstep.csh.in: Idem.
Fri Jan 10 05:48:06 GMT 2003 Nicola Pero <n.pero@mi.flashnet.it>
* target.make (INTERNAL_CFLAGS): On darwin, apple foundation, add
-no-cpp-precomp.
2003-01-09 Richard Frith-Macdonald <rfm@gnu.org>
* Documentation/README.MinGW: Updated for current cod, fixing a few
errors.
* user_home.c: Fixed typo.
2003-01-03 Richard Frith-Macdonald <rfm@gnu.org>
* common.make: Don't use RUNTIME_FLAG for plain C code, just for ObjC
Fri Jan 3 01:57:46 2003 Nicola Pero <n.pero@mi.flashnet.it>
* create_domain_dir_tree.sh (mydir): Replaced dirname invocation
with a sed trick. Apparently dirname is not available on OpenStep
(reported by Pete French <pete@twisted.org.uk>).
Tue Dec 31 16:10:49 2002 Nicola Pero <n.pero@mi.flashnet.it>
* target.make: For darwin: link to LIB_LINK_SONAME_FILE, not to
LIB_LINK_INSTALL_NAME, so that it works when building frameworks.
2002-12-30 Adam Fedor <fedor@gnu.org>
* ld_lib_path.sh: Use DYLD_LIBRARY_PATH on darwin
* ld_lib_path.csh: Idem.
* target.make (darwin): Don't set DYLIB_COMPATIBILITY_VERSION,
set DYLIB_CURRENT_VERSION correctly, link to LIB_LINK_INSTALL_NAME.
Mon Dec 30 16:38:16 2002 Nicola Pero <n.pero@mi.flashnet.it>
A new library-combo apple-apple-apple has been added, and made the
default on Apple OSX systems.
* library-combo.make (OBJC_RUNTIME): Variable removed, it's
redundant with OBJC_RUNTIME_LIB.
* target.make: Check OBJC_RUNTIME_LIB, not OBJC_RUNTIME.
* common.make: For libFoundation, added backward compatibility
fixup for header locations.
* configure.ac: Map gnu library combo to gnu-gnu-gnu, nx library
combo to nx-nx-nx, apple library combo to apple-apple-apple. Use
apple-apple-apple library-combo on darwin by default. Use
-DNeXT_RUNTIME for OBJC_RUNTIME_LIB = apple. Print out a message
that we are checking for the library-combo, and which one we
choose.
* configure: Regenerated.
* common.make: To check that we are on an Apple system,
check FOUNDATION_LIB against apple, not nx.
* debugapp.in: Recognize apple library combo.
* executable.template.in: Idem.
* library-combo.make (RUNTIME_FLAG): For NeXT and Apple runtime,
always set to -fnext-runtime, regardless of the value of
OBJC_COMPILER, because OBJC_COMPILER is set in target.make, which
is read after library-combo.make, so we can't use it here.
* library-combo.make: Map apple library-combo to
apple-apple-apple. Added code for apple OBJC_RUNTIME_LIB,
FOUNDATION_LIB and GUI_LIB, copied from the one for nx
library-combo.
* target.make: For darwin systems, replace all checks for 'nx'
runtime and foundation lib with checks for 'apple'.
* Instance/application.make: Apple code is now executed for
'apple' runtime/foundation/gui lib, not 'nx'. Removed checks for
OBJC_COMPILER == NeXT; replace them with checks for FOUNDATION_LIB
== apple.
* Instance/bundle.make: Idem.
* Instance/framework.make: Idem.
* Instance/gswapp.make: idem.
Wed Dec 25 03:09:34 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/application.make: Implemented support for Apple native
bundle organization, and Apple Info.plist.
Wed Dec 25 03:04:42 2002 Nicola Pero <n.pero@mi.flashnet.it>
* target.make (DYLIB_INSTALL_NAME): Variable removed, replaced
by LIB_LINK_INSTALL_NAME.
* Instance/library.make (LIB_LINK_INSTALL_NAME): Define.
* Instance/framework.make (LIB_LINK_INSTALL_NAME): Define.
* Instance/framework.make: Do not build and link the dummy
framework class on Apple. On Apple, create the symbolic link
xxx.framework/xxx --> the shared library. Modified NSExecutable
value on Apple. New install code for Apple.
Wed Dec 25 02:53:19 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Master/application.make (internal-clean): Removed special code
for OBJC_COMPILER = NeXT.
Fri Dec 20 17:27:16 2002 Nicola Pero <n.pero@mi.flashnet.it>
* library-combo.make (LIBRARIES_DEPEND_UPON, BUNDLE_LIBS): For nx
foundation or gui, add necessary -framework flags.
* target.make (DYLIB_INSTALL_NAME): For darwin, define using
FINAL_LIBRARY_INSTALL_DIR rather than hardcoding
GNUSTEP_SYSTEM_ROOT, so that it works no matter where a library is
installed.
Fri Dec 20 16:21:40 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/tool.make (FINAL_TOOL_INSTALL_DIR): New variable;
support it. By setting this variable before including the
makefile, you can fine control where you want the tool executable
to be installed.
Sun Dec 15 16:22:13 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Shared/stamp-string.make: New file providing
infrastructure for very efficient stamp string support.
* GNUmakefile.in (INSTANCE_SHARED_MAKE_FILES): Added stamp-string.make
* Instance/application.make: Use Instance/Shared/stamp-string.make
to rebuild Info.plist and xxx.desktop iff there is a clear reason
to do so.
* Instance/bundle.make: Use Instance/Shared/stamp-string.make
to make sure we rebuild the Info.plist whenever the make variables
used in it change.
Sat Dec 14 02:42:02 2002 Nicola Pero <n.pero@mi.flashnet.it>
* library-combo.make: Quick attempt at fixing/updating
foundation/appkit flags to compile with nx library-combo on Mac
OSX. Dropped NeXTstep iconheader code.
* Instance/application.make: Quick attempt at fixing/updating
building nx applications. Added missing rule to build directory,
and dropped NeXTstep iconheader code.
Sat Dec 14 02:36:00 2002 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac (AC_CONFIG_FILES): Removed config.h, which is
already in AC_CONFIG_HEADER.
* configure: Regenerated.
Thu Dec 12 00:03:30 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make: Fixed typo in warning message.
2002-12-10 Adam Fedor <fedor@gnu.org>
* clean_os.sh: Filter version from darwin6.
* target.make (darwin): Was darwin6
(irix): Updated for shared libraries (from Carl Eugen Hoyos).
* Documentation/machines.texi: Updated.
Mon Dec 9 12:04:49 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make (internal-framework-install_): Fixed
creating the installation directory for headers in DLL case, so
that it uses HEADER_FILES_INSTALL_DIR (Patch from David Ayers
<d.ayers@inode.at>).
2002-12-05 Mirko Viviani <mirko.viviani@rccr.cremona.it>
* Instance/framework.make ($(FRAMEWORK_FILE)): create the link with
GNUSTEP_INSTANCE name instead of FRAMEWORK_NAME. (patch from David
Ayers <d.ayers@inode.at>)
2002-12-03 Mirko Viviani <mirko.viviani@rccr.cremona.it>
* Instance/framework.make ($(FRAMEWORK_FILE)): remove the link before
creating a new one.
2002-12-02 Mirko Viviani <mirko.viviani@rccr.cremona.it>
* Instance/framework.make ($(FRAMEWORK_FILE)): link
lib<frameworkName>.so to <frameworkName> for dynamic loading.
Mon Dec 2 12:43:23 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make: Added support for XXX_HEADER_FILES_DIR
and XXX_HEADER_FILES_INSTALL_DIR (Patch from David Ayers
<d.ayers@inode.at>).
2002-11-29 Adam Fedor <fedor@gnu.org>
* target.make (darwin1): Remove
(darwin6): Add.
2002-11-27 Richard Frith-Macdonald <rfm@gnu.org>
* user_home.c: Use USERPROFILE for home directory on windoze.
* Documentation/RADME.MinGW: Fix typo reported by Tom Koelman
2002-11-19 Adam Fedor <fedor@gnu.org>
* Version: 1.5.1
* Documentation/news.texi: Updated.
2002-11-19 Adam Fedor <fedor@gnu.org>
* create_domain_dir_tree.sh (mydir): Use `command` not
$(command), which doesn't work with all sh's.
2002-11-15 Adam Fedor <fedor@gnu.org>
* common.make: Remove duplicate OBJC_RUNTIME_LIB and FOUNDATION_LIB
setup
* library-combo.make (GNUSTEP_FND_DIR, RUNTIME_FLAG): Extra flags
moved from common.make
(FOUNDAION_LIB=gnu): setup moved from common.make.
* target.make (darwin5/NeXT cc) (DYLIB_EXTRA_FLAGS,
DYLIB_DEF_FRAMEWORKS, DYLIB_DEF_LIBS): Comment out or remove.
Wed Nov 6 15:26:07 2002 Nicola Pero <n.pero@mi.flashnet.it>
* GNUmakefile.in (install): Fixed typo - was installing
config.site into GNUSTEP_SYSTEM_ROOT/shared rather than
GNUSTEP_SYSTEM_ROOT/share.
Wed Nov 6 12:31:40 2002 Nicola Pero <n.pero@mi.flashnet.it>
Rewritten framework/subproject interaction so that it supports
FRAMEWORK_NAME containing multiple framework names. Framework API
change warning: CURRENT_VERSION_NAME replaced by
XXX_CURRENT_VERSION_NAME; DEPLOY_WITH_CURRENT_VERSION replaced by
XXX_DEPLOY_WITH_CURRENT_VERSION.
* common.make (CURRENT_VERSION_NAME): Do not define here.
(DEPLOY_WITH_CURRENT_VERSION): Idem.
* Instance/framework.make: Added support for
xxx_CURRENT_VERSION_NAME and xxx_DEPLOY_WITH_CURRENT_VERSION.
* rules.make (FRAMEWORK_NAME): Do not define here.
(FRAMEWORK_DIR_NAME): Idem.
(FRAMEWORK_VERSION_DIR_NAME): Idem.
* Master/framework.make (FRAMEWORK_NAME): Set here.
* Instance/framework.make (FRAMEWORK_DIR_NAME,
FRAMEWORK_VERSION_DIR_NAME): Set here.
* Master/rules.make (%.subprojects): Pass to submakes for
subprojects OWNING_PROJECT_HEADER_DIR instead of FRAMEWORK_NAME
and FRAMEWORK_VERSION_DIR_NAME; set the new variable manually
depending on the instance we're building.
(%.variables): Similar change.
* Master/subproject.make (build-headers): Always define this rule;
don't depend on FRAMEWORK_NAME.
(internal-install, internal-uninstall: Always run install /
uninstall, no matter what FRAMEWORK_NAME is.
* rules.make (CURRENT_FRAMEWORK_HEADERS_FLAG): Renamed to
DERIVED_SOURCES_HEADERS_FLAG. Include it also if
OWNING_PROJECT_HEADER_DIR is non empty.
* Instance/subproject.make: Rewritten header copying for
frameworks and such; now manage headers basing on the
OWNING_PROJECT_HEADER_DIR variable only.
Wed Nov 6 12:09:09 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/framework.make (internal-framework-distclean): Do not
remove DERIVED_SOURCES; already removed on make clean.
Wed Nov 6 10:56:55 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/application.make (.PHONY): Added
internal-app-copy_into_dir.
(internal-app-copy_into_dir): Implemented.
2002-11-05 Adam Fedor <fedor@gnu.org>
* Documentation/README.MinGW: Add note about setting
installation prefix.
* Documentation/faq.texi: Typo.
* Documentation/machines.texi: Updates.
* Documentation/userfaq.texi: Idem.
Mon Nov 4 14:59:27 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/documentation.make (internal-doc-install_): Moved
before the submakefile fragments are included, to fix installation
problem.
Mon Nov 4 12:44:07 2002 Nicola Pero <n.pero@mi.flashnet.it>
* GNUmakefile.in (distclean): Remove fixpath.sh.
Mon Nov 4 12:08:58 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Documentation: New directory.
* Instance/Documentation/autogsdoc.make: New file.
* Instance/Documentation/gsdoc.make: New file.
* Instance/Documentation/javadoc.make: New file.
* Instance/Documentation/latex.make: New file.
* Instance/Documentation/texi.make: New file.
* Instance/documentation.make: Include only the appropriate
documentation makefiles; most code moved into the specific
documentation makefiles.
* GNUmakefile.in (install): Create the
GNUSTEP_MAKEFILES/Instance/Documentation directory.
(INSTANCE_DOC_MAKE_FILES): List the new makefiles in this
variable.
(install): Install them.
* rules.make ($(GNUSTEP_MAKEFILES)/Instance/Documentation/*.make):
New rule to let make know that all documentation makefiles are
always up to date.
Fri Nov 1 14:00:11 2002 Nicola Pero <n.pero@mi.flashnet.it>
* common.make (GNUSTEP_MAKEINFO, GNUSTEP_MAKEINFO_FLAGS,
GNUSTEP_MAKETEXT, GNUSTEP_MAKETEXT_FLAGS, GNUSTEP_TEXI2DVI,
GNUSTEP_TEXI2DVI_FLAGS, GNUSTEP_TEXI2HTML,
GNUSTEP_TEXI2HTML_FLAGS, GNUSTEP_DVIPS, GNUSTEP_DVIPS_FLAGS,
AUTOGSDOC, JAVADOC, ALL_JAVADOCFLAGS): Moved into
Instance/documentation.make
* rules.make (ALL_JAVADOCFLAGS): Moved into
Instance/documentation.make.
* Instance/documentation.make: Set all these documentation
specific flags and options here.
(ADDITIONAL_MAKEINFO_FLAGS, ADDITIONAL_MAKETEXT_FLAGS,
ADDITIONAL_TEXI2DVI_FLAGS, ADDITIONAL_TEXI2HTML_FLAGS,
ADDITIONAL_DVIPS_FLAGS): New variables.
Fri Nov 1 13:36:25 2002 Nicola Pero <n.pero@mi.flashnet.it>
* ChangeLog: Moved into ChangeLog.1
|