Branch
Hash :
6a93e918
Author :
Date :
2025-05-31T14:47:08
Switch to automake 1.18. * autogen.sh: Update comment. * Makefile.devel (AUTOMAKE, ACLOCAL): Use binary from automake 1.18. * libcharset/autogen.sh: Update comment. * libcharset/Makefile.devel (ACLOCAL): Use binary from automake 1.18.
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
2025-05-31 Bruno Haible <bruno@clisp.org>
Switch to automake 1.18.
* autogen.sh: Update comment.
* Makefile.devel (ACLOCAL): Use binary from automake 1.18.
2025-04-18 Collin Funk <collin.funk1@gmail.com> (tiny change)
Switch to automake 1.17, part 3.
* autogen.sh (ACLOCAL): Use Automake 1.17.
2024-12-14 Bruno Haible <bruno@clisp.org>
Switch to automake 1.17.
* autogen.sh: Update comment.
2024-11-22 Bruno Haible <bruno@clisp.org>
Switch to libtool 2.5.4.
* m4/libtool.m4: Update from libtool-2.5.4, with modifications:
2008-04-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltversion.m4: Likewise.
* build-aux/ltmain.sh: Update from libtool-2.5.4, with modifications:
2017-07-15 Bruno Haible <bruno@clisp.org>
Allow building statically linked binaries, through
LDFLAGS="-static". Apply patch from
<https://lists.gnu.org/archive/html/bug-libtool/2017-07/msg00000.html>.
* build-aux/ltmain.sh (func_mode_help, func_mode_link): In the
link mode, accept option '-static-uninstalled-libs' in place of
'-static', and make '-static' an equivalent of '-all-static'.
2024-11-07 Bruno Haible <bruno@clisp.org>
Update the LGPL text.
* COPYING.LIB: Update from
<https://ftp.gnu.org/gnu/Licenses/lgpl-2.1.txt>.
2024-09-26 Bruno Haible <bruno@clisp.org>
Switch to libtool 2.5.3.
* m4/libtool.m4: Update from libtool-2.5.3, with modifications:
2008-04-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: Likewise.
* m4/ltsugar.m4: Likewise.
* m4/ltversion.m4: Likewise.
* m4/lt~obsolete.m4: Likewise.
* build-aux/ltmain.sh: Update from libtool-2.5.3, with modifications:
2017-07-15 Bruno Haible <bruno@clisp.org>
Allow building statically linked binaries, through
LDFLAGS="-static". Apply patch from
<https://lists.gnu.org/archive/html/bug-libtool/2017-07/msg00000.html>.
* build-aux/ltmain.sh (func_mode_help, func_mode_link): In the
link mode, accept option '-static-uninstalled-libs' in place of
'-static', and make '-static' an equivalent of '-all-static'.
2024-08-24 Bruno Haible <bruno@clisp.org>
Fix shared library support in 32-bit mode on FreeBSD/powerpc64.
Patch from <https://savannah.gnu.org/patch/index.php?10469>.
* m4/libtool.m4: On FreeBSD, fix shlibpath_var.
2023-09-18 Bruno Haible <bruno@clisp.org>
Fix shared library support on Android.
Patch from <https://savannah.gnu.org/patch/index.php?10393>.
* m4/libtool.m4: On Android, fix library_names_spec and
hardcode_libdir_flag_spec.
2023-09-16 Bruno Haible <bruno@clisp.org>
Fix a misnomer.
* include/export.h (LIBCHARSET_SHLIB_EXPORTED): Renamed from
LIBCHARSET_DLL_EXPORTED. Prefer the term "shared library", since the
term "DLL" applies only to Windows.
* Makefile.devel (include/libcharset.h.build.in,
include/localcharset.h.build.in): Insert LIBCHARSET_SHLIB_EXPORTED
instead of LIBCHARSET_DLL_EXPORTED.
* lib/relocatable-stub.c (libcharset_set_relocation_prefix): Use
LIBCHARSET_SHLIB_EXPORTED instead of LIBCHARSET_DLL_EXPORTED.
* lib/Makefile.in (DEFS): Update comment.
* Makefile.in (install-lib): Update comment.
2023-09-06 Bruno Haible <bruno@clisp.org>
Don't export symbols from static MSVC .obj files.
Suggested by Dmitry Bely <dmitry.bely@gmail.com> in
<https://lists.gnu.org/archive/html/bug-gnu-libiconv/2023-08/msg00002.html>.
* include/export.h: Add a copyright notice. Set LIBCHARSET_DLL_EXPORTED
to empty on MSVC when DLL_EXPORT is not defined.
* Makefile.devel (include/libcharset.h.build.in,
include/localcharset.h.build.in): Filter out the second copyright
notice.
2023-05-21 Bruno Haible <bruno@clisp.org>
Support creating shared libraries on Hurd/x86_64.
Patch from
<https://lists.gnu.org/archive/html/bug-hurd/2023-05/msg00086.html>.
* m4/libtool.m4 (_LT_ENABLE_LOCK): Treat Hurd/x86_64 like
Linux/x86_64.
2022-07-17 Bruno Haible <bruno@clisp.org>
Split autogen.sh into autopull.sh and autogen.sh.
* autopull.sh: New file.
* autogen.sh: Mention it.
* HACKING: Likewise.
2022-05-15 Bruno Haible <bruno@clisp.org>
Switch to libtool 2.4.7.
* m4/libtool.m4: Update from libtool-2.4.7, with modifications:
2008-04-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: Likewise.
* m4/ltsugar.m4: Likewise.
* m4/ltversion.m4: Likewise.
* m4/lt~obsolete.m4: Likewise.
* build-aux/ltmain.sh: Update from libtool-2.4.7, with modifications:
2017-07-15 Bruno Haible <bruno@clisp.org>
Allow building statically linked binaries, through
LDFLAGS="-static". Apply patch from
<https://lists.gnu.org/archive/html/bug-libtool/2017-07/msg00000.html>.
* build-aux/ltmain.sh (func_mode_help, func_mode_link): In the
link mode, accept option '-static-uninstalled-libs' in place of
'-static', and make '-static' an equivalent of '-all-static'.
2022-02-12 Bruno Haible <bruno@clisp.org>
build: Remove leftover file (regression 2019-06-30).
* Makefile.in (distclean, maintainer-clean): Remove
include/libcharset.h.inst.
2021-02-07 Bruno Haible <bruno@clisp.org>
Support creating shared libraries on MidnightBSD.
Patch from <https://savannah.gnu.org/patch/?10007>.
* m4/libtool.m4: Treat MidnightBSD like FreeBSD.
* build-aux/ltmain.sh: Likewise.
2021-01-31 Bruno Haible <bruno@clisp.org>
Switch to autoconf 2.71.
* autogen.sh: Update comment.
2020-12-08 Bruno Haible <bruno@clisp.org>
Switch to autoconf 2.70.
* Makefile.devel (AUTOCONF, AUTOHEADER): Remove '-2.69' suffix.
* autogen.sh: Update comment.
2020-08-29 Bruno Haible <bruno@clisp.org>
Update after gnulib changed.
* configure.ac (AC_PREREQ): Bump minimum Autoconf version to 2.64.
2019-12-23 Bruno Haible <bruno@clisp.org>
Allow libiconv to export the symbol 'locale_charset'.
* Makefile.in (install-lib): Install localcharset.h, not
localcharset.h.inst.
2019-12-22 Bruno Haible <bruno@clisp.org>
Mark a new version.
* configure.ac: Bump version to 1.5.
* NEWS: Mention fixes.
2019-12-22 Bruno Haible <bruno@clisp.org>
Update from gnulib.
* include/localcharset.h.in: Update from gnulib.
2019-12-20 Bruno Haible <bruno@clisp.org>
* localcharset.h: Mention which encodings are used as locale
encodings on z/OS.
2019-12-17 Bruno Haible <bruno@clisp.org>
* localcharset.h (locale_charset): Clarify when the result
becomes invalid.
2019-12-02 Bruno Haible <bruno@clisp.org>
build: Fix build error with --enable-relocatable on macOS
(regression from 2019-03-04).
Reported by Roy Belio <rbelio@infinidat.com>.
* Makefile.in (PARENT_IMPORTED_FILES): Add libtool-reloc.
2019-07-02 Bruno Haible <bruno@clisp.org>
Drop unused macro gl_GLIBC21.
* configure.ac: Don't invoke gl_GLIBC21.
* Makefile.in (PARENT_IMPORTED_FILES): Remove m4/glibc21.m4.
* INTEGRATE: Update.
2019-06-30 Bruno Haible <bruno@clisp.org>
Fix build error with MSVC.
* libcharset/Makefile.devel (include/libcharset.h.build.in): New target.
(all): Depend on it.
(totally-clean): Remove include/libcharset.h.build.in.
* libcharset/configure.ac: Generate include/libcharset.h and
include/libcharset.h.inst.
* libcharset/Makefile.in (include/libcharset.h): Remove rule.
(install-lib, install): Install libcharset.h.inst, not libcharset.h.
(GENERATED_FILES): Add include/libcharset.h.build.in.
2019-03-04 Bruno Haible <bruno@clisp.org>
Add support for --enable-relocatable.
* libcharset/configure.ac: Invoke gl_RELOCATABLE.
2019-01-27 Bruno Haible <bruno@clisp.org>
Accommodate a shell that is not in /bin/sh.
* Makefile.in (SHELL): Use the value found by configure.
2019-01-27 Bruno Haible <bruno@clisp.org>
Fix configure (regression from 2018-09-22).
* configure.ac: Don't invoke gl_RELOCATABLE_LIBRARY.
2018-10-23 Bruno Haible <bruno@clisp.org>
Remove outdated DJGPP build infrastructure.
Approved by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
* djgpp: Remove directory.
* INSTALL.djgpp: Remove file.
* Makefile.in (SOURCE_FILES): Remove them.
2018-10-23 Bruno Haible <bruno@clisp.org>
Update after gnulib changed.
* configure.ac (AC_PREREQ): Bump minimum Autoconf version to 2.63.
2018-09-22 Bruno Haible <bruno@clisp.org>
Avoid some warnings in MSVC build.
* include/export.h: Handle MSVC compiler as well.
2018-09-22 Bruno Haible <bruno@clisp.org>
Update from gnulib. Move mapping tables into the code.
* include/localcharset.h.in: Update from gnulib.
2018-05-19 Bruno Haible <bruno@clisp.org>
* localcharset.h: Update comments for locale encodings found in
FreeBSD 11, NetBSD 7, Solaris 10, Openindiana, HP-UX 11.31,
IRIX 6.5, Minix 3.3. Also for Cygwin 2.9.
2018-05-19 Bruno Haible <bruno@clisp.org>
* localcharset.h: Document the GNU canonical names for character
encodings here.
* Makefile.in (PARENT_IMPORTED_FILES): Remove m4/relocatable-lib.m4.
* INTEGRATE: Removing all text related to config.charset, charset.alias,
ref-add.sin, ref-del.sin.
* README: Update.
* tools/README: Update.
2018-01-27 Bruno Haible <bruno@clisp.org>
Rename some files.
* INSTALL.windows: Renamed from README.windows.
* INSTALL.djgpp: Renamed from README.djgpp.
* Makefile.in (SOURCE_FILES): Update.
2018-01-23 Bruno Haible <bruno@clisp.org>
Don't use an undocumented Autoconf macro.
* configure.ac: Use AC_CONFIG_HEADERS instead of AC_CONFIG_HEADER.
2017-07-15 Bruno Haible <bruno@clisp.org>
Get rid of autom4te.cache directories, as far as possible.
* Makefile.devel (autoconf/aclocal.m4, configure, config.h.in): Remove
autom4te.cache after invoking aclocal, autoconf, autoheader.
2016-12-14 Bruno Haible <bruno@clisp.org>
Avoid error during initial autogen.sh invocation.
* Makefile.devel (autoconf/aclocal.m4): Ensure directory 'autoconf'
exists.
Reported by Daiki Ueno.
2016-12-03 Bruno Haible <bruno@clisp.org>
Create tarballs through an Automake-like "make dist" command.
* Makefile.in (SOURCE_FILES, LIBTOOL_IMPORTED_FILES, IMPORTED_FILES,
GENERATED_FILES, DISTRIBUTED_BUILT_FILES, DISTFILES): New macros.
(distdir): New target.
2016-12-04 Bruno Haible <bruno@clisp.org>
Remove imported files from version control.
* INSTALL.generic: Remove from version control.
* build-aux/config.guess: Likewise.
* build-aux/config.libpath: Likewise.
* build-aux/config.sub: Likewise.
* build-aux/install-sh: Likewise.
* build-aux/mkinstalldirs: Likewise.
* m4/codeset.m4: Likewise.
* m4/fcntl-o.m4: Likewise.
* m4/glibc21.m4: Likewise.
* m4/relocatable-lib.m4: Likewise.
* m4/visibility.m4: Likewise.
2016-12-03 Bruno Haible <bruno@clisp.org>
Make Makefile.devel more useful for the users of the released tarball.
* Makefile.devel (totally-clean): New target.
* autogen.sh: Invoke it and 'all'.
2016-12-03 Bruno Haible <bruno@clisp.org>
Modernize configure.ac.
* configure.ac: Require autoconf >= 2.60. Use 2-argument AC_INIT.
Use AC_CONFIG_SRCDIR.
2016-12-03 Bruno Haible <bruno@clisp.org>
Update documentation.
* README: Update the libiconv version number.
* HACKING: Refer to the Git repository.
* INTEGRATE: Mention the Gnulib module.
2016-11-23 Bruno Haible <bruno@clisp.org>
Update installation instructions for Windows.
* README.windows: Generic reference to top-level file.
2016-11-23 Bruno Haible <bruno@clisp.org>
Drop the nickname "woe32".
* README.windows: Renamed from README.woe32.
2016-10-22 Bruno Haible <bruno@clisp.org>
Switch to libtool 2.4.6.
* m4/libtool.m4: Update from libtool-2.4.6, with modifications:
2008-04-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}..
* m4/ltoptions.m4: Likewise.
* m4/ltversion.m4: Likewise.
* build-aux/ltmain.sh: Likewise.
2016-10-01 Bruno Haible <bruno@clisp.org>
Switch to automake 1.15.
* Makefile.devel (ACLOCAL): Switch to version 1.15.
2012-04-28 Bruno Haible <bruno@clisp.org>
Switch to autoconf 2.69 and automake 1.12.
* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.69.
(ACLOCAL): Switch to version 1.12.
2011-10-18 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Update from libtool-2.4.2, with modifications:
2008-04-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}..
* m4/ltoptions.m4: Likewise.
* m4/ltversion.m4: Likewise.
* build-aux/ltmain.sh: Likewise.
2010-09-23 Bruno Haible <bruno@clisp.org>
Switch to autoconf 2.68.
* autogen.sh: Update comment.
* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.68.
2010-09-23 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Update from libtool-2.4, with modifications:
2008-04-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltversion.m4: Update from libtool-2.4.
* build-aux/ltmain.sh: Likewise.
2010-07-31 Bruno Haible <bruno@clisp.org>
* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.67.
2010-07-03 Bruno Haible <bruno@clisp.org>
* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.66.
2010-06-04 Bruno Haible <bruno@clisp.org>
Addendum to 2009-10-18 commit.
* m4/fcntl-o.m4: New file, from gnulib.
* m4/fcntl_h.m4: Remove file.
2010-06-04 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Update from libtool-2.2.8, with modifications:
2008-04-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: Update from libtool-2.2.8.
* m4/ltversion.m4: Likewise.
* m4/lt~obsolete.m4: Likewise.
* build-aux/ltmain.sh: Likewise.
2010-05-08 Bruno Haible <bruno@clisp.org>
* tools/cygwin-1.7.2: New file.
* lib/config.charset: Update comments for Cygwin 1.7.
* lib/localcharset.c: Likewise.
2010-03-30 Bruno Haible <bruno@clisp.org>
* README.woe32: Mention Cygwin.
2009-12-11 Bruno Haible <bruno@clisp.org>
* include/libcharset.h.in: Untabify.
2009-12-11 Bruno Haible <bruno@clisp.org>
* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.65.
2009-10-18 Bruno Haible <bruno@clisp.org>
* README: Update.
2009-10-18 Bruno Haible <bruno@clisp.org>
* configure.ac: Invoke gl_FCNTL_O_FLAGS.
* INTEGRATE: Mention fcntl_h.m4 and the gl_FCNTL_O_FLAGS invocation.
2009-08-15 Bruno Haible <bruno@clisp.org>
* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.64.
2009-05-19 Bruno Haible <bruno@clisp.org>
* Makefile.devel (AUTOMAKE, ACLOCAL): Switch to version 1.11.
* autogen.sh: Update comments.
2009-01-25 Bruno Haible <bruno@clisp.org>
Don't install charset.alias on MacOS X >= 10.3.
* INTEGRATE: Don't install charset.alias on MacOS X >= 10.3, if the
file does not yet exist.
2009-01-25 Bruno Haible <bruno@clisp.org>
Don't install charset.alias on mingw and Cygwin.
* INTEGRATE: Don't install charset.alias on mingw and Cygwin, if the
file does not yet exist. The result for these platforms is hardcoded in
localcharset.c.
2009-01-24 Bruno Haible <bruno@clisp.org>
* tools/all-charsets: Add CP1131, ARMSCII-8, PT154 to the list of
allowed encodings.
* tools/darwin-7.5: Regenerated.
* tools/darwin-9.5: Regenerated.
2009-01-18 Bruno Haible <bruno@clisp.org>
* tools/darwin-9.5: New file.
2009-01-18 Bruno Haible <bruno@clisp.org>
* tools/locale_monthnames.c: New file.
2009-01-16 Bruno Haible <bruno@clisp.org>
* Makefile.in (install-strip): New target.
Reported by Alon Bar-Lev <alon.barlev@gmail.com>.
2009-01-14 Bruno Haible <bruno@clisp.org>
* configure.ac: More consistent m4 quoting.
2008-09-28 Bruno Haible <bruno@clisp.org>
* build-aux/ltmain.sh (func_emit_cwrapperexe_src): On mingw,
preprocess the argument vector through prepare_spawn.
2008-09-16 Bruno Haible <bruno@clisp.org>
* Makefile.devel (AUTOCONF, AUTOHEADER): Switch to version 2.63.
2008-09-07 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Update from libtool-2.2.6, with modifications:
2008-04-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: Update from libtool-2.2.6.
* m4/ltsugar.m4: Likewise.
* m4/ltversion.m4: Likewise.
* build-aux/ltmain.sh: Likewise.
2008-05-18 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Update from libtool-2.2.4, with modifications:
2008-04-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: Update from libtool-2.2.4.
* m4/ltversion.m4: Likewise.
* m4/lt~obsolete.m4: Likewise.
* build-aux/ltmain.sh: Likewise.
2008-04-14 Bruno Haible <bruno@clisp.org>
* configure.ac: Invoke AC_USE_SYSTEM_EXTENSIONS instead of AC_AIX and
AC_MINIX.
* Makefile.devel (AUTOCONF, AUTOHEADER): Require autoconf-2.62.
2008-04-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Update from libtool-2.2.2, with modifications:
2008-04-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: New file, from libtool-2.2.2.
* m4/ltsugar.m4: New file, from libtool-2.2.2.
* m4/ltversion.m4: New file, from libtool-2.2.2.
* m4/lt~obsolete.m4: New file, from libtool-2.2.2.
* build-aux/ltmain.sh: New file, from libtool-2.2.2.
* configure.ac: Use LT_INIT instead of AC_PROG_LIBTOOL.
2007-11-14 Bruno Haible <bruno@clisp.org>
* tools/all-locales: Add "C" for Darwin. Treat OpenBSD like Darwin.
2007-11-11 Bruno Haible <bruno@clisp.org>
* Makefile.devel (AUTOCONF, AUTOHEADER): Require version 2.61.
(ACLOCAL): Require version 1.10.
2007-10-26 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Update, based on libtool-1.5.24.
* build-aux/ltmain.sh: Update, based on libtool-1.5.24.
2007-06-30 Bruno Haible <bruno@clisp.org>
* autogen.sh: New file.
* DEPENDENCIES: New file.
* HACKING: New file.
2007-03-04 Bruno Haible <bruno@clisp.org>
* configure.ac: Invoke gl_RELOCATABLE_LIBRARY instead of
AC_RELOCATABLE_LIBRARY.
* m4/relocatable-lib.m4: New file, from gnulib.
* m4/relocatable.m4: Remove file.
2007-02-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
* djgpp/*: Update.
2006-10-31 Bruno Haible <bruno@clisp.org>
Update from GNU gettext.
2006-10-25 Bruno Haible <bruno@clisp.org>
* m4/relocatable.m4 (AC_RELOCATABLE_BODY): Renamed from
AC_RELOCATABLE, without the AC_LIBOBJ invocation.
(AC_RELOCATABLE): New macro. Invoke AC_LIBOBJ here.
2006-10-18 Bruno Haible <bruno@clisp.org>
* INTEGRATE: Remove recommendation to test for setlocale.
2006-07-29 Bruno Haible <bruno@clisp.org>
* configure.ac: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
2006-07-29 Bruno Haible <bruno@clisp.org>
* configure.ac: Remove obsolete calls AC_PROG_GCC_TRADITIONAL,
AC_ISC_POSIX.
2006-07-25 Bruno Haible <bruno@clisp.org>
* Makefile.msvc: Remove file.
* Makefile.devel (config.h.msvc): Remove rule.
(include/libcharset.h.msvc-shared, include/localcharset.h.msvc-shared):
Remove rules.
(all): Update.
2006-07-25 Bruno Haible <bruno@clisp.org>
* Makefile.vms: Remove file.
* Makefile.devel (config.h_vms): Remove rule.
(all): Update.
2006-06-27 Bruno Haible <bruno@clisp.org>
* Makefile.devel (AUTOCONF, AUTOHEADER): Use autoconf-2.60.
* Makefile.in (datarootdir): New variable.
* configure.ac (mandir): Remove customization.
2006-03-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER) [ linux ]: Avoid warning when
"parsing" /etc/ld.so.conf and empty /etc/ld.so.conf.d.
2006-05-15 Bruno Haible <bruno@clisp.org>
* m4/relocatable.m4: Update from GNU gettext.
2006-05-14 Bruno Haible <bruno@clisp.org>,
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* m4/libtool.m4 [ linux ] (AC_LIBTOOL_LANG_CXX_CONFIG)
(AC_LIBTOOL_POSTDEP_PREDEP, AC_LIBTOOL_PROG_COMPILER_PIC)
(AC_LIBTOOL_PROG_LD_SHLIBS): Add support for Sun C 5.9,
Sun C++ 5.9, and Sun Fortran 8.3 on Linux.
2006-05-06 Charles Wilson <cygwin@cwilson.fastmail.fm>
* m4/libtool.m4: On Cygwin, like on mingw, define DLL_EXPORT when
compiling a shared library object.
2006-03-31 Juan Manuel Guerrero <juan.guerrero@gmx.de>
* djgpp/*: Update.
2005-12-29 Bruno Haible <bruno@clisp.org>
* configure.ac: Renamed from configure.in.
* Makefile.devel (configure, config.h.in): Update.
* djgpp/Makefile.maint (fnchange.lst, README): Update.
2005-12-29 Bruno Haible <bruno@clisp.org>
* build-aux/config.guess: Update to GNU version 2005-12-23.
* build-aux/config.sub: Likewise.
* build-aux/config.libpath: Update from GNU gettext.
2005-12-29 Bruno Haible <bruno@clisp.org>
* m4/codeset.m4: Update from GNU gettext.
* m4/glibc21.m4: Update from GNU gettext.
* m4/relocatable.m4: Update from GNU gettext.
* configure: Invoke gl_GLIBC21 instead of jm_GLIBC21.
2005-12-29 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Update, based on libtool-1.5.22.
* build-aux/ltmain.sh: Update, based on libtool-1.5.22.
2005-09-18 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Update, based on libtool-1.5.20.
* build-aux/ltmain.sh: Update, based on libtool-1.5.20.
2005-07-24 Bruno Haible <bruno@clisp.org>
Tidy up exported symbols.
* m4/visibility.m4: New file.
* include/export.h: New file.
* configure.in Invoke gl_VISIBILITY. Use AC_CONFIG_FILES. Arrange to
create also include/localcharset.h.inst.
(VERSION): Bump to 1.4.
* Makefile.devel (all): Depend on include/localcharset.h.build.in.
(include/localcharset.h.build.in): New rule.
* Makefile.in (all): Remove dependency on include/localcharset.h.
(include/localcharset.h): Remove rule.
(install-lib, install): Install include/localcharset.h.inst,
not the include/localcharset.h that was used for building.
(distclean, maintainer-clean): Remove also include/localcharset.h.inst.
2005-07-08 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4 (postinstall_cmds) [cygwin,mingw,pw32]: Make DLL
executable after installing it.
2005-07-07 Bruno Haible <bruno@clisp.org>
* configure.in: Bump version number.
* windows/charset.rc: Likewise.
2005-07-05 Bruno Haible <bruno@clisp.org>
* m4/relocatable.m4 (AC_RELOCATABLE): On mingw, simply set
SET_RELOCATABLE to a trivial value.
2005-07-05 Bruno Haible <bruno@clisp.org>
* Makefile.devel (AUTOHEADER, ACLOCAL): New variables.
(autoconf/aclocal.m4, config.h.in): Use them.
2005-03-22 Bruno Haible <bruno@clisp.org>
* build-aux: New directory, renamed from autoconf.
* configure.in (AC_CONFIG_AUX_DIR): Use build-aux.
* Makefile.in (mkinstalldirs): Update.
2005-01-05 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Update from GNU gettext, based on libtool-1.5.10.
* autoconf/ltmain.sh: Update from GNU gettext, based on libtool-1.5.10.
2004-09-21 Juan Manuel Guerrero <st001906@hrz1.hrz.tu-darmstadt.de>
* djgpp/config.bat: Update.
* djgpp/config.sed: Update.
* djgpp/config.site: Update.
* djgpp/fnchange.in: Update.
* djgpp/README.in: Update.
2004-08-25 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Update from GNU gettext, based on libtool-1.5.6.
* autoconf/ltmain.sh: Update from GNU gettext, based on libtool-1.5.6.
2004-01-20 Bruno Haible <bruno@clisp.org>
Upgrade from gettext-0.14.
2003-08-24 Bruno Haible <bruno@clisp.org>
* m4/relocatable.m4 (AC_RELOCATABLE): Use $(host) instead of @host@,
since the substitution of @host@ may occur before the substitution of
@SET_RELOCATABLE@.
2004-01-20 Bruno Haible <bruno@clisp.org>
Assume automake-1.8.
* Makefile.devel (AUTOCONF): Assume autoconf-2.59.
2003-06-18 Bruno Haible <bruno@clisp.org>
* config/install-sh: Update from automake-1.7.5.
2003-06-07 Bruno Haible <bruno@clisp.org>
* Makefile.devel (config.h_vms): Remove INSTALLPREFIX.
Reported by Jouk Jansen <joukj@hrem.stm.tudelft.nl>.
2003-05-19 Bruno Haible <bruno@clisp.org>
* windows/charset.rc: Include <winver.h>.
Reported by Perry Rapp.
2003-05-07 Bruno Haible <bruno@clisp.org>
* Makefile.vms: New file.
* Makefile.devel (config.h_vms): New rule.
(all): Depend on it.
2003-05-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Update from GNU gettext, based on libtool-1.5.
2003-05-06 Bruno Haible <bruno@clisp.org>
* autoconf/config.guess: Update to GNU version 2003-02-22.
* autoconf/config.sub: Likewise.
2003-05-06 Bruno Haible <bruno@clisp.org>
* autoconf/ltmain.sh: Update from GNU gettext, based on libtool-1.5.
2003-04-12 Bruno Haible <bruno@clisp.org>
* configure.in (mandir): Change default value.
* Makefile.in (datadir): New variable.
2003-04-05 Bruno Haible <bruno@clisp.org>
Support for relocatable installation.
* m4/relocatable.m4: New file, from GNU gettext.
* autoconf/config.libpath: New file, from GNU gettext.
* configure.in: Invoke AC_RELOCATABLE_LIBRARY.
* include/libcharset.h.in: New file.
* Makefile.devel (include/libcharset.h.msvc-shared): New rule.
(all): Depend on it.
(autoconf/aclocal.m4): Update aclocal invocation.
(config.h.msvc): Handle INSTALLPREFIX.
* Makefile.in (include/libcharset.h): New rule.
(all): Depend on it.
(install-lib, install): Also install libcharset.h.
(uninstall): Uninstall libcharset.h.
(distclean, maintainer-clean): Remove include/libcharset.h.
* Makefile.msvc (all): Create include/libcharset.h.
(install): Also install libcharset.h.
(uninstall): Uninstall libcharset.h.
(mostlyclean, clean, distclean, maintainer-clean): Remove
include/libcharset.h.
* INSTALL.generic: Document --enable-relocatable and
--with-libintl-prefix. Remove the recommendation to set CPPFLAGS and
LDFLAGS. The lib-link.m4 macros make this unnecessary.
2003-04-05 Bruno Haible <bruno@clisp.org>
* Makefile.msvc (PREFIX): New variable.
(prefix): Use it.
(distclean, maintainer-clean): Drop Unix specific removals.
* man/Makefile.msvc (PREFIX): New variable.
(prefix): Use it.
(clean): Drop unnecessary removals.
(distclean): Drop Unix specific removal.
2003-04-05 Bruno Haible <bruno@clisp.org>
* configure.in: Invoke AM_LANGINFO_CODESET, not jm_LANGINFO_CODESET.
* autoconf/ltmain.sh: Update from GNU gettext.
2003-02-18 Bruno Haible <bruno@clisp.org>
Fix the 2002-09-16 fix.
* ltmain.sh (install): If "ln -s -f" fails (this is the case
with /usr/bin/ln on Solaris 2.7), fall back to "rm && ln -s".
* m4/codeset.m4: Update from GNU gettext-0.10.40.
* m4/glibc21.m4: Update from GNU gettext-0.10.40.
2003-03-17 Bruno Haible <bruno@clisp.org>
Improved MSVC support.
* windows/charset.rc: New file.
* Makefile.msvc (prefix): Use less Unixy value.
(local_prefix): Remove variable.
(libdir, includedir): Use backslashes.
(bindir): New variable.
(mandir): Remove variable.
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): New variables.
(mostlyclean, clean): Remove config.h and include/localcharset.h.
(install, installdirs, uninstall): Rewritten.
* README.woe32: Mention automatic installation command.
Rename libcharset.h to localcharset.h.
* include/localcharset.h.in: Renamed from include/libcharset.h.in.
* tools/locale_charset.c: Include localcharset.h, not libcharset.h.
* Makefile.in (include/localcharset.h): Renamed from
include/libcharset.h.
(all): Update dependency.
(install-lib, install, uninstall, distclean, maintainer-clean): Update.
* Makefile.msvc (all): Create include/localcharset.h, not
include/libcharset.h.
* Makefile.devel (include/localcharset.h.msvc-shared): Renamed from
include/libcharset.h.msvc-shared.
(all): Update dependency.
(config.h.in): Touch the file when done; autoheader doesn't do it.
(config.h.msvc): Make rule more robust.
* INTEGRATE: Mention localcharset.h only once.
* djgpp/README.in, djgpp/README: Update.
* djgpp/config.bat: Update.
* djgpp/config.sed: Update.
* djgpp/fnchange.in, djgpp/fnchange.lst: Update.
* configure.in (VERSION): Bump to 1.2.
* NEWS: New file.
2003-02-14 Bruno Haible <bruno@clisp.org>
* Makefile.devel (AUTOCONF): Switch to autoconf-2.57.
(configure, config.h.in): Update rules.
2003-01-03 Albert Chin <libtool@thewrittenword.com>
* autoconf/ltmain.sh: Don't pass -R flags found in a .la's
dependency_libs variable directly down to the linker.
Reported by Tim Mooney <mooney@dogbert.cc.ndsu.nodak.edu>.
2003-01-12 Bruno Haible <bruno@clisp.org>
* INTEGRATE: Mention localcharset.h.
2003-01-01 Bruno Haible <bruno@clisp.org>
* Makefile.in (mkinstalldirs): Renamed from MKINSTALLDIRS.
(install-lib, install, installdirs): Use it.
2002-09-27 Bruno Haible <bruno@clisp.org>
* autoconf/mkinstalldirs: Upgrade to automake-1.7.2 version.
2002-11-07 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Upgrade to libtool-1.4.3.
* autoconf/ltmain.sh: Upgrade to libtool-1.4.3.
2002-07-14 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4 (_LT_AC_LTCONFIG_HACK): Add support for GNU/FreeBSD.
2002-06-12 Bruno Haible <bruno@clisp.org>
* configure.in: Use new AC_* names of libtool macros. Invoke
AC_LIBTOOL_WIN32_DLL.
2002-11-07 Bruno Haible <bruno@clisp.org>
Make "make install" without prior "make" work.
* Makefile.in (install): Depend on include/libcharset.h.
Reported by Martin Mokrejš <mmokrejs@natur.cuni.cz>.
2002-05-12 Bruno Haible <bruno@clisp.org>
* tools/all-charsets: Update for change of lib/config.charset.
2002-05-12 Bruno Haible <bruno@clisp.org>
* Makefile.devel (AUTOCONF): New variable.
(configure): Use the AUTOCONF variable.
2002-05-08 Bruno Haible <bruno@clisp.org>
* README.woe32: Renamed from README.win32.
2002-02-06 Bruno Haible <bruno@clisp.org>
* m4/libtool.m4: Upgrade to libtool-1.4.2.
* autoconf/ltmain.sh: Likewise.
2002-02-02 Bruno Haible <bruno@clisp.org>
* autoconf/ltmain.sh: Add DESTDIR support on ELF systems.
2001-11-03 Bruno Haible <haible@clisp.cons.org>
* autoconf/ltmain.sh: chmod 777 the .libs directory, so that
"make install" succeeds.
2001-12-04 Bruno Haible <bruno@clisp.org>
* INTEGRATE: Change the install rule to not create $(libdir) if
there is no file to install in it.
2001-07-17 Bruno Haible <haible@clisp.cons.org>
* configure.in (VERSION): Bump to 1.1.
2001-06-08 Bruno Haible <haible@clisp.cons.org>
* m4/libtool.m4: Upgrade to libtool-1.4.
* autoconf/ltmain.sh: Likewise.
* autoconf/ltconfig: Remove file.
2001-06-08 Bruno Haible <haible@clisp.cons.org>
* autoconf/config.guess: Update to GNU version 2001-05-11.
* autoconf/config.sub: Likewise.
2001-05-21 Bruno Haible <haible@clisp.cons.org>
* Makefile.in (include/libcharset.h): New target.
(all): Depend on it.
2001-05-11 Bruno Haible <haible@clisp.cons.org>
* INTEGRATE (Makefile.in): Fix syntax error.
2001-05-06 Bruno Haible <haible@clisp.cons.org>
* Makefile.msvc (config.h): Allow the 'del' command to fail.
2001-03-21 Bruno Haible <haible@clisp.cons.org>
* INSTALL.generic (Particular Systems): Add recommendations for AIX 3.
2001-03-10 Bruno Haible <haible@clisp.cons.org>
* INSTALL.generic: New section "Particular Systems".
2001-03-05 Bruno Haible <haible@clisp.cons.org>
* tools/all-charsets: Update for change of lib/config.charset.
2001-03-01 Bruno Haible <haible@clisp.cons.org>
* tools/all-charsets: Update for change of lib/config.charset.
2001-02-25 Bruno Haible <haible@clisp.cons.org>
* autoconf/ltconfig:
sed -e 's/reload object files/produce relocatable object files/'.
2001-02-25 Bruno Haible <haible@clisp.cons.org>
* include/libcharset.h.in (locale_charset): Return value is never
NULL any more.
2001-02-22 Bruno Haible <haible@clisp.cons.org>
* INTEGRATE (Makefile.am): Change $@-t to t-$@. For DJGPP.
Patch by Juan Manuel Guerrero <st001906@hrz1.hrz.tu-darmstadt.de>.
2001-02-20 Bruno Haible <haible@clisp.cons.org>
Better support for DOS/Windows platforms.
* autoconf/ltconfig: Upgrade to libtool-1.3.5.
* autoconf/ltmain.sh: Likewise.
* m4/libtool.m4: Likewise.
* autoconf/aclocal.m4: Likewise.
* configure.in: Call AC_OBJEXT and AC_EXEEXT.
2001-02-20 Bruno Haible <haible@clisp.cons.org>
* Makefile.in (libdir, includedir, mandir): Use the autoconf
determined value, in order to respect the configure arguments.
* lib/Makefile.in (libdir): Likewise.
2000-12-13 Bruno Haible <haible@clisp.cons.org>
* autoconf/install-sh: Update to a newer version from fileutils.
2000-12-12 Bruno Haible <haible@clisp.cons.org>
* Makefile.in: Use $(MAKE) instead of $(MAKE) -r. Needed with Solaris
"make", which doesn't set MAKE as expected by @SET_MAKE@ if -r is
given. Reported by Toshimitsu Fujiwara.
2000-12-08 Bruno Haible <haible@clisp.cons.org>
* Makefile.in (exec_prefix): Use configure's --exec-prefix argument.
2000-12-02 Bruno Haible <haible@clisp.cons.org>
* Makefile.msvc (check): Depend on target 'force' as well.
(mostlyclean, clean, distclean, maintainer-clean): Fix dependency.
* Makefile.msvc: Replace STATIC with its opposite flag, DLL.
2000-11-24 Bruno Haible <haible@clisp.cons.org>
* tools/all-charsets: Update for 2000-10-31 change of
lib/config.charset.
2000-11-23 Bruno Haible <haible@clisp.cons.org>
* Makefile.in (install-lib): Fix for builddir != srcdir.
2000-11-22 Bruno Haible <haible@clisp.cons.org>
* Makefile.in (all): Fix for builddir != srcdir.
2000-11-21 Bruno Haible <haible@clisp.cons.org>
* include/libcharset.h.in: Renamed from include/libcharset.h.
* windows/dllexport.h: New file.
* Makefile.devel (all): Add config.h.msvc,
include/libcharset.h.msvc-shared.
(config.h.msvc, include/libcharset.h.msvc-shared): New targets.
* Makefile.msvc (MFLAGS): New variable.
(all): Create include\libcharset.h.
(distclean, maintainer-clean): Remove include\libcharset.h.
* Makefile.in (CP): New variable.
(all): Create include/libcharset.h.
(distclean, maintainer-clean): Remove include/libcharset.h.
2000-11-18 Bruno Haible <haible@clisp.cons.org>
* Makefile.devel (config.h.in): Rename from config.h.
2000-11-16 Bruno Haible <haible@clisp.cons.org>
* Makefile.in: After "cd", use "&&" not ";".
2000-10-31 Bruno Haible <haible@clisp.cons.org>
* Makefile.msvc: New file.
* README.win32: New file.