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
|
glibc (2.1.2-12) unstable; urgency=low
* The "" release.
* debian/rules: Form arch_packages and indep_packages using += instead
of $(filter-out ...).
* debian/package-rules/locales.mk: Remove cross-compiling kluges.
* debian/control.in/main:
- locales: Architecture all -> any.
- Build-Depends: add make (>= 3.78) due to use of new
call, warning, and error make functions.
* Merge gconv-modules back into locales.
* Move locale and localedef programs back into locales.
* Put devpts.sh init script back in $(libc).
--
glibc (2.1.2-11.0.1) unstable; urgency=low
* Binary-only upload of locales.
-- Joel Klecker <debian-glibc@lists.debian.org> Wed, 29 Dec 1999 11:45:56 -0800
glibc (2.1.2-11) unstable; urgency=low
* The "If it ain't broke, you're not tryin'" release.
* Split out $(libc)-bin and libnss1-compat.
* Split debian/rules into debian/package-rules/*.
$(libc-bin):
- Install db_* programs as glibcdb_*.
- Move zic, zdump, locale, localedef, getent here.
- Use alternatives for db_*. (closes:Bug#50311,#50341)
* debian/mk/rules-* -> debian/rules.d/*.
* debian/<pkg> now resembles $(tmpdir) tree for <pkg>.
* Improve setperms rule, so debian/perms can specify fewer files.
* New source unpacking system, see prep.sh.
* Remove devpts.sh, the init script is now in sysvinit.
* Improve debian/libc/DEBIAN/shlibs rule (debian/rules.d/shlibs.mk).
* debian/sysdeps/soname.mk: Bump shlib_depend.
* Add sysdeps files for $(DEB_HOST_GNU_CPU).
* Add debian/patches/glibc-mega.dpatch:
Selected patches from CVS (closes:Bug#48120,#52195).
* Add debian/patches/linuxthreads-mega.dpatch:
Selected patches from CVS.
* Add debian/patches/alpha-pt-machine.h.dpatch:
Fix pt-machine.h so that linuxthreads compiles on Alpha.
* Add debian/patches/db2-alpha-powerpc-mutex.dpatch:
Alpha and PowerPC implementations for db2 spinlocks.
(patches by David Huggins-Daines <dhd@debian.org>)
(db2 patch slightly modified)
* Add debian/patches/powerpc-plt.dpatch:
1999-10-07 Geoffrey Keating <geoffk@cygnus.com>
* sysdeps/powerpc/dl-machine.c: Many minor formatting changes.
(OPCODE_LWZU): New macro.
(OPCODE_ADDIS_HI): New macro.
(OPCODE_LIS_HI): New macro.
(__elf_machine_runtime_setup): Change PLT code-generation scheme
for thread safety even with very large PLTs, better efficiency,
and to fix a cache-flushing bug.
(__elf_machine_fixup_plt): Likewise.
(__process_machine_rela): Don't use elf_machine_fixup_plt.
* Add debian/patches/sparc64-linux-lib64.dpatch:
Use /lib/64 and /usr/lib/64 instead of /lib64 and /usr/lib64.
* Add debian/patches/sparc64-linux-execve.dpatch:
Add __syscall_execve to sparc64 syscalls.list.
* Add automatic parallel build support for SMP systems.
* Fix broken parsing of DEB_BUILD_OPTIONS.
* Add framework to build libc6-64 and libc6-64-dev packages for sparc
(not enabled for potato).
* Split locales into `locales' and `i18ndata'.
-- Joel Klecker <debian-glibc@lists.debian.org> Sat, 25 Dec 1999 09:54:29 -0800
glibc (2.1.2-10) unstable; urgency=low
* The "Omigod! I overdosed on heroin!" release.
* debian/devpts.init: Create /dev/ptmx unconditionally.
* Restore correct nscd DEBIAN dir.
* Revamp rules a bit (split more parts into debian/mk/rules-*).
* debian/mk/sysdeps.mk: Split into pieces and include them.
* debian/patches/tzcode1999h.dpatch:
Update timezone data to 1999h release.
* Add stub for support for libc6-64 packages for sparc.
* Add one more last timezone sanity check to libc postinst (closes:Bug#49539).
* Always unpack linuxthreads add on and pass --enable-add- to
configure for hurd (closes:Bug#49459).
-- Joel Klecker <debian-glibc@lists.debian.org> Mon, 8 Nov 1999 09:47:28 -0800
glibc (2.1.2-9) unstable; urgency=low
* The "Service with a capital 'Bugger Off'" release.
* debian/copyright: Update for 2.1.2.
* debian/rules: Make each binary package depend on setperms (closes:Bug#48914).
* Move debian/libc-doc to debian/glibc-doc and eliminate the need for
postinst and prerm to be generated files. (closes:Bug#48786).
-- Joel Klecker <debian-glibc@lists.debian.org> Sun, 31 Oct 1999 09:23:16 -0800
glibc (2.1.2-8) unstable; urgency=low
* The "Can't Start a Fire Without a SPARC" release.
* Build with unstable dpkg.
* debian/patches/sparc-various.dpatch: Various sparc-specific patches
from Jakub Jelinek <jakub@redhat.com> and David S. Miller <davem@redhat.com>.
-- Joel Klecker <debian-glibc@lists.debian.org> Sat, 30 Oct 1999 06:55:33 -0700
glibc (2.1.2-7) unstable; urgency=high
* The "Fuck Me Harder" release.
* sparc-linux: Replaces: ldso (<< 1.9.11-6).
* debian/{libc.postinst.in,libc/prerm}: Add /usr/doc symlink stuff (closes:Bug#48324).
* debian/control.in-main: Adjust locales depends.
Correct Build-Depends: field.
* debian/mk/source-rules.mk: Split unpack-source, source, and orig-source
targets from debian/rules.
* debian/patches/manual-texinfo4.dpatch: Use @ifnottex instead of @ifinfo.
* Use makeinfo --html to generate HTML version of glibc manual.
* Remove texi2html from debian/scripts.
* Fix debian/scripts/Makefile for cross-compiling.
* Correct debian/patches/string2-pointer-arith.dpatch for archs that don't
support unaligned memory accesses.
-- Joel Klecker <debian-glibc@lists.debian.org> Fri, 29 Oct 1999 09:06:27 -0700
glibc (2.1.2-6) unstable; urgency=low
* The "Evil Bitch Monster of Death" release.
* debian/rules: Move debian/control targets to...
debian/mk/debian-control.mk.
* Move debian/*.mk to debian/mk/.
* Use debian/<pkg>/* for control archive items.
Adjust debian/rules for this.
* Add setperms target to set modes of debian/<pkg>/*.
Make unpack-source and clean depend on it.
* Don't compile with -g when DEB_HOST_GNU_CPU is alpha.
* debian/patches/string2-pointer-arith: New file.
Fix "/usr/include/bits/string2.h:419: warning: pointer of type `void *'
used in arithmetic" (closes:Bug#45824,#44491,#44697)
* Change maintainer back to "Joel Klecker <debian-glibc@lists.debian.org>".
* Update to CVS sources as of 1999-10-24.
* debian/patches/{linuxthreads-signals.c-ucontext,cs-po}.dpatch:
Fixes for source tree brokenness.
* Adjust clean target for new generated files.
* Add libresolv to $(libc)-pic.
* Add readlink.c and texi2html to debian/scripts to eliminate tetex-bin dependency.
* nscd: Install nscd_nischeck.
Sync nscd.init with upstream.
* Implement /usr/doc symlinks.
* $(libc): strip libpthread with --strip-debug.
-- Joel Klecker <debian-glibc@lists.debian.org> Sun, 24 Oct 1999 20:50:58 -0700
glibc (2.1.2-5) unstable; urgency=low
* The "One more week to go" release.
* debian/patches/localedata-SUPPORTED:
Oops, this patch wasn't actually being applied.
eo_EO, zh_TW.Big5, and es_AR should be [back] in locales now.
Back out zh_CN, the definition is broken.
* Remove sparc from HAVE_LIBC{4,5}, we want to install our ldd.
* debian/patches/sparc-linux-ldd.dpatch: New file.
Restore missing patch (in ChangeLog, not in source).
* debian/sysdeps.mk: Tighten alpha shlib_depend to libc6.1 (>= 2.1.2-1).
-- Joel Klecker <espy@debian.org> Tue, 28 Sep 1999 04:55:35 -0700
glibc (2.1.2-4) unstable; urgency=low
* The "Perl Sucks" release.
* debian/libc.postinst: Steal updatercd shell function from sysvinit postinst.
Use it for devpts.sh. (closes:Bug#45867,#45879,#45880,#45885,#45895)
Bitch-slap perl maintainers. :)
* debian/rules: nscd: run nscd.conf through sed 's/adm/log/'.
* debian/patches/sparc-llnux-chown.dpatch: Update from Ben Collins.
* debian/sysdeps.mk: Drop sparc-linux depends back to libc6 (>= 2.0.105).
-- Joel Klecker <espy@debian.org> Fri, 24 Sep 1999 12:39:26 -0700
glibc (2.1.2-3) unstable; urgency=low
* The "Pot-smoking Pikachu" release.
* debian/rules: Don't install ldd man page on i386/m68k (closes:Bug#45421).
check: Don't depend on build.
Symlink db_dump185 manpage to db_dump manpage (closes:Bug#42322).
$(libc)-pic: Install map file for libm.
Install map files as $(libdir)/libfoo_pic.map.
* debian/patches/zh_TW.Big5-locale.dpatch:
Split into localedata-charmap-BIG5_1984 and localedata-zh_TW.Big5.
* debian/patches/eo_EO-locale.dpatch: Rename to...
localedata-eo_EO.
* debian/patches/localedata-SUPPORTED.dpatch: New file.
Add eo_EO, es_AR (closes:Bug#37162), zh_CN.GB2312 (closes:Bug#38553),
zh_TW.Big5.
* debian/patches/pthread_create-manpage.dpatch: New file.
Correct pthread_create manpage to match texinfo documentation
(closes:Bug#22119).
-- Joel Klecker <espy@debian.org> Wed, 22 Sep 1999 19:16:01 -0700
glibc (2.1.2-2) unstable; urgency=low
* The "Bite Me" release.
* debian/rules: $(libc): strip pt_chown.
Don't install ldd on i386/m68k.
Query dpkg-architecture variables individually.
Use bunzip2 -c ... | tar xf - instead of tar yxf.
$(libc)-pic: Add libm_pic.a.
check: New target; run test suite.
Call make with SHELL=/bin/bash, as the test suite seems to rely on
bash behavior.
Use --strip-unneeded (closes:Bug#40467).
* debian/sysdeps.mk: reorganize.
* debian/patches/generic-getenv.dpatch: New file.
1999-09-10 Andreas Schwab <schwab@suse.de>
* sysdeps/generic/getenv.c (getenv): Fix lookup for single
character variable on bigendian platforms without unaligned memory
access.
-- Joel Klecker <espy@debian.org> Thu, 16 Sep 1999 14:41:28 -0700
glibc (2.1.2-1) unstable; urgency=low
* The "Gone Evil" release.
* glibc 2.1.2 final.
- Properly free mmaps for archs without spinlocks in db2 (closes:Bug#43786).
* debian/rules: configure: Fix hurd part (missing \).
Add frame.o hack for alpha.
Use CFLAGS instead of default_cflags.
Create srcdir for each arch.
Remove arch/indep patch split.
New directory layout (build/foo-<arch> -> build/<arch>/foo).
Use bz2 tarballs.
* debian/patches/sparc-linux-types.dpatch: Remove, applied upstream.
* devpts.sh never used any bashisms (closes:Bug#43296).
-- Joel Klecker <espy@debian.org> Tue, 7 Sep 1999 05:00:58 -0700
glibc (2.1.2-0pre12) unstable; urgency=low
* The "Espy's Birthday" release.
* debian/rules: (libc-pic) strip debugging symbols from *_pic.a.
interp.o is no longer needed.
* debian/patches/sparc-linux-types.dpatch: New file.
1999-07-25 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/unix/sysv/linux/sparc/bits/types.h: Define always
__qaddr_t.
__ino64_t should be 32bit unsigned type on sparc32.
Define __off64_t to __quad_t instead of __int64_t.
Make __pic_pid_t unsigned on sparc32.
* Really change maintainer name to Debian GNU C Library Maintainers.
* debian/control.in-libc: s/m@archs@/many/ (closes:Bug#43657).
* debian/devpts.init: Check if devpts is already mounted before trying
to mount it. (closes:Bug#43658,#43659).
Remove exit 0 from end (closes:Bug#42541)
* Fixed upstream: db_dump185 now linked with libdb1 (closes:Bug#42898).
-- Joel Klecker <espy@debian.org> Sun, 29 Aug 1999 07:51:16 -0700
glibc (2.1.2-0pre11) unstable; urgency=high
* The "Lesbian Seagull" release.
* glibc 2.1.2pre3.
-- Joel Klecker <espy@debian.org> Wed, 25 Aug 1999 15:33:23 -0700
glibc (2.1.2-0pre10) unstable; urgency=low
* The "Crack-smoking Squirrel" release.
* CVS as of 1999-08-21.
* Change maintainer name to Debian GNU C Library Maintainers.
-- Joel Klecker <espy@debian.org> Sat, 21 Aug 1999 10:57:42 -0700
glibc (2.1.2-0pre9) unstable; urgency=low
* The "Son of Drunken Iceweasel" release.
* Compile with gcc 2.95.1.
* CVS as of 1999-08-18.
-- Joel Klecker <debian-glibc@lists.debian.org> Wed, 18 Aug 1999 11:11:29 -0700
glibc (2.1.2-0pre8) unstable; urgency=low
* The "Drunken Iceweasel" release.
* Compile with gcc 2.95.1-0pre1.
* Remove explicit -march=i386 on i386, it's no longer needed.
-- Joel Klecker <debian-glibc@lists.debian.org> Sun, 15 Aug 1999 08:34:55 -0700
glibc (2.1.2-0pre7) unstable; urgency=low
* The "Evil Mastermind" release.
* CVS as of 1999-08-09.
* debian/patches/arm-osabi.dpatch: "...and another patch bites the dust"
(functionality integrated upstream).
* Add -march=i386 on i386 to work around gcc lossage.
-- Joel Klecker <debian-glibc@lists.debian.org> Tue, 10 Aug 1999 01:54:57 -0700
glibc (2.1.2-0pre6) unstable; urgency=low
* The "Stoned Monkey" release.
* More adjustments for multi-arch build tree.
* Split patch rules into debian/patch-rules.mk.
* Divide patch system into indep and arch patches.
* Update sources to CVS as of 1999-08-08 (closes:Bug#42579,#42343).
- I think perhaps this will fix the StarOrifice problem too.
-- Joel Klecker <debian-glibc@lists.debian.org> Sun, 8 Aug 1999 21:11:12 -0700
glibc (2.1.2-0pre5) unstable; urgency=low
* The "Chainsaw Psycho" release.
* Install zdump in $(bindir).
* Fix 3l33t control frags system for "weird" architectures. ;)
* Avoid using DEB_*_ARCH variables, for they are evil. :)
-- Joel Klecker <debian-glibc@lists.debian.org> Fri, 6 Aug 1999 05:34:55 -0700
glibc (2.1.2-0pre4) unstable; urgency=low
* 2.1.2pre2.
* Run testsuite in build target.
* $(libc)-pic: Provides: glibc-pic.
* Logging is back.
* Update copyright file.
-- Joel Klecker <debian-glibc@lists.debian.org> Sun, 1 Aug 1999 17:58:49 -0700
glibc (2.1.2-0pre3) unstable; urgency=low
* CVS as of 19990730.
* Implement new debian/control-frags system.
* $(libc)-pic is back.
* {gconv-modules,$(libc)-{pic,dev,dbg,prof}}:
doc dirs are directories again.
-- Joel Klecker <debian-glibc@lists.debian.org> Fri, 30 Jul 1999 10:52:06 -0700
glibc (2.1.2-0pre2) unstable; urgency=low
* debian/rules: Fix typo that prevented all the linux-specific
patches from being applied.
-- Joel Klecker <debian-glibc@lists.debian.org> Mon, 26 Jul 1999 14:44:46 -0700
glibc (2.1.2-0pre1) unstable; urgency=low
* New upstream pre-release 2.1.2pre1.
* debian/depflags.mk.
- (libc_dev_control_flags):
Add conflicts to alpha/i386/m68k for libncurses4-dev (<< 4.2-3.1) and
libreadlineg2-dev (<< 2.1-13.1).
- (libc_control_flags):
Add conflicts to alpha/i386/m68k for libglib1.2 (<< 1.2.1-2).
* devpts.init:
- Cope with EXTRAVERSION in uname -r (closes:Bug#41064,#41389).
- Don't worry about /dev/ptmx anymore, glibc now checks for a mounted
devpts filesystem as well as an existing /dev/ptmx.
* debian/patches/{ieee754_y0,linux-mmap64,libio-oldiopopen}.dpatch:
Removed; applied upstream.
* debian/patches/arm-{dynamiclinker,tftp}.dpatch:
Removed; applied upstream.
* debian/patches/arm-string.dpatch:
Remove string/endian.h part (applied upstream) and rename to arm-ieee754.
* Disable building of $(libc)-pic, the boot-floppies library
reduction hack doesn't work anyway.
* Adjusted rules for dpkg-architecture and reworked source unpacking
to handle snapshot upstream versions better.
* Use suidmanager for pt_chown.
* More fully adopt dpkg-architecture system.
* Correct libc.preinst for sparc.
* Set sparc shlib_depend to $(libc) (>= 2.1) per request.
-- Joel Klecker <debian-glibc@lists.debian.org> Sat, 24 Jul 1999 12:35:05 -0700
glibc (2.1.1-13) unstable; urgency=low
* debian/devpts.init: Revise again.
* debian/rules: debian/shlibs: Add special case for libdb1.
* debian/sysdeps.mk: Add cflags variable and i386 hack
(hopefully this will allow the library to run on 386es again).
* Use 2.2.10 kernel headers by default on *-linux targets.
* Docs in /usr/share/doc.
* debian/control.in: Update Standards-Version to 3.0.0.
* debian/fhs.dpatch: Adjust for FHS 2.1pre2 /var/mail wording.
* debian/libc.postinst: Symlink /var/mail to /var/spool/mail.
* Integrate changes from Jim Pick's NMUs for arm (closes:#40927,#40479,#40691).
* debian/patches/ieee754_y0.dpatch: Upstream fix for yn() issue.
* debian/patches/linux-mmap64.dpatch: Fix for mmap64() on powerpc
(maybe others too).
* debian/patches/libio-oldiopopen.dpatch: Fix for glibc 2.0 compat popen().
* debian/copyright:
- Update URLs
- Add libio license
- s%/usr/doc/copyright%/usr/share/common-licenses%
-- Joel Klecker <debian-glibc@lists.debian.org> Wed, 7 Jul 1999 17:36:23 -0700
glibc (2.1.1-12.3) unstable; urgency=low
* Non-maintainer upload.
* Oops, messed up tftp patch for ARM.
-- Jim Pick <jim@jimpick.com> Wed, 7 Jul 1999 00:15:48 -0700
glibc (2.1.1-12.2) unstable; urgency=low
* Non-maintainer upload.
* Another patch for ARM to fix tftp struct alignment problem.
-- Jim Pick <jim@jimpick.com> Thu, 1 Jul 1999 09:38:02 -0700
glibc (2.1.1-12.1) unstable; urgency=low
* Non-maintainer upload.
* Include patch for ARM to fix dynamic linker.
-- Jim Pick <jim@jimpick.com> Thu, 17 Jun 1999 21:11:59 -0700
glibc (2.1.1-12) unstable; urgency=low
* debian/rules: Use /var/lib/misc here too.
* debian/tzconfig: Fix #! line.
* debian/libc.postinst: Minor adjustments.
-- Joel Klecker <debian-glibc@lists.debian.org> Tue, 15 Jun 1999 09:24:49 -0700
glibc (2.1.1-11) unstable; urgency=low
* debian/patches/glibcbug.dpatch: New file.
- Fixes glibcbug to use `sensible-editor'
* debian/patches/fhs.dpatch: Deal with _PATH_VARDB.
* debian/patches/m68k-chown.dpatch: Fix paths (closes:Bug#37933).
* $(libc): Add HTML version of glibc FAQ.
* tzselect is crap, restore old version of tzconfig.
* Use 2.2.9 kernel headers by default on *-linux targets.
-- Joel Klecker <debian-glibc@lists.debian.org> Sun, 13 Jun 1999 09:34:41 -0700
glibc (2.1.1-10) unstable; urgency=low
* debian/libc.postinst: Redirect stdout/stderr to /dev/null when
restarting services (closes:Bug#38413).
* debian/patches/fhs.dpatch: Alter slightly for FHS 2.1 draft.
-- Joel Klecker <debian-glibc@lists.debian.org> Mon, 31 May 1999 01:45:27 -0700
glibc (2.1.1-9) unstable; urgency=low
* 2.1.1 final (closes:Bug#38178).
* -7 was accidentally/intentionally compiled with gcc 2.95pre.
* -8 was a local build.
-- Joel Klecker <debian-glibc@lists.debian.org> Mon, 24 May 1999 22:10:01 -0700
glibc (2.1.1-8) unstable; urgency=low
* Rebuild with egcs 1.1.2.
(/me hides)
-- Joel Klecker <debian-glibc@lists.debian.org> Sun, 23 May 1999 21:28:29 -0700
glibc (2.1.1-7) unstable; urgency=low
* Make sure all patches get applied (closes:Bug#37951,Bug#37974).
* Fixes for m68k via Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
- (debian/rules): Add new m68k-chown patch (closes:Bug#38048).
- (debian/depflags.mk): Fix m68k case (closes:Bug#37933).
* There were some localedata changes in format between -5 and -6
(closes:Bug#37850,Bug#37822,Bug#37829).
* Add patch to fix install-locales target when localedata is not installed.
* Build locales in the `locales' target
(no sense building them in the arch-indep install target).
-- Joel Klecker <debian-glibc@lists.debian.org> Thu, 20 May 1999 14:02:15 -0700
glibc (2.1.1-6) unstable; urgency=low
* 2.1.1pre3.
* (debian/rules): Set BASH and KSH to /bin/bash in configparms.
* (debian/libc.preinst): sparc fix (closes:Bug#37415,Bug#37616).
* (debian/nscd.prerm): Stop nscd before removing it (closes:Bug#37416).
-- Joel Klecker <debian-glibc@lists.debian.org> Mon, 17 May 1999 19:29:12 -0700
glibc (2.1.1-5) unstable; urgency=low
* CVS as of 1999-05-08.
-- Joel Klecker <debian-glibc@lists.debian.org> Sat, 8 May 1999 19:31:52 -0700
glibc (2.1.1-4) unstable; urgency=low
* Fix logic errors in tzconfig.
-- Joel Klecker <debian-glibc@lists.debian.org> Sat, 8 May 1999 00:07:44 -0700
glibc (2.1.1-3) unstable; urgency=low
* 2.1.1pre2.
* glibc-compat 2.1.0.
* debian/copyright: Update URLs for upstream source locations.
* debian/devpts.init: Rewrite for more sensible handling of devfs.
* debian/libc.postinst: Be more paranoid about /etc/timezone, and
always remake /etc/localtime symlink.
* debian/sysdeps.mk: Add sparc to HAVE_LIBC4 to deal with lddlibc4.
* debian/rules: Don't apply sparc32-ldd patch.
* debian/patches/sparc32-ldd.dpatch: delete.
-- Joel Klecker <debian-glibc@lists.debian.org> Fri, 7 May 1999 10:40:11 -0700
glibc (2.1.1-2) unstable; urgency=low
* $(libc): replace locales << 2.1.1-1
* debian/depflags.mk: clean up
* debian/control.in: locales: remove depend on @libc@ (closes:Bug#36654).
* debian/devpts.sh: Remove bashisms (closes:Bug#36552).
* debian/libc.postinst:
- Use ln -sf instead of zic -l (closes:Bug#36305).
- If upgrading from glibc 2.0, restart services potentially affected
by libnss_* upgrade.
* debian/libc.preinst: Add kernel version sanity check for sparc.
* debian/rules:
- Fix reverse-patches target (closes:Bug#36574).
- Fix libexecdir handling (closes:Bug#36673).
- locales is binary-all, so build it in binary-indep, not binary-arch.
* debian/sysdeps.mk: $(shlib_depend): >= 2.0.105 for sparc.
* locales: Add eo_EO (Esperanto) locale definition.
-- Joel Klecker <debian-glibc@lists.debian.org> Sat, 1 May 1999 22:22:22 -0700
glibc (2.1.1-1) unstable; urgency=low
* Using maintainer versions now; 2.1.1 is still in pre-release.
* CVS as of 1999-04-19.
* Upgrade glibc-compat addon.
* Add kernel version sanity check to nscd init script.
* Slight tweaks to devpts.sh init script.
* Remove hurd-fcntl patch, it is applied upstream.
* Fix libc.preinst libnss code.
* Symlink /var/db to /var/state/glibc for backward compatibility.
* Add zh_TW.Big5 locale and BIG5_1984 charmap.
* Revert to ln -sf instead of zic -l in tzconfig (closes:Bug#36305).
* Add latest version of sparc32-chown patch.
* Move architecture-dependant parts of locales to other packages
and make it Architecture: all.
* Move locale and localedef to $(libc); and split gconv-modules into its
own package.
-- Joel Klecker <debian-glibc@lists.debian.org> Tue, 20 Apr 1999 15:09:18 -0700
glibc (2.1.1-0.2) unstable; urgency=low
* Upgrade to latest CVS sources.
- Fixes ttyname problem which affected screen (closes:Bug#35695).
- libio backward compatibility fixes.
- Many other fixes.
* Put manpages in /usr/share/man, info in /usr/share/info.
* Add devpts.sh init script and /etc/default/devpts to configure it.
* Better FHS compliance.
- /var/db -> /var/state/glibc.
- --libexecdir=/usr/lib (my reading of the FHS seems to allow
executables directly in /usr/lib).
-- Joel Klecker <espy@debian.org> Wed, 7 Apr 1999 14:47:08 -0700
glibc (2.1.1-0.1) unstable; urgency=low
* Now using NMU-style versions for prereleases.
* Don't start utmpd.
* Somehow the old nss modules (libnss_*.so.1) slipped out
of the last release, put them back.
* Let libc keep its x bit.
(executing it presents some interesting output)
-- Joel Klecker <espy@debian.org> Wed, 17 Mar 1999 00:44:44 -0800
glibc (2.1.1-0pre1.3) unstable; urgency=low
* Fix source package.
* $(libc)-dbg: Install libpthread (closes:Bug#34461).
* $(libc): Add note about devpts and services to postinst.
- Recreate databases in /var/db if upgrading from glibc 2.0.x
(closes:Bug#34442)
- i386, alpha, m68k: Conflict with libtricks, apt (<< 0.1.10.1).
* Change default_cflags to -O2 -g.
* Allow make check to fail.
-- Joel Klecker <espy@debian.org> Sat, 13 Mar 1999 15:14:50 -0800
glibc (2.1.1-0pre1.2) unstable; urgency=low
* strip shared libs with --strip-debug instead of --strip-unneeded.
* Loosened shlibs depend.
-- Joel Klecker <espy@debian.org> Fri, 12 Mar 1999 22:33:01 -0800
glibc (2.1.1-0pre1.1) unstable; urgency=low
* Fix $(libc) replaces on i386.
-- Joel Klecker <espy@debian.org> Fri, 12 Mar 1999 14:47:28 -0800
glibc (2.1.1-0pre1) unstable; urgency=low
* New upstream release.
* Really release this one to unstable.
-- Joel Klecker <espy@debian.org> Wed, 10 Mar 1999 09:14:29 -0800
glibc (2.1-4) unstable; urgency=low
* First release for unstable.
* Add glibc-compat addon.
* $(libc): Conflict with libwcsmbs
- Start utmpd and touch /var/run/utmpx, /var/log/wtmpx.
* $(libc)-dbg: Install unstripped shared libs in /usr/lib/glibc_dbg.
* $(libc)-prof: Strip libraries.
* glibc-doc: Remove cruft from top-level of info dir.
* Split nscd into separate package.
* Fixed $KERNEL_SOURCE handling.
* Bugs fixed: 19264, 22788, 26148, 26306, 30609, 30773, 31415
(will elaborate later :)
-- Joel Klecker <espy@debian.org> Fri, 5 Mar 1999 11:29:44 -0800
glibc (2.1-3) unstable; urgency=low
* (debian/depflags.mk):
- Correct typo
- Add libc_dev_control_flags for Conflicts
-- Joel Klecker <espy@debian.org> Mon, 8 Feb 1999 03:22:27 -0800
glibc (2.1-2) unstable; urgency=low
* Get shlibs file dependencies correct.
-- Joel Klecker <espy@debian.org> Sat, 6 Feb 1999 22:56:22 -0800
glibc (2.1-1) unstable; urgency=low
* New upstream release.
* (debian/control.in): Update maintainer address.
* (debian/depflags.mk):
$(libc): conflict and replace timezone, timezones; replace libdb2
* (debian/rules):
$(libc)-dev: copy subdirectories from $(KERNEL_HEADERS)/linux too.
timezones: remove
$(libc): Put timezone data, and the zic and zdump utils here
* Sync with HURD again.
* Removed hurd-utimes patch, it is integrated upstream.
-- Joel Klecker <espy@debian.org> Sat, 6 Feb 1999 12:26:10 -0800
glibc (2.0.112-1) unstable; urgency=low
* New upstream release.
* (debian/rules): New system for applying patches
* (patches/2.0.112-i386-libm): Fixes for some libm routines.
-- Joel Klecker <espy@debian.org> Sat, 30 Jan 1999 23:34:47 -0800
glibc (2.0.112-0.1) unstable; urgency=low
* Non-maintainer upload.
* New upstream release.
* Delete patches glibc-2.0.111-config, glibc-2.0.111-arm-dl-machine,
since they have been merged upstream.
* Edit and rename patch glibc-2.0.111-arm-string to
glibc-2.0.112-arm-string since this has been partially merged.
* New patch, glibc-2.0.112-hurd-utimes from Mark Kettenis to fix Single
Unix compliance for utimes.
-- Gordon Matzigkeit <gord@debian.org> Sat, 30 Jan 1999 18:28:09 -0800
glibc (2.0.111-1.1) unstable; urgency=low
* NMU to update Hurd packages.
* Change Hurd rules so that glibc works correctly whether or not /usr
is a symlink to the root directory.
* Make sure libSegFault.so doesn't appear in the -dev package.
* Be sure to apply patches before configuring.
* Force glibc-doc to be `Architecture: all' for sloppy cross-builders.
-- Gordon Matzigkeit <gord@debian.org> Tue, 26 Jan 1999 18:28:24 -0800
glibc (2.0.111-1) experimental; urgency=low
* New upstream release.
-- Joel Klecker <espy@debian.org> Thu, 21 Jan 1999 20:06:48 -0800
glibc (2.0.110-1) experimental; urgency=low
* New upstream release.
* Incorporate Hurd patches from Gordon Matzigkeit.
* Debian release for experimental.
* Radical change in packaging.
-- Joel Klecker <espy@debian.org> Mon, 11 Jan 1999 01:26:56 -0800
glibc (2.0.109-1) unstable; urgency=low
* New upstream release.
* Delete patches that have been merged: arm-string, arm-dl-machine.
* Put libSegFault.so into the libc6 package, not libc6-dev.
* Many Hurd packaging tweaks.
* Add debian/patches/hurd-fcntl to simulate whole-file fcntl locking
using flock on the Hurd. From Roland McGrath.
* Add debian/patches/hurd-ldflags to avoid linking libmachuser and
libhurduser against libc. From Mark Kettenis.
* Add a stubbed ldconfig for the Hurd, and make libc0.2 provide ldso.
-- Gordon Matzigkeit <gord@debian.org> Thu, 7 Jan 1999 09:37:23 -0900
glibc (2.0.7-19981211-1) frozen unstable; urgency=low
* Changed version to match reality.
- reality is there will not be a "real" release of glibc 2.0.7,
and I'd like to use an honest version.
- The glibc 2.0 CVS branch is stable, regardless of whether or
not it has a "warm-fuzzy" version number.
- The date comes from the last entry in the ChangeLog.
* Reinstated proper conditional for `init u'
(I forgot libc/postinst.in clobbers libc/postinst).
* Integrated patches from current RedHat source rpm.
* Add libdb man pages from RedHat (closes:Bug#23547,13163,13217,26105,19072).
* Fix filenames in $(libc)-pic package (closes:Bug#30904).
* (timezones): Added man pages for zic and zdump (closes:Bug#10395,27943).
* Use glibc 2.1 version of db-Makefile (handles shadow.db safely).
* Begrudgingly added m68k lchown patch from Bug#29497
(If any glibc developers see this: don't blame me, I was told
in no uncertain terms that the Debian/m68k folks will apply
this patch to their libc over my dead body if necessary).
* Install glibc's ldd even on architectures with libc5.
* Rewrite debian/shlibs generation again; this time nothing is hard-coded.
* Various things I've forgotten.
-- Joel Klecker <espy@debian.org> Sun, 3 Jan 1999 22:09:41 -0800
glibc (2.0.7v-1) frozen unstable; urgency=low
* New maintainer.
* Upgrade to current CVS sources (bug fixes).
* Use unified debian/ directory (see previous changelog entry).
* Change required sysvinit version for "init u" to >= 2.76-1
since previous versions of sysvinit had a dangerous bug related to
"init u" on alpha.
* Fix up libstdc++ conflicts.
* [locales] Move /usr/share/locale/locale.alias to /etc/locale.alias
and make it a conffile (closes:Bug#23444).
* [doc] Regenerate info from texinfo sources (closes:Bug#29289,26984,27120).
* Add patch to enable --with-headers configure argument for glibc 2.0.
* Moved glibcbug and makedb to lib package.
* Install nss/db-Makefile (contains rules to generate database versions of
system configuration files such as /etc/passwd and /etc/group) as
/var/db/Makefile in lib package.
-- Joel Klecker <espy@debian.org> Wed, 9 Dec 1998 18:20:54 -0800
glibc-pre2.1 (2.0.106-1) unstable; urgency=low
* Integrated Jim Pick's ARM patches.
* [debian/guessvers]:
- renamed from debian/versions
- glibc 2.0 doesn't have an up to date
linuxthreads/Banner, use linuxthreads/Makefile instead
* [debian/mkshlibs]:
- adjust dependencies for glibc 2.0
- minor cleanup
* [debian/rules]:
- Adjust conditionals for determining arguments to pass to configure.
- Handle conditionals for kernel headers better.
- Hopefully fixed hurd support.
- add glibc argument for versions call.
- add conflicts libstdc++2.9 << 2.91.59-2 and libstdc++2.8 = 2.90.29-1
for i386 libc_control_flags.
- (timezones) glibc 2.0 has time/README, not timezones/README.
- (binary-lib) move creation of glibc 2.1-specific dirs into appropriate
conditionals.
- (binary-dbg) Move catchsegv and libSegFault.so into this package.
- (binary-pic) Install versioning map for glibc 2.1.
- Various fixes for stupid bugs.
- Use suidregister for glibc 2.1's pt_chown helper program.
- Fixes to doc-base support.
- probably some other things I've forgotten :)
* Patch glibc 2.0 localedata/Makefile to not use chroot (needed for fakeroot
to work as the -r command).
* I actually tried this debian/ dir with glibc 2.0.7u and it generates
usuable packages. (this is the reason for all the changes) ;-)
-- Joel Klecker <espy@debian.org> Tue, 8 Dec 1998 07:53:38 -0800
glibc (2.0.7u-7.1) frozen unstable; urgency=low
* Non-maintainer release.
* Remove unnecessary dpkg conflicts.
* Add libstdc++2.8 << 2.90.29-2 and libstdc++2.9 << 2.91.59-1
conflicts.
-- Joel Klecker <espy@debian.org> Fri, 4 Dec 1998 23:31:52 -0600
glibc (2.0.7u-7) frozen unstable; urgency=high
* removed conflict with sysvinit by adding check in postinstall
* this should make the upgrade a bit smoother: fixes 28265
* fixed conflict expressions for dpkg exclusions and corrected
* previous entry in this changelog to conform to what was released.
* added thread debuging patch for Andreas Jellinghaus.
* removed version dependencies from shlibs file.
-- Dale Scheetz <dwarf@polaris.net> Wed, 2 Dec 1998 08:36:42 -0500
glibc (2.0.7u-6) frozen unstable; urgency=high
* applied Zack Weinberg's __register_frame_info patch: fixes #29450
* added conflicts for dpkg versions 1.4.0.28 thru 1.4.1
* compiled using gcc 2.7.2.3
* fixed locales so russian locale uses KOI8-R encoding
* fixed asinh MATH_INLINE definition: fixes #27516 and #27146
-- Dale Scheetz <dwarf@polaris.net> Mon, 23 Nov 1998 15:11:01 -0500
glibc (2.0.7u-5) frozen unstable; urgency=high
* put the fix for bug 28265 in the right place: fixes 29196
* did the same for bug 28333. The dependency has been removed.
* moved the creation of the control file to the clean target
* in the rules file so that the source builds with the correct
* control file.
-- Dale Scheetz <dwarf@polaris.net> Mon, 9 Nov 1998 12:46:45 -0500
glibc (2.0.7u-4) unstable; urgency=low
* Removed dependence on libc6 from libc6-doc: fixes 28333
* libc6 conflicts with sysvinit <<2.74, so init u will run: fixes 28265
-- Dale Scheetz <dwarf@polaris.net> Sun, 25 Oct 1998 16:18:50 -0500
glibc (2.0.7u-3) unstable; urgency=low
* Recovered glibcbug.in patch from 2.0.7r-1. fixes #27846
* Added 'init u' to the postinst script for libc. fixes #27403
-- Dale Scheetz <dwarf@polaris.net> Sun, 18 Oct 1998 12:18:41 -0400
glibc (2.0.7u-2) unstable; urgency=low
* added (>=2.0.7u) to shlibs, as this version is not backward compatible
* with earlier versions: fixes 27314
-- Dale Scheetz <dwarf@polaris.net> Thu, 1 Oct 1998 14:47:04 -0400
glibc (2.0.7u-1) unstable; urgency=low
* Upstream source release.
-- Dale Scheetz <dwarf@polaris.net> Sat, 19 Sep 1998 12:29:09 -0400
glibc (2.0.7t-2) frozen unstable; urgency=high
* Fixed upstream rtld.c patch
-- Dale Scheetz <dwarf@polaris.net> Mon, 20 Jul 1998 21:58:28 -0400
glibc (2.0.7t-1) frozen unstable; urgency=high
* upstream source fixes security hole in rtld.c patch
* upstram patches to linuxthreads
* fixed preinstall to only remove symbolic links for backward compatibility
-- Dale Scheetz <dwarf@polaris.net> Thu, 16 Jul 1998 20:17:05 -0400
glibc (2.0.7s-1) frozen unstable; urgency=high
* extensive patching indicated time to sync source with CVS archive
* fixes 24103, 22266, 16434, 16912, 19797, 24002, 13315
* included Debian patches for rtld.c, as upstream patch fails.
-- Dale Scheetz <dwarf@polaris.net> Mon, 13 Jul 1998 11:35:10 -0400
glibc (2.0.7r-5) frozen unstable; urgency=high
* installed newer, better patch form Herber Xu with also repairs
* the problem with /etc/ld.so.preload: fixes 23893, 24201, 24216
-- Dale Scheetz <dwarf@polaris.net> Sat, 4 Jul 1998 13:40:07 -0400
glibc (2.0.7r-4) frozen unstable; urgency=high
* set tzconfig and tzview mode 755: fixes 24132
* added patch from Herber Xu for 'env LD_PRELOAD=/lib/libc.so.6 ls'
* so now both empty and populated strings work correctly
* and don't dump core: fixes 23893, 24201, 24216
-- Dale Scheetz <dwarf@polaris.net> Wed, 1 Jul 1998 14:29:56 -0400
glibc (2.0.7r-3) frozen unstable; urgency=high
* set mode bits on /usr/doc/lib6/* to 644: fixes 23847
* rewrote FAQ to match current practice: fixes 23863
* fixed details in copyright file: fixes 23861
* implimented upstream patches to nss
* cleaned up rules file access to kernel includes
* added code from David Engel to convert relative symlinks
* to absolute symlinks: fixes 21884
* rejuvinated the insecure use of temp patch, which disapeared
* somewhere between execution and release: re fixes 19797
* installed David Engel's patch for 'env LD_PRELOAD= ls' segfault
* and core dump: fixes 23893
-- Dale Scheetz <dwarf@polaris.net> Mon, 29 Jun 1998 10:57:42 -0400
glibc (2.0.7r-2) frozen unstable; urgency=high
* Installed forgotten patch for libc6-dev replacing libgdbmg1-dev
* fixes #21609, #21987, #22504, #22596 and #22663
-- Dale Scheetz <dwarf@polaris.net> Tue, 23 Jun 1998 13:53:08 -0400
glibc (2.0.7r-1) frozen unstable; urgency=high
* due to popular demand the version number has been changed
-- Dale Scheetz <dwarf@polaris.net> Mon, 22 Jun 1998 12:27:45 -0400
glibc (2.0.7-1) frozen unstable; urgency=high
* upstream release: fixes 20714
* upstream fixes for several bugs: fixes 20799, 22626, and 22790
* 20799 - getgrpnam does not return when group doesn't exist
* 22626 - network security fix
* 22790 - incorrect utmp loging, fixed with supplied patch
* fixed glibcbug.in for more secure use of /tmp: fixes 19797
* Linux kernel headers are now delivered in libc6-dev
* this removes the depenence on any kernel header packages.
* added Richard Braakman's man page for localedef: fixes 11589
* added Marcus Brinkmann's man pages for tzconfig, tzselect, and
* a script called tzview, to the timezones package: fixes 23512
-- Dale Scheetz <dwarf@polaris.net> Mon, 15 Jun 1998 15:20:09 -0400
glibc-pre2.1 (2.0.105-1) unstable; urgency=low
* New upstream release.
* Replaces glibc-corel for ARM architecture.
-- Jim Pick <jim@jimpick.com> Wed, 2 Dec 1998 17:46:05 -0800
glibc-pre2.1 (2.0.104-1) unstable; urgency=low
* New upstream release.
-- Joel Klecker <espy@debian.org> Thu, 26 Nov 1998 01:09:29 -0800
glibc-pre2.1 (2.0.103-1) unstable; urgency=low
* New upstream release.
-- Joel Klecker <espy@debian.org> Thu, 26 Nov 1998 01:08:33 -0800
glibc-pre2.1 (2.0.102-1) unstable; urgency=low
* New upstream release.
* [debian/libc-doc/{prerm,postinst,glibc-manual}]:
doc-base support.
* [debian/rules]: More glibc 2.0 compatibility.
-- Joel Klecker <espy@debian.org> Wed, 18 Nov 1998 23:24:02 -0800
glibc-pre2.1 (2.0.100-2.1) unstable; urgency=low
* port maintainer upload
* add another sparc patch (failsafe on getcwd in ld.so)
* fix sigaction not to return -1 when oact isn't given
(sparc specific)
-- Christian Meder <meder@isr.uni-stuttgart.de> Wed, 11 Nov 1998 18:52:52 +0100
glibc-pre2.1 (2.0.100-2) unstable; urgency=low
* Remove ldconfig and re-add the dependencies on ldso.
* Make debian/rules handle patching.
* Update sparc support, courtesy of Chris Meder.
-- Daniel Jacobowitz <glibc-maint@debian.org> Sun, 1 Nov 1998 19:37:04 -0500
glibc-pre2.1 (2.0.100-1) unstable; urgency=low
* New Upstream release.
-- Joel Klecker <glibc-maint@debian.org> Fri, 6 Nov 1998 00:26:06 -0800
glibc-pre2.1 (2.0.99-19981031-1) unstable; urgency=low
* Non-maintainer upload
* New upstream release from cvs
* included packaging changes from Joel Klecker <jk@espy.org>
* dropped powerpc ioctl patch, it's included upstream
* dropped most of the ancient sparc patches which shouldn't be
necessary anymore
* added chown/lchown handling similar to i386 (otherwise dpkg will break)
-- Daniel Jacobowitz <dan@debian.org> Sun, 1 Nov 1998 19:37:04 -0500
glibc-pre2.1 (2.0.99-19981024-1) unstable; urgency=low
* New upstream CVS release, with temporary patch from
Matt McLean for pread/pwrite powerpc bug.
-- Daniel Jacobowitz <dan@debian.org> Sat, 24 Oct 1998 14:03:04 -0400
glibc-pre2.1 (2.0.97-19981012-1) unstable; urgency=low
* New upstream release.
* Clean .mo files.
-- Daniel Jacobowitz <dan@debian.org> Tue, 13 Oct 1998 17:18:17 -0400
glibc-pre2.1 (2.0.97-1) unstable; urgency=low
* New upstream release.
* Packaging changes:
- debian/mkshlibs script rewritten
- glibc-only archs such as powerpc, arm, and alpha
no longer need depend on ldso or ldconfig
- $(LIBC)-doc is no longer Architecture: all
(the data may be arch independant, but the package itself isn't)
-- Joel Klecker <espy@debian.org> Wed, 7 Oct 1998 14:55:55 -0700
glibc-pre2.1 (2.0.95-980825-0.3) unstable; urgency=low
* Non-maintainer upload
* fix symlink for pthread (0.7 -> 0.8)
* include fix by David Miller for broken exception
handling (taken from 2.0.97); should fix the floating
point problems on Sparc architecture
-- Christian Meder <meder@isr.uni-stuttgart.de> Thu, 8 Oct 1998 17:56:25 +0200
glibc-pre2.1 (2.0.95-980825-0.2) unstable; urgency=low
* Non-maintainer upload
* bring sigaction.h on sparc in line with other architectures otherwise g++ barfs
* correct conflicting libc5 on sparc
-- Christian Meder <meder@isr.uni-stuttgart.de> Wed, 30 Sep 1998 11:42:08 +0200
glibc-pre2.1 (2.0.95-980825-0.1) unstable; urgency=low
* Non-maintainer upload
* New upstream version based on the packaging from Joel Klecker espy@debian.org
* incorporated the preliminary ioctl translation patch by Daniel Jacobowitz <dan@debian.org>
-- Christian Meder <meder@isr.uni-stuttgart.de> Thu, 20 Aug 1998 14:39:22 +0200
glibc-pre2.1 (2.0.95-1) unstable; urgency=low
* New release.
-- Joel Klecker <espy@debian.org> Wed, 28 July 1998 20:49:33 -0700
glibc-pre2.1 (2.0.93-980414-1) unstable; urgency=low
* New upstream version
* Added powerpc patches by Joel "Espy" Klecker <jk@espy.org>
-- Juan Cespedes <cespedes@debian.org> Mon, 20 Apr 1998 10:24:09 +0200
glibc-pre2.1 (2.0.92-980326-1) unstable; urgency=low
* New upstream version
* Corrected a group problem
-- Juan Cespedes <cespedes@debian.org> Tue, 7 Apr 1998 09:03:24 +0200
glibc-pre2.1 (2.0.92-980301-1) unstable; urgency=low
* New upstream version
* Changed source package name to be less sparc-centric
-- Juan Cespedes <cespedes@debian.org> Tue, 3 Mar 1998 08:25:40 +0100
glibc-sparc (2.0.91-980111-5) unstable; urgency=low
* Added soinit.so, sofini.so and interp.so to libc6-pic
-- Juan Cespedes <cespedes@debian.org> Wed, 11 Feb 1998 13:42:48 +0100
glibc-sparc (2.0.91-980111-4) unstable; urgency=low
* Fixed /etc/ld.so.preload handling
* Included .{u,}{div,mul,rem} in libc.map
* New maintainer address (Juan Cespedes <cespedes@debian.org>)
* New Standards-Version (2.4.0.0)
-- Juan Cespedes <cespedes@debian.org> Tue, 10 Feb 1998 16:10:55 +0100
glibc-sparc (2.0.91-980111-3) unstable; urgency=low
* Really removed `_IO_2_1_stdin_' warning now
* Include missing linux/version.h and linux/autoconf.h
* Replace /usr/include/asm-sparc with /usr/include/asm
-- Juan Cespedes <cespedes@debian.org> Thu, 22 Jan 1998 09:32:10 +0100
glibc-sparc (2.0.91-980111-2) unstable; urgency=low
* Workaround enabled fixing nasty `_IO_2_1_stdin_' bug
* Removed warning when using with a binary compiled with glibc-2.0.90
* Added shlibs entry: `Depends: libc6 (>= 2.0.91)'
-- Juan Cespedes <cespedes@debian.org> Mon, 19 Jan 1998 13:44:04 +0100
glibc-sparc (2.0.91-980111-1) unstable; urgency=low
* Not released version, due to `_IO_2_1_stdin_' bug
* New upstream version, including:
libc-980111
glibc-crypt-2.0.90
linuxthreads-971204
* Merged the `glibc_2.0.6-2' Debian diffs
* Fixed `getdomainname()' and other syscalls
* Added sparclinux-2.0-980106 kernel headers
* Fixed `strcmp()' when used with optimization
* Changed `select' so that it still works with older kernels
* Fixed getpagesize() bug (Anders Hammarquist <iko@netg.se>)
-- Juan Cespedes <cespedes@debian.org> Tue, 13 Jan 1998 01:05:45 +0100
glibc-sparc (2.0.90-971126-1) unstable; urgency=low
* non-maintainer release
* new source package name, to be able to upload sources to master
* new upstream version, including:
glibc-971126
glibc-crypt-2.0.90
glibc-linuxthreads-971105
glibc-localedata-971103
-- Juan Cespedes <cespedes@debian.org> Thu, 20 Nov 1997 16:14:40 +0100
glibc (2.0.90-970928-1) unstable; urgency=low
* new upstream version:
.glibc 970928 snapshot
.glibc-crypt 2.0.90
.glibc-linuxthreads 970813
.glibc-localedata 2.0.5
* Fix security hole in tzconfig. (11609)
-- Eric Delaunay <delaunay@lix.polytechnique.fr> Tue, 7 Oct 1997 11:44:16 +0200
glibc (2.0.90-970629-2) unstable; urgency=low
* added kernel_termios.h to standard includes
* added #include <bits/ioctl-types.h>
to sysdeps/unix/sysv/linux/sparc/bits/termios.h (provides <asm/ioctls.h>
needed, at least, by ncurses
* patched sysdeps/unix/sysv/linux/sparc/bits/ioctls.h for TCGETS/TCSETS macros
-- Eric Delaunay <delaunay@lix.polytechnique.fr> Wed, 16 Jul 1997 11:47:08 +0200
glibc (2.0.90-970629-1) unstable; urgency=low
* new Maintainer
* new upstream version
* Specific SPARC release because latest 2.0 public release doesn't support
SPARC architecture.
* work done on top of glibc 2.0.4-1 from standard Debian distribution:
. replaced glibc sources by a development snapshot (970629)
. replaced glibc-crypt sources by a development snapshot (970628)
. replaced glibc-linuxthreads sources by a development snapshot (2.0.90)
. replaced debian/include/asm-sparc by headers from sparclinux-2.0.30
. merged specific sparclinux-2.0.30 headers to debian/include/linux
-- Eric Delaunay <delaunay@lix.polytechnique.fr> Mon, 30 Jun 1997 14:14:40 +0200
glibc (2.0.7pre3-1) unstable; urgency=low
* This is the last (hopefully) pre-release of 2.0.7
* Locales now uses SUPPORTED in the rules file instead of do_locales
* Now provide changelog.gz and link ChangeLog.gz: fixes 13503
-- Dale Scheetz <dwarf@polaris.net> Wed, 15 Apr 1998 12:12:06 -0400
glibc (2.0.7pre1-4) unstable; urgency=low
* fixed date format in de_DE locales: fixes 9707
* applied strops.c upstream patch to handle MODE 0
* applied alpha patches for COMPAT-DEV: fixes 17776
* corrected directory for libc-pic .so libs to libc_pic
-- Dale Scheetz <dwarf@polaris.net> Sat, 7 Mar 1998 16:46:23 -0500
glibc (2.0.7pre1-3) unstable; urgency=low
* Upgraded replaces mandb to -41 : fixes 17498
* fixed timezone.postrm script : fixes 18642
-- Dale Scheetz <dwarf@polaris.net> Sun, 1 Mar 1998 19:02:48 -0500
glibc (2.0.7pre1-2) unstable; urgency=low
* removed kernel-source depends for libc6-dev
* and moved /usr/include/{linux,asm} links: fixes 16820, 17414, 16601
* added so libraries to the pic lib package : fixes 16586
* repaired priority field for timezones : fixes 16586
* corrected kernel version for m68k : fixes 18454
* added #include <gnu/types.h> to statsfbuf.h : fixes 10925
-- Dale Scheetz <dwarf@polaris.net> Sun, 22 Feb 1998 13:14:42 -0500
glibc (2.0.7pre1-1) unstable; urgency=low
* New upstream source
* Applied patch to s_modfl.c: fixes #17873
* Applied various upstream patches
-- Dale Scheetz <dwarf@polaris.net> Sun, 8 Feb 1998 16:45:39 -0500
glibc (2.0.6-3) unstable; urgency=low
* New Maintainer
* applied many upstream patches to libc6
-- Dale Scheetz <dwarf@polaris.net> Tue, 20 Jan 1998 12:45:05 -0500
glibc (2.0.6-2) unstable; urgency=low
* Fixed /etc/ld.so.preload handling.
-- David Engel <david@sw.ods.com> Tue, 30 Dec 1997 14:50:48 -0600
glibc (2.0.6-1) unstable; urgency=low
* New upstream version (2.0.6).
-- David Engel <david@sw.ods.com> Sun, 28 Dec 1997 15:09:41 -0600
glibc (2.0.6-0.6) unstable; urgency=low
* New upstream version (2.0.6pre6).
-- David Engel <david@sw.ods.com> Sat, 27 Dec 1997 23:34:43 -0600
glibc (2.0.6-0.5) unstable; urgency=low
* New upstream version (2.0.6pre5).
* Updated Debian README and FAQ for inclusion in upstream source.
* Changed libc6 to conflict with old libc5 packages.
* Changed libc6 to conflict with existing libpthread0 packages.
* Fixed libc6-dev to create /usr/include symlinks correctly.
* Changed libc6-dev to depend on either kernel-headers or kernel-source.
* Fixed libc6-doc to not include erroneous dir.gz.
-- David Engel <david@sw.ods.com> Mon, 22 Dec 1997 01:14:22 -0600
glibc (2.0.6-0.4) unstable; urgency=low
* New upstream version (2.0.6-pre4).
* Use and depend on kernel-headers-2.0.32 package for the kernel
header files.
* Remove obsolete patches from debian directory.
-- David Engel <david@sw.ods.com> Fri, 12 Dec 1997 00:20:57 -0600
glibc (2.0.6-0.3) unstable; urgency=low
* New upstream version (2.0.6-pre3).
-- David Engel <david@sw.ods.com> Tue, 9 Dec 1997 21:47:20 -0600
glibc (2.0.6-0.2) unstable; urgency=low
* New upstream version (2.0.6-pre2).
* New kernel headers (2.0.32).
* Fixed m68k build and dependency problems.
* Added Conflicts: libpthread0 (=0.6-1).
* Added INSTALL to /usr/doc at request of upstream maintainer.
-- David Engel <david@sw.ods.com> Wed, 19 Nov 1997 20:23:02 -0600
glibc (2.0.6-0.1) unstable; urgency=low
* New upstream version (2.0.6-pre1).
* New kernel headers (2.0.32-pre4).
-- David Engel <david@sw.ods.com> Fri, 14 Nov 1997 19:43:06 -0600
glibc (2.0.5c-0.1) unstable; urgency=low
* New upstream version. (10417,12304)
* Fix security hole in tzconfig. (11609)
* Patch linuxthreads for libstdc++
-- Guy Maor <maor@ece.utexas.edu> Fri, 3 Oct 1997 14:08:30 -0500
glibc (2.0.4-1) unstable; urgency=low
* new Maintainer
* new upstream version
* included asm-m68k fixes (James Troup <J.J.Troup@comp.brad.ac.uk>)
-- Helmut Geyer <Helmut.Geyer@iwr.uni-heidelberg.de> Fri, 23 May 1997 20:00:00 +0200
glibc (2.0.3-4) unstable; urgency=low
* Changed tzconfig to allow Canadian timezones to be selected by
name.
* Changed libc6-dev to legally replace parts of the man-db, gettext
and ppp packages (Bug#9815 abd Bug#9825).
-- David Engel <david@sw.ods.com> Thu, 15 May 1997 12:35:43 -0500
glibc (2.0.3-3) unstable; urgency=low
* Integrated Mike Dorman's patches for the alpha (Bug#9208,
Bug#9212 and Bug#9219).
-- David Engel <david@sw.ods.com> Mon, 5 May 1997 11:32:14 -0500
glibc (2.0.3-2) unstable; urgency=low
* Fixed a problem with the .orig.tar.gz file.
* Really moved from experimental to unstable.
* Added initial, integrated support for alpha architecture.
-- David Engel <david@sw.ods.com> Fri, 25 Apr 1997 15:15:37 -0500
glibc (2.0.3-1) experimental; urgency=low
* Updated to new upstream version.
* Moved from experimental section to unstable.
* Included man pages for linuxthreads.
-- David Engel <david@sw.ods.com> Tue, 22 Apr 1997 08:56:37 -0500
glibc (2.0.2-2) experimental; urgency=low
* Added a shlibs entry for /lib/ld-linux.so.2.
* Added symlinks to /usr/doc/libc6 for -dev, -dbg and -doc
packages.
-- David Engel <david@sw.ods.com> Fri, 4 Apr 1997 21:58:44 -0600
glibc (2.0.2-1) experimental; urgency=low
* Updated to new upstream version.
-- David Engel <david@sw.ods.com> Sat, 22 Mar 1997 11:53:16 -0600
glibc (2.0.1-2) experimental; urgency=low
* Changed to work with ldso-1.9.x.
* Changed to build with local kernel headers.
* Changed is_IS locale to match that from wg15-locale.
* Added compiled versions of locales.
* Added documentation from add-on packages.
* Fixed install problems with timezones.
* Moved libdb headers from /usr/include/db to /usr/include.
-- David Engel <david@sw.ods.com> Thu, 27 Feb 1997 19:57:25 -0600
glibc (2.0.1-1) experimental; urgency=low
* Initial packaging.
-- David Engel <david@debian.org> Thu, 20 Feb 1997 21:15:52 -0600
Local Variables:
mode: debian-changelog
add-log-mailing-address: "debian-glibc@lists.debian.org"
End:
|