glibc-vl.spec 183 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181
  1. %define glibcversion 2.23
  2. %define glibcsrcdir glibc-%{glibcversion}
  3. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  4. ### glibc.spec.in follows:
  5. %define run_glibc_tests 1
  6. %define auxarches athlon sparcv9v sparc64v alphaev6
  7. %if %{build_compat32}
  8. %define auxarches i586 athlon sparcv9 alphaev6
  9. %endif
  10. %define xenarches i686 athlon
  11. %ifarch %{xenarches}
  12. %define buildxen 1
  13. %define xenpackage 0
  14. %else
  15. %define buildxen 0
  16. %define xenpackage 0
  17. %endif
  18. %ifarch ppc64
  19. %define buildpower6 1
  20. %else
  21. %define buildpower6 0
  22. %endif
  23. %define biarcharches %{ix86} x86_64 ppc ppc64 s390 s390x
  24. %define debuginfocommonarches %{biarcharches} alpha alphaev6
  25. %define multiarcharches ppc ppc64 %{ix86} x86_64 %{sparc}
  26. # Remove -s to get verbose output.
  27. %define silentrules PARALLELMFLAGS=-s
  28. Summary: The GNU libc libraries
  29. Summary(ja): GNU libc ライブラリ
  30. Name: glibc
  31. Version: %{glibcversion}
  32. Release: 4%{?_dist_release}
  33. # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries.
  34. # Things that are linked directly into dynamically linked programs
  35. # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional
  36. # exception which allows linking it into any kind of programs or shared
  37. # libraries without restrictions.
  38. License: LGPLv2+ and LGPLv2+ with exceptions and GPLv2+
  39. Group: System Environment/Libraries
  40. URL: http://www.gnu.org/software/glibc/
  41. Source0: %{?glibc_release_url}%{glibcsrcdir}.tar.xz
  42. Source1: build-locale-archive.c
  43. Source2: glibc_post_upgrade.c
  44. Source3: libc-lock.h
  45. Source7: nsswitch.conf.vine
  46. Source10: find_provides_glibc.sh
  47. Source11: find_requires_glibc.sh
  48. # patches from Fedora
  49. Patch11: %{name}-2.23-nptl-linklibc.patch
  50. Patch12: %{name}-2.18-localedef.patch
  51. Patch13: %{name}-2.18-locarchive.patch
  52. # patch for Vine
  53. Patch10001: glibc-2.18-vine-build-env.patch
  54. # security
  55. Patch20000: CVE-2016-1234-1.patch
  56. Patch20001: CVE-2016-1234-2.patch
  57. Patch20002: CVE-2016-3075.patch
  58. Patch20003: CVE-2016-3706.patch
  59. Patch20004: CVE-2016-4429.patch
  60. Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  61. Obsoletes: glibc-profile < 2.4
  62. Provides: ldconfig
  63. # The dynamic linker supports DT_GNU_HASH
  64. Provides: rtld(GNU_HASH)
  65. Requires: glibc-common = %{version}-%{release}
  66. # Require libgcc in case some program calls pthread_cancel in its %%post
  67. Requires(pre): basesystem, libgcc
  68. # This is for building auxiliary programs like memusage, nscd
  69. # For initial glibc bootstraps it can be commented out
  70. BuildRequires: gd-devel libpng-devel zlib-devel texinfo
  71. BuildRequires: audit-libs-devel >= 1.1.3, sed >= 3.95, libcap-devel, gettext, nss-devel
  72. BuildRequires: /bin/ps, /bin/kill, /bin/awk
  73. # This is to ensure that __frame_state_for is exported by glibc
  74. # will be compatible with egcs 1.x.y
  75. BuildRequires: gcc >= 3.2
  76. %define enablekernel 2.6.32
  77. Conflicts: kernel < %{enablekernel}
  78. %define enablekernel 2.6.18
  79. %ifarch i386
  80. %define target_cpu i486
  81. %else
  82. %define target_cpu %{_target_cpu}
  83. %endif
  84. %define target %{_target_cpu}-vine-linux
  85. %ifarch %{arm}
  86. %define target %{_target_cpu}-vine-linuxeabi
  87. %endif
  88. %ifarch %{power64}
  89. %define target ppc64-vine-linux
  90. %endif
  91. %ifarch %{multiarcharches}
  92. # Need STT_IFUNC support
  93. %ifarch ppc ppc64
  94. BuildRequires: binutils >= 2.20.51.0.2
  95. Conflicts: binutils < 2.20.51.0.2
  96. %else
  97. BuildRequires: binutils >= 2.19.51.0.10
  98. Conflicts: binutils < 2.19.51.0.10
  99. %endif
  100. # Earlier releases have broken support for IRELATIVE relocations
  101. Conflicts: prelink < 0.4.2
  102. %else
  103. # Need AS_NEEDED directive
  104. # Need --hash-style=* support
  105. BuildRequires: binutils >= 2.17.50.0.2-5
  106. %endif
  107. BuildRequires: gcc >= 3.2.1-5
  108. %ifarch ppc s390 s390x
  109. BuildRequires: gcc >= 4.1.0-0.17
  110. %endif
  111. %if 0%{?_enable_debug_packages}
  112. BuildRequires: elfutils >= 0.72
  113. BuildRequires: rpm >= 4.2-0.56
  114. %endif
  115. # The testsuite builds static C++ binaries that require a static
  116. # C++ runtime from libstdc++-static.
  117. BuildRequires: libstdc++-static
  118. BuildRequires: tzdata
  119. %define __find_provides %{SOURCE10}
  120. %define __find_requires %{SOURCE11}
  121. %define _filter_GLIBC_PRIVATE 1
  122. Vendor: Project Vine
  123. Distribution: Vine Linux
  124. %description
  125. The glibc package contains standard libraries which are used by
  126. multiple programs on the system. In order to save disk space and
  127. memory, as well as to make upgrading easier, common system code is
  128. kept in one place and shared between programs. This particular package
  129. contains the most important sets of shared libraries: the standard C
  130. library and the standard math library. Without these two libraries, a
  131. Linux system will not function.
  132. %description -l ja
  133. glibc パッケージはシステム上の複数のプログラムで使われる標準ライブラリを
  134. ふくみます。ディスクスペースとメモリを節約したり、アップグレードを
  135. 用意にするために、共通のシステムコードは一つの場所におかれ、プログラム
  136. 間で共有されます。この部分的なパッケージはシェアドライブラリのかなり
  137. 重要なセットをふくみます: 標準 C ライブラリと標準数値ライブラリです。
  138. この二つのライブラリ抜きでは、Linux システムは機能しません。
  139. %package -n compat32-%{name}
  140. Summary: The GNU libc libraries.
  141. Summary(ja): GNU libc ライブラリ
  142. Group: System Environment/Libraries
  143. Requires: %{name} >= %{version}-%{release}
  144. %description -n compat32-%{name}
  145. The glibc package contains standard libraries which are used by
  146. multiple programs on the system. In order to save disk space and
  147. memory, as well as to make upgrading easier, common system code is
  148. kept in one place and shared between programs. This particular package
  149. contains the most important sets of shared libraries: the standard C
  150. library and the standard math library. Without these two libraries, a
  151. Linux system will not function.
  152. %description -n compat32-%{name} -l ja
  153. glibc パッケージはシステム上の複数のプログラムで使われる標準ライブラリを
  154. ふくみます。ディスクスペースとメモリを節約したり、アップグレードを
  155. 用意にするために、共通のシステムコードは一つの場所におかれ、プログラム
  156. 間で共有されます。この部分的なパッケージはシェアドライブラリのかなり
  157. 重要なセットをふくみます: 標準 C ライブラリと標準数値ライブラリです。
  158. この二つのライブラリ抜きでは、Linux システムは機能しません。
  159. %if %{xenpackage}
  160. %package xen
  161. Summary: The GNU libc libraries (optimized for running under Xen)
  162. Group: System Environment/Libraries
  163. Requires: glibc = %{version}-%{release}, glibc-utils = %{version}-%{release}
  164. %description xen
  165. The standard glibc package is optimized for native kernels and does not
  166. perform as well under the Xen hypervisor. This package provides alternative
  167. library binaries that will be selected instead when running under Xen.
  168. Install glibc-xen if you might run your system under the Xen hypervisor.
  169. %endif
  170. %package devel
  171. Summary: Object files for development using standard C libraries.
  172. Summary(ja): 標準 C ライブラリで使われるオブジェクトファイル
  173. Group: Development/Libraries
  174. Requires(pre): /sbin/install-info
  175. Requires(pre): %{name}-headers
  176. Requires: %{name}-headers = %{version}-%{release}
  177. Requires: %{name} = %{version}-%{release}
  178. %description devel
  179. The glibc-devel package contains the object files necessary
  180. for developing programs which use the standard C libraries (which are
  181. used by nearly all programs). If you are developing programs which
  182. will use the standard C libraries, your system needs to have these
  183. standard object files available in order to create the
  184. executables.
  185. Install glibc-devel if you are going to develop programs which will
  186. use the standard C libraries.
  187. %description devel -l ja
  188. glibc-devel パッケージには (ほとんどすべてのプログラムで使われる)
  189. 標準 C ライブラリを使用したプログラムを開発するためのオブジェクトファイルが
  190. 含まれます。標準 C ライブラリを使用するプログラムを開発する場合には、
  191. これらオブジェクトファイルを使用して実行ファイルを作成できます。
  192. 標準 C ライブラリを使用するプログラムを開発するなら glibc-devel
  193. をインストールしてください。
  194. %package -n compat32-%{name}-devel
  195. Summary: Object files for development using standard C libraries.
  196. Summary(ja): 標準 C ライブラリで使われるオブジェクトファイル
  197. Group: Development/Libraries
  198. Requires: %{name}-devel = %{version}-%{release}
  199. Requires: compat32-%{name} = %{version}-%{release}
  200. %description -n compat32-%{name}-devel
  201. The glibc-devel package contains the object files necessary
  202. for developing programs which use the standard C libraries (which are
  203. used by nearly all programs). If you are developing programs which
  204. will use the standard C libraries, your system needs to have these
  205. standard object files available in order to create the
  206. executables.
  207. Install glibc-devel if you are going to develop programs which will
  208. use the standard C libraries.
  209. %description -n compat32-%{name}-devel -l ja
  210. glibc-devel パッケージには (ほとんどすべてのプログラムで使われる)
  211. 標準 C ライブラリを使用したプログラムを開発するためのオブジェクトファイルが
  212. 含まれます。標準 C ライブラリを使用するプログラムを開発する場合には、
  213. これらオブジェクトファイルを使用して実行ファイルを作成できます。
  214. 標準 C ライブラリを使用するプログラムを開発するなら glibc-devel
  215. をインストールしてください。
  216. %package static
  217. Summary: C library static libraries for -static linking.
  218. Summary(ja): -static リンクのための静的 C ライブラリ
  219. Group: Development/Libraries
  220. Requires: %{name}-devel = %{version}-%{release}
  221. %description static
  222. The glibc-static package contains the C library static libraries
  223. for -static linking. You don't need these, unless you link statically,
  224. which is highly discouraged.
  225. %description static -l ja
  226. glibc-static パッケージには -static リンクで使用する静的 C ライブラリが
  227. 入っています。
  228. 静的ライブラリが必要な場合でなければ、このパッケージをインストールする
  229. ことは避けて下さい。
  230. %package -n compat32-%{name}-static
  231. Summary: C library static libraries for -static linking.
  232. Summary(ja): -static リンクのための静的 C ライブラリ
  233. Group: Development/Libraries
  234. Requires: %{name}-devel = %{version}-%{release}
  235. Requires: %{name}-static = %{version}-%{release}
  236. Requires: compat32-%{name}-devel = %{version}-%{release}
  237. %description -n compat32-%{name}-static
  238. The glibc-static package contains the C library static libraries
  239. for -static linking. You don't need these, unless you link statically,
  240. which is highly discouraged.
  241. %description -n compat32-%{name}-static -l ja
  242. glibc-static パッケージには -static リンクで使用する静的 C ライブラリが
  243. 入っています。
  244. 静的ライブラリが必要な場合でなければ、このパッケージをインストールする
  245. ことは避けて下さい。
  246. %package headers
  247. Summary: Header files for development using standard C libraries.
  248. Summary(ja): 標準 C ライブラリで使われるヘッダーファイル
  249. Group: Development/Libraries
  250. Provides: %{name}-headers(%{_target_cpu})
  251. %ifarch x86_64
  252. # If both -m32 and -m64 is to be supported on AMD64, x86_64 glibc-headers
  253. # have to be installed, not i586 ones.
  254. Obsoletes: %{name}-headers(i586)
  255. Obsoletes: %{name}-headers(i686)
  256. %endif
  257. Requires(pre): kernel-headers
  258. Requires: kernel-headers >= 2.2.1, %{name} = %{version}-%{release}
  259. BuildRequires: kernel-headers >= 2.6.22
  260. %description headers
  261. The glibc-headers package contains the header files necessary
  262. for developing programs which use the standard C libraries (which are
  263. used by nearly all programs). If you are developing programs which
  264. will use the standard C libraries, your system needs to have these
  265. standard header files available in order to create the
  266. executables.
  267. Install glibc-headers if you are going to develop programs which will
  268. use the standard C libraries.
  269. %description headers -l ja
  270. glibc-headers パッケージには (ほとんどすべてのプログラムで使われる)
  271. 標準 C ライブラリを使用したプログラムを開発するためのヘッダーファイルが
  272. 含まれます。標準 C ライブラリを使用するプログラムを開発する場合には、
  273. これら標準ヘッダーファイルを使用して実行ファイルを作成できます。
  274. 標準 C ライブラリを使用するプログラムを開発するなら glibc-headers
  275. をインストールしてください。
  276. %package common
  277. Summary: Common binaries and locale data for glibc
  278. Summary(ja): glibc 用共通バイナリとロケールデータ
  279. Requires: %{name} = %{version}-%{release}
  280. Requires: tzdata >= 2003a
  281. Group: System Environment/Base
  282. %description common
  283. The glibc-common package includes common binaries for the GNU libc
  284. libraries, as well as national language (locale) support.
  285. This package include ja and en locale-archive.
  286. %description common -l ja
  287. glibc-common パッケージには GNU libc ライブラリ用の共用バイナリに
  288. 加えて、言語(ロケール)サポートや時間帯データベースが収められています。
  289. このパッケージには日本語と英語のみの locale-archive が含まれます。
  290. %package common-extra
  291. Summary: Extra Locale data for glibc
  292. Summary(ja): glibc 用ロケールデータ(日本語以外)
  293. Autoreq: false
  294. Requires(pre): %{name}-common = %{version}-%{release}
  295. Group: System Environment/Base
  296. %description common-extra
  297. The glibc-common-extra package includes national language (locale)
  298. support except for English and Japanese.
  299. %description common-extra -l ja
  300. glibc-common-extra パッケージには GNU libc ライブラリ用の英語と
  301. 日本語以外の言語(ロケール)が収められています。
  302. %package -n nscd
  303. Summary: A Name Service Caching Daemon (nscd).
  304. Summary(ja): ネームサービスキャッシングデーモン (nscd)
  305. Group: System Environment/Daemons
  306. Requires: %{name} = %{version}-%{release}
  307. Requires: audit-libs >= 1.1.3
  308. Requires(pre): /sbin/chkconfig, /usr/sbin/useradd, /usr/sbin/userdel, sh-utils
  309. %description -n nscd
  310. Nscd caches name service lookups and can dramatically improve
  311. performance with NIS+, and may help with DNS as well.
  312. %description -n nscd -l ja
  313. nscd はネームサービス参照をキャッシュし、NIS+ のパフォーマンスを
  314. 劇的にに改善することができます。DNS のパフォーマンス向上にも同様に寄与します。
  315. %package utils
  316. Summary: Development utilities from GNU C library
  317. Summary(ja): GNU C ライブラリの開発ユーティリティ
  318. Group: Development/Tools
  319. Requires: %{name} = %{version}-%{release}
  320. %description utils
  321. The glibc-utils package contains memusage, a memory usage profiler,
  322. mtrace, a memory leak tracer and xtrace, a function call tracer
  323. which can be helpful during program debugging.
  324. If unsure if you need this, don't install this package.
  325. %description utils -l ja
  326. glibc-utils にはプログラムのデバッグに便利な以下のツールが収録されています:
  327. memusage (メモリ使用量プロファイラ)、mtrace (メモリリークトレーサ)、
  328. xtrace (関数呼出しトレーサ)。
  329. これらが必要かどうか分からない場合は、インストールする必要はありません。
  330. %if 0%{?_enable_debug_packages}
  331. %define debug_package %{nil}
  332. %define __debug_install_post %{nil}
  333. %global __debug_package 1
  334. %package debuginfo
  335. Summary: Debug information for package %{name}
  336. Group: Development/Debug
  337. AutoReqProv: no
  338. %ifarch %{debuginfocommonarches}
  339. Requires: glibc-debuginfo-common = %{version}-%{release}
  340. %else
  341. %ifarch %{ix86}
  342. Obsoletes: glibc-debuginfo-common
  343. %endif
  344. %endif
  345. %description debuginfo
  346. This package provides debug information for package %{name}.
  347. Debug information is useful when developing applications that use this
  348. package or when debugging this package.
  349. This package also contains static standard C libraries with
  350. debugging information. You need this only if you want to step into
  351. C library routines during debugging programs statically linked against
  352. one or more of the standard C libraries.
  353. To use this debugging information, you need to link binaries
  354. with -static -L%{_prefix}/lib/debug%{_prefix}/%{_lib} compiler options.
  355. %ifarch %{debuginfocommonarches}
  356. %package debuginfo-common
  357. Summary: Debug information for package %{name}
  358. Group: Development/Debug
  359. AutoReqProv: no
  360. %description debuginfo-common
  361. This package provides debug information for package %{name}.
  362. Debug information is useful when developing applications that use this
  363. package or when debugging this package.
  364. %endif
  365. %endif
  366. %prep
  367. %setup -q -n %{glibcsrcdir}
  368. %patch11 -p1
  369. %patch12 -p1
  370. %patch13 -p1
  371. %patch10001 -p1
  372. %patch20000 -p1
  373. %patch20001 -p1
  374. %patch20002 -p1
  375. %patch20003 -p1
  376. %patch20004 -p1
  377. # A lot of programs still misuse memcpy when they have to use
  378. # memmove. The memcpy implementation below is not tolerant at
  379. # all.
  380. rm -f sysdeps/alpha/alphaev6/memcpy.S
  381. %if %{buildpower6}
  382. # On powerpc32, hp timing is only available in power4/power6
  383. # libs, not in base, so pre-power4 dynamic linker is incompatible
  384. # with power6 libs.
  385. rm -f sysdeps/powerpc/powerpc32/power4/hp-timing.[ch]
  386. %endif
  387. find . -type f -size 0 -o -name "*.orig" -exec rm -f {} \;
  388. touch `find . -name configure`
  389. touch locale/programs/*-kw.h
  390. %build
  391. GCC=gcc
  392. GXX=g++
  393. %ifarch %{ix86}
  394. BuildFlags="-march=%{target_cpu} -mtune=generic"
  395. %endif
  396. %ifarch i686
  397. BuildFlags="-march=i686 -mtune=generic"
  398. %endif
  399. %ifarch i386 i486 i586
  400. BuildFlags="$BuildFlags -mno-tls-direct-seg-refs"
  401. %endif
  402. %ifarch x86_64
  403. BuildFlags="-mtune=generic"
  404. %endif
  405. %ifarch alphaev6
  406. BuildFlags="-mcpu=ev6"
  407. %endif
  408. %ifarch sparc
  409. BuildFlags="-fcall-used-g6"
  410. GCC="gcc -m32"
  411. GXX="g++ -m32"
  412. %endif
  413. %ifarch sparcv9
  414. BuildFlags="-mcpu=ultrasparc -fcall-used-g6"
  415. GCC="gcc -m32"
  416. GXX="g++ -m32"
  417. %endif
  418. %ifarch sparcv9v
  419. BuildFlags="-mcpu=niagara -fcall-used-g6"
  420. GCC="gcc -m32"
  421. GXX="g++ -m32"
  422. %endif
  423. %ifarch sparc64
  424. BuildFlags="-mcpu=ultrasparc -mvis -fcall-used-g6"
  425. GCC="gcc -m64"
  426. GXX="g++ -m64"
  427. %endif
  428. %ifarch sparc64v
  429. BuildFlags="-mcpu=niagara -mvis -fcall-used-g6"
  430. GCC="gcc -m64"
  431. GXX="g++ -m64"
  432. %endif
  433. %ifarch ppc64
  434. BuildFlags="-mno-minimal-toc"
  435. GCC="gcc -m64"
  436. GXX="g++ -m64"
  437. %endif
  438. BuildFlags="$BuildFlags -fasynchronous-unwind-tables"
  439. # Add -DNDEBUG unless using a prerelease
  440. case %{version} in
  441. *.*.9[0-9]*) ;;
  442. *)
  443. BuildFlags="$BuildFlags -DNDEBUG"
  444. ;;
  445. esac
  446. EnableKernel="--enable-kernel=%{enablekernel}"
  447. echo "$GCC" > Gcc
  448. AddOns=`echo */configure | sed -e 's!/configure!!g;s!\(linuxthreads\|nptl\|rtkaio\|powerpc-cpu\)\( \|$\)!!g;s! \+$!!;s! !,!g;s!^!,!;/^,\*$/d'`
  449. build()
  450. {
  451. builddir=build-%{target}${1:+-$1}
  452. ${1+shift}
  453. rm -rf $builddir
  454. mkdir $builddir
  455. pushd $builddir
  456. build_CFLAGS="$BuildFlags -g -O3 $* -Wno-error=unused-but-set-variable -Wno-error=unused-function"
  457. # Some configure checks can spuriously fail for some architectures if
  458. # unwind info is present
  459. configure_CFLAGS="$build_CFLAGS -fno-asynchronous-unwind-tables"
  460. ../configure CC="$GCC" CXX="$GXX" CFLAGS="$configure_CFLAGS" \
  461. --prefix=%{_prefix} \
  462. --enable-add-ons=$AddOns $EnableKernel \
  463. --with-headers=%{_prefix}/include --enable-bind-now \
  464. --build %{target} \
  465. --host %{target} \
  466. --enable-pt_chown \
  467. %ifarch %{multiarcharches}
  468. --enable-multi-arch \
  469. %endif
  470. --enable-obsolete-rpc \
  471. --enable-lock-elision \
  472. --disable-profile --enable-nss-crypt ||
  473. { cat config.log; false; }
  474. make %{?_smp_mflags} -r CFLAGS="$build_CFLAGS" PARALLELMFLAGS=-s
  475. popd
  476. }
  477. build
  478. %if %{buildxen}
  479. build nosegneg -mno-tls-direct-seg-refs
  480. %endif
  481. %if %{buildpower6}
  482. (
  483. platform=`LD_SHOW_AUXV=1 /bin/true | sed -n 's/^AT_PLATFORM:[[:blank:]]*//p'`
  484. if [ "$platform" != power6 ]; then
  485. mkdir -p power6emul/{lib,lib64}
  486. $GCC -shared -O2 -fpic -o power6emul/%{_lib}/power6emul.so fedora/power6emul.c -Wl,-z,initfirst
  487. %ifarch ppc
  488. gcc -shared -nostdlib -O2 -fpic -m64 -o power6emul/lib64/power6emul.so -xc - </dev/null
  489. %endif
  490. %ifarch ppc64
  491. gcc -shared -nostdlib -O2 -fpic -m32 -o power6emul/lib/power6emul.so -xc - < /dev/null
  492. %endif
  493. export LD_PRELOAD=`pwd`/power6emul/\$LIB/power6emul.so
  494. fi
  495. AddOns="$AddOns --with-cpu=power6"
  496. GCC="$GCC -mcpu=power6"
  497. GXX="$GXX -mcpu=power6"
  498. build power6
  499. )
  500. %endif
  501. pushd build-%{target}
  502. $GCC -static -L. -Os -g %{SOURCE2} \
  503. -o glibc_post_upgrade.%{_target_cpu} \
  504. '-DLIBTLS="/%{_lib}/tls/"' \
  505. '-DGCONV_MODULES_DIR="%{_libdir}/gconv"' \
  506. '-DLD_SO_CONF="/etc/ld.so.conf"' \
  507. '-DICONVCONFIG="%{_sbindir}/iconvconfig.%{_target_cpu}"'
  508. popd
  509. %install
  510. GCC=`cat Gcc`
  511. rm -rf $RPM_BUILD_ROOT
  512. mkdir -p $RPM_BUILD_ROOT
  513. make -j1 install_root=$RPM_BUILD_ROOT install -C build-%{target} PARALLELMFLAGS=-s
  514. chmod +x $RPM_BUILD_ROOT%{_prefix}/libexec/pt_chown
  515. %ifnarch %{auxarches}
  516. cd build-%{target} && \
  517. make %{?_smp_mflags} install_root=$RPM_BUILD_ROOT install-locales -C ../localedata objdir=`pwd` && \
  518. cd ..
  519. %endif
  520. librtso=`basename $RPM_BUILD_ROOT/%{_lib}/librt.so.*`
  521. %ifarch %{rtkaioarches}
  522. rm -f $RPM_BUILD_ROOT{,%{_prefix}}/%{_lib}/librtkaio.*
  523. rm -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/librt.so.*
  524. mkdir -p $RPM_BUILD_ROOT/%{_lib}/rtkaio
  525. mv $RPM_BUILD_ROOT/%{_lib}/librtkaio-*.so $RPM_BUILD_ROOT/%{_lib}/rtkaio/
  526. rm -f $RPM_BUILD_ROOT/%{_lib}/$librtso
  527. ln -sf `basename $RPM_BUILD_ROOT/%{_lib}/librt-*.so` $RPM_BUILD_ROOT/%{_lib}/$librtso
  528. ln -sf `basename $RPM_BUILD_ROOT/%{_lib}/rtkaio/librtkaio-*.so` $RPM_BUILD_ROOT/%{_lib}/rtkaio/$librtso
  529. %endif
  530. install_different()
  531. {
  532. local lib libbase libbaseso dlib
  533. local destdir="$1"
  534. local subdir="$2"
  535. local subdir_up="$3"
  536. local libdestdir="$destdir/$subdir"
  537. # All three arguments must be non-zero paths.
  538. if ! [ "$destdir" \
  539. -a "$subdir" \
  540. -a "$subdir_up" ]; then
  541. echo "One of the arguments to install_different was emtpy."
  542. exit 1
  543. fi
  544. # Create the destination directory and the multilib directory.
  545. mkdir -p "$destdir"
  546. mkdir -p "$libdestdir"
  547. # Walk all of the libraries we installed...
  548. for lib in libc math/libm nptl/libpthread rt/librt nptl_db/libthread_db
  549. do
  550. libbase=${lib#*/}
  551. # Take care that `libbaseso' has a * that needs expanding so
  552. # take care with quoting.
  553. libbaseso=$(basename $RPM_BUILD_ROOT/%{_lib}/${libbase}-*.so)
  554. # Only install if different from default build library.
  555. if cmp -s ${lib}.so ../build-%{target}/${lib}.so; then
  556. ln -sf "$subdir_up"/$libbaseso $libdestdir/$libbaseso
  557. else
  558. cp -a ${lib}.so $libdestdir/$libbaseso
  559. fi
  560. dlib=$libdestdir/$(basename $RPM_BUILD_ROOT/%{_lib}/${libbase}.so.*)
  561. ln -sf $libbaseso $dlib
  562. done
  563. %ifarch %{rtkaioarches}
  564. local rtkdestdir="$RPM_BUILD_ROOT/%{_lib}/rtkaio/$subdir"
  565. local librtso=`basename $RPM_BUILD_ROOT/%{_lib}/librt.so.*`
  566. mkdir -p $rtkdestdir
  567. librtkaioso=$(basename $RPM_BUILD_ROOT/%{_lib}/librt-*.so | sed s/librt-/librtkaio-/)
  568. if cmp -s rtkaio/librtkaio.so ../build-%{target}/rtkaio/librtkaio.so; then
  569. ln -s %{nosegneg_subdir_up}/$librtkaioso $rtkdestdir/$librtkaioso
  570. else
  571. cp -a rtkaio/librtkaio.so $rtkdestdir/$librtkaioso
  572. fi
  573. ln -sf $librtkaioso $rtkdestdir/$librtso
  574. %endif
  575. }
  576. %if %{buildxen}
  577. %define nosegneg_subdir_base i686
  578. %define nosegneg_subdir i686/nosegneg
  579. %define nosegneg_subdir_up ../..
  580. pushd build-%{target}-nosegneg
  581. destdir=$RPM_BUILD_ROOT/%{_lib}
  582. install_different "$destdir" "%{nosegneg_subdir}" "%{nosegneg_subdir_up}"
  583. popd
  584. %endif
  585. %if %{buildpower6}
  586. %define power6_subdir power6
  587. %define power6_subdir_up ..
  588. %define power6_legacy power6x
  589. %define power6_legacy_up ..
  590. pushd build-%{target}-power6
  591. destdir=$RPM_BUILD_ROOT/%{_lib}
  592. install_different "$destdir" "%{power6_subdir}" "%{power6_subdir_up}"
  593. # Make a legacy /usr/lib[64]/power6x directory that is a symlink to the
  594. # power6 runtime.
  595. # XXX: When can we remove this? What is the history behind this?
  596. mkdir -p ${destdir}/%{power6_legacy}
  597. pushd ${destdir}/%{power6_legacy}
  598. ln -sf %{power6_legacy_up}/%{power6_subdir}/*.so .
  599. cp -a %{power6_legacy_up}/%{power6_subdir}/*.so.* .
  600. popd
  601. %ifarch %{rtkaioarches}
  602. destdir=${destdir}/rtkaio
  603. mkdir -p ${destdir}/%{power6_legacy}
  604. pushd ${destdir}/%{power6_legacy}
  605. ln -sf ../power6/*.so .
  606. cp -a ../power6/*.so.* .
  607. popd
  608. %endif
  609. popd
  610. %endif
  611. # Remove the files we don't want to distribute
  612. rm -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libNoVersion*
  613. rm -f $RPM_BUILD_ROOT/%{_lib}/libNoVersion*
  614. # NPTL <bits/stdio-lock.h> is not usable outside of glibc, so include
  615. # the generic one (#162634)
  616. cp -a sysdeps/generic/stdio-lock.h \
  617. $RPM_BUILD_ROOT%{_prefix}/include/bits/stdio-lock.h
  618. # And <bits/libc-lock.h> needs sanitizing as well.
  619. cp -a %{SOURCE3} $RPM_BUILD_ROOT%{_prefix}/include/bits/libc-lock.h
  620. if [ -d $RPM_BUILD_ROOT%{_prefix}/info -a "%{_infodir}" != "%{_prefix}/info" ]; then
  621. mkdir -p $RPM_BUILD_ROOT%{_infodir}
  622. mv -f $RPM_BUILD_ROOT%{_prefix}/info/* $RPM_BUILD_ROOT%{_infodir}
  623. rm -rf $RPM_BUILD_ROOT%{_prefix}/info
  624. fi
  625. gzip -9nvf $RPM_BUILD_ROOT%{_infodir}/libc*
  626. ln -sf libbsd-compat.a $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libbsd.a
  627. install -p -m 644 %{SOURCE7} $RPM_BUILD_ROOT/etc/nsswitch.conf
  628. mkdir -p $RPM_BUILD_ROOT/etc/default
  629. install -p -m 644 nis/nss $RPM_BUILD_ROOT/etc/default/nss
  630. # This is for ncsd - in glibc 2.2
  631. install -m 644 nscd/nscd.conf $RPM_BUILD_ROOT/etc
  632. mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
  633. install -m 755 nscd/nscd.init $RPM_BUILD_ROOT/etc/rc.d/init.d/nscd
  634. # Include ld.so.conf
  635. echo 'include ld.so.conf.d/*.conf' > $RPM_BUILD_ROOT/etc/ld.so.conf
  636. > $RPM_BUILD_ROOT/etc/ld.so.cache
  637. chmod 644 $RPM_BUILD_ROOT/etc/ld.so.conf
  638. mkdir -p $RPM_BUILD_ROOT/etc/ld.so.conf.d
  639. mkdir -p $RPM_BUILD_ROOT/etc/sysconfig
  640. > $RPM_BUILD_ROOT/etc/sysconfig/nscd
  641. > $RPM_BUILD_ROOT/etc/gai.conf
  642. # Include %{_prefix}/%{_lib}/gconv/gconv-modules.cache
  643. > $RPM_BUILD_ROOT%{_prefix}/%{_lib}/gconv/gconv-modules.cache
  644. chmod 644 $RPM_BUILD_ROOT%{_prefix}/%{_lib}/gconv/gconv-modules.cache
  645. # Install the upgrade program
  646. install -m 700 build-%{target}/glibc_post_upgrade.%{_target_cpu} \
  647. $RPM_BUILD_ROOT/usr/sbin/glibc_post_upgrade.%{_target_cpu}
  648. strip -g $RPM_BUILD_ROOT%{_prefix}/%{_lib}/*.o
  649. mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_prefix}/%{_lib}
  650. cp -a $RPM_BUILD_ROOT%{_prefix}/%{_lib}/*.a \
  651. $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_prefix}/%{_lib}/
  652. rm -f $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_prefix}/%{_lib}/*_p.a
  653. # rquota.x and rquota.h are now provided by quota
  654. rm -f $RPM_BUILD_ROOT%{_prefix}/include/rpcsvc/rquota.[hx]
  655. # Create archive of locale files
  656. %ifnarch %{auxarches}
  657. olddir=`pwd`
  658. pushd ${RPM_BUILD_ROOT}%{_prefix}/lib/locale
  659. rm locale-archive || :
  660. # Intentionally we do not pass --alias-file=, aliases will be added
  661. # by build-locale-archive.
  662. $olddir/build-%{target}/elf/ld.so \
  663. --library-path $olddir/build-%{target}/ \
  664. $olddir/build-%{target}/locale/localedef \
  665. --prefix ${RPM_BUILD_ROOT} --add-to-archive \
  666. *_*
  667. mv locale-archive{,-extra.tmpl}
  668. $olddir/build-%{target}/elf/ld.so \
  669. --library-path $olddir/build-%{target}/ \
  670. $olddir/build-%{target}/locale/localedef \
  671. --prefix ${RPM_BUILD_ROOT} --add-to-archive \
  672. ja_JP* en_US*
  673. mv locale-archive{,.tmpl}
  674. cp -a locale-archive{.tmpl,-ja.tmpl}
  675. rm -rf *_*
  676. popd
  677. %endif
  678. rm -f ${RPM_BUILD_ROOT}/%{_lib}/libnss1-*
  679. rm -f ${RPM_BUILD_ROOT}/%{_lib}/libnss-*.so.1
  680. # Ugly hack for buggy rpm
  681. ln -f ${RPM_BUILD_ROOT}%{_sbindir}/iconvconfig{,.%{_target_cpu}}
  682. # In F7+ this is provided by rpcbind rpm
  683. rm -f $RPM_BUILD_ROOT%{_sbindir}/rpcinfo
  684. # BUILD THE FILE LIST
  685. {
  686. find $RPM_BUILD_ROOT \( -type f -o -type l \) \
  687. \( \
  688. -name etc -printf "%%%%config " -o \
  689. -name gconv-modules \
  690. -printf "%%%%verify(not md5 size mtime) %%%%config(noreplace) " -o \
  691. -name gconv-modules.cache \
  692. -printf "%%%%verify(not md5 size mtime) " \
  693. , \
  694. ! -path "*/lib/debug/*" -printf "/%%P\n" \)
  695. find $RPM_BUILD_ROOT -type d \
  696. \( -path '*%{_prefix}/share/*' ! -path '*%{_infodir}' -o \
  697. -path "*%{_prefix}/include/*" -o \
  698. -path "*%{_prefix}/lib/locale/*" \
  699. \) -printf "%%%%dir /%%P\n"
  700. } | {
  701. # primary filelist
  702. SHARE_LANG='s|.*/share/locale/\([^/_]\+\).*/LC_MESSAGES/.*\.mo|%lang(\1) &|'
  703. LIB_LANG='s|.*/lib/locale/\([^/_]\+\)|%lang(\1) &|'
  704. # rpm does not handle %lang() tagged files hardlinked together accross
  705. # languages very well, temporarily disable
  706. LIB_LANG=''
  707. sed -e "$LIB_LANG" -e "$SHARE_LANG" \
  708. -e '\,/etc/\(localtime\|nsswitch.conf\|ld\.so\.conf\|ld\.so\.cache\|default\|rpc\|gai\.conf\),d' \
  709. -e '\,/%{_lib}/lib\(pcprofile\|memusage\)\.so,d' \
  710. -e '\,bin/\(memusage\|mtrace\|xtrace\|pcprofiledump\),d'
  711. } | sort > rpm.filelist
  712. mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{_lib}
  713. mv -f $RPM_BUILD_ROOT/%{_lib}/lib{pcprofile,memusage}.so $RPM_BUILD_ROOT%{_prefix}/%{_lib}
  714. for i in $RPM_BUILD_ROOT%{_prefix}/bin/{xtrace,memusage}; do
  715. sed -e 's~=/%{_lib}/libpcprofile.so~=%{_prefix}/%{_lib}/libpcprofile.so~' \
  716. -e 's~=/%{_lib}/libmemusage.so~=%{_prefix}/%{_lib}/libmemusage.so~' \
  717. -e 's~='\''/\\\$LIB/libpcprofile.so~='\''%{_prefix}/\\$LIB/libpcprofile.so~' \
  718. -e 's~='\''/\\\$LIB/libmemusage.so~='\''%{_prefix}/\\$LIB/libmemusage.so~' \
  719. -i $i
  720. done
  721. grep '%{_infodir}' < rpm.filelist | grep -v '%{_infodir}/dir' > devel.filelist
  722. grep '%{_prefix}/include/gnu/stubs-[32164]\+\.h' < rpm.filelist >> devel.filelist || :
  723. grep '%{_prefix}/include' < rpm.filelist |
  724. egrep -v '%{_prefix}/include/(linuxthreads|gnu/stubs-[32164]+\.h)' \
  725. > headers.filelist
  726. sed -i -e '\|%{_prefix}/%{_lib}/lib.*_p.a|d' \
  727. -e '\|%{_prefix}/include|d' \
  728. -e '\|%{_infodir}|d' rpm.filelist
  729. grep '%{_prefix}/%{_lib}/lib.*\.a' < rpm.filelist \
  730. | grep '/lib\(\(c\|pthread\|mvec\|nldbl\)_nonshared\|bsd\(\|-compat\)\|g\|ieee\|mcheck\|rpcsvc\)\.a$' \
  731. >> devel.filelist
  732. grep '%{_prefix}/%{_lib}/lib.*\.a' < rpm.filelist \
  733. | grep -v '/lib\(\(c\|pthread\|mvec\|nldbl\)_nonshared\|bsd\(\|-compat\)\|g\|ieee\|mcheck\|rpcsvc\)\.a$' \
  734. > static.filelist
  735. grep '%{_prefix}/%{_lib}/.*\.o' < rpm.filelist >> devel.filelist
  736. grep '%{_prefix}/%{_lib}/lib.*\.so' < rpm.filelist >> devel.filelist
  737. sed -i -e '\|%{_prefix}/%{_lib}/lib.*\.a|d' \
  738. -e '\|%{_prefix}/%{_lib}/.*\.o|d' \
  739. -e '\|%{_prefix}/%{_lib}/lib.*\.so|d' \
  740. -e '\|%{_prefix}/%{_lib}/linuxthreads|d' \
  741. -e '\|nscd|d' rpm.filelist
  742. grep '%{_prefix}/bin' < rpm.filelist >> common.filelist
  743. grep '%{_prefix}/sbin/[^gi]' < rpm.filelist >> common.filelist
  744. grep '%{_prefix}/share' < rpm.filelist | \
  745. grep -v -e '%{_prefix}/share/zoneinfo' -e '%%dir %{prefix}/share' \
  746. >> common.filelist
  747. sed -i -e '\|%{_prefix}/bin|d' \
  748. -e '\|%{_prefix}/lib/locale|d' \
  749. -e '\|%{_prefix}/libexec/pt_chown|d' \
  750. -e '\|%{_prefix}/sbin/[^gi]|d' \
  751. -e '\|%{_prefix}/share|d' rpm.filelist
  752. > nosegneg.filelist
  753. %if %{xenpackage}
  754. grep '/%{_lib}/%{nosegneg_subdir}' < rpm.filelist >> nosegneg.filelist
  755. sed -i -e '\|/%{_lib}/%{nosegneg_subdir}|d' rpm.filelist
  756. %endif
  757. echo '%{_prefix}/sbin/build-locale-archive' >> common.filelist
  758. # Convert tzdata-update to lua
  759. # echo '%{_prefix}/sbin/tzdata-update' >> common.filelist
  760. echo '%{_prefix}/sbin/nscd' > nscd.filelist
  761. cat >> rpm.filelist <<EOF
  762. %{_prefix}/%{_lib}/libmemusage.so
  763. %{_prefix}/%{_lib}/libpcprofile.so
  764. EOF
  765. cat > utils.filelist <<EOF
  766. %{_prefix}/bin/memusage
  767. %{_prefix}/bin/memusagestat
  768. %{_prefix}/bin/mtrace
  769. %{_prefix}/bin/pcprofiledump
  770. %{_prefix}/bin/xtrace
  771. EOF
  772. # /etc/localtime
  773. rm -f $RPM_BUILD_ROOT/etc/localtime
  774. cp -f %{_datadir}/zoneinfo/Asia/Tokyo $RPM_BUILD_ROOT/etc/localtime
  775. rm -rf $RPM_BUILD_ROOT%{_prefix}/share/zoneinfo
  776. # Make sure %config files have the same timestamp
  777. touch -r %{SOURCE2} $RPM_BUILD_ROOT/etc/ld.so.conf
  778. touch -r %{_datadir}/zoneinfo/Asia/Tokyo $RPM_BUILD_ROOT/etc/localtime
  779. touch -r sunrpc/etc.rpc $RPM_BUILD_ROOT/etc/rpc
  780. pushd build-%{target}
  781. $GCC -Os -g -o build-locale-archive %{SOURCE1} \
  782. ../build-%{target}/locale/locarchive.o \
  783. ../build-%{target}/locale/md5.o \
  784. -I. -DDATADIR=\"%{_datadir}\" -DPREFIX=\"%{_prefix}\" \
  785. -L../build-%{target} \
  786. -Wl,--allow-shlib-undefined \
  787. -B../build-%{target}/csu/ -lc -lc_nonshared
  788. install -m 700 build-locale-archive $RPM_BUILD_ROOT/usr/sbin/build-locale-archive
  789. popd
  790. # the last bit: more documentation
  791. rm -rf documentation
  792. mkdir documentation
  793. cp crypt/README.ufc-crypt documentation/README.ufc-crypt
  794. cp timezone/README documentation/README.timezone
  795. cp ChangeLog{,.15,.16} documentation
  796. bzip2 -9 documentation/ChangeLog*
  797. cp posix/gai.conf documentation/
  798. %ifarch s390x
  799. # Compatibility symlink
  800. mkdir -p $RPM_BUILD_ROOT/lib
  801. ln -sf /%{_lib}/ld64.so.1 $RPM_BUILD_ROOT/lib/ld64.so.1
  802. %endif
  803. %ifarch ia64
  804. %if "%{_lib}" == "lib64"
  805. # Compatibility symlink
  806. mkdir -p $RPM_BUILD_ROOT/lib
  807. ln -sf /%{_lib}/ld-linux-ia64.so.2 $RPM_BUILD_ROOT/lib/ld-linux-ia64.so.2
  808. %endif
  809. %endif
  810. %if %{run_glibc_tests}
  811. # Increase timeouts
  812. export TIMEOUTFACTOR=16
  813. parent=$$
  814. echo ====================TESTING=========================
  815. pushd build-%{target}
  816. ( make %{?_smp_mflags} -k check PARALLELMFLAGS=-s 2>&1
  817. sleep 10s
  818. teepid="`ps -eo ppid,pid,command | awk '($1 == '${parent}' && $3 ~ /^tee/) { print $2 }'`"
  819. [ -n "$teepid" ] && kill $teepid
  820. ) | tee check.log || :
  821. popd
  822. %if %{buildxen}
  823. echo ====================TESTING -mno-tls-direct-seg-refs=============
  824. pushd build-%{target}-nosegneg
  825. ( make %{?_smp_mflags} -k check PARALLELMFLAGS=-s 2>&1
  826. sleep 10s
  827. teepid="`ps -eo ppid,pid,command | awk '($1 == '${parent}' && $3 ~ /^tee/) { print $2 }'`"
  828. [ -n "$teepid" ] && kill $teepid
  829. ) | tee check.log || :
  830. popd
  831. %endif
  832. %if %{buildpower6}
  833. echo ====================TESTING -mcpu=power6=============
  834. pushd build-%{target}-power6
  835. ( if [ -d ../power6emul ]; then
  836. export LD_PRELOAD=`cd ../power6emul; pwd`/\$LIB/power6emul.so
  837. fi
  838. make %{?_smp_mflags} -k check PARALLELMFLAGS=-s 2>&1
  839. sleep 10s
  840. teepid="`ps -eo ppid,pid,command | awk '($1 == '${parent}' && $3 ~ /^tee/) { print $2 }'`"
  841. [ -n "$teepid" ] && kill $teepid
  842. ) | tee check.log || :
  843. popd
  844. %endif
  845. echo ====================TESTING DETAILS=================
  846. for i in `sed -n 's|^.*\*\*\* \[\([^]]*\.out\)\].*$|\1|p' build-*-linux*/check.log`; do
  847. echo =====$i=====
  848. cat $i || :
  849. echo ============
  850. done
  851. echo ====================TESTING END=====================
  852. PLTCMD='/^Relocation section .*\(\.rela\?\.plt\|\.rela\.IA_64\.pltoff\)/,/^$/p'
  853. echo ====================PLT RELOCS LD.SO================
  854. readelf -Wr $RPM_BUILD_ROOT/%{_lib}/ld-*.so | sed -n -e "$PLTCMD"
  855. echo ====================PLT RELOCS LIBC.SO==============
  856. readelf -Wr $RPM_BUILD_ROOT/%{_lib}/libc-*.so | sed -n -e "$PLTCMD"
  857. echo ====================PLT RELOCS END==================
  858. %endif
  859. ###############################################################################
  860. # Rebuild libpthread.a using --whole-archive to ensure all of libpthread
  861. # is included in a static link. This prevents any problems when linking
  862. # statically, using parts of libpthread, and other necessary parts not
  863. # being included. Upstream has decided that this is the wrong approach to
  864. # this problem and that the full set of dependencies should be resolved
  865. # such that static linking works and produces the most minimally sized
  866. # static application possible.
  867. ###############################################################################
  868. pushd $RPM_BUILD_ROOT/usr/%{_lib}/
  869. $GCC -r -nostdlib -o libpthread.o -Wl,--whole-archive ./libpthread.a
  870. rm libpthread.a
  871. ar rcs libpthread.a libpthread.o
  872. rm libpthread.o
  873. popd
  874. ###############################################################################
  875. %if 0%{?_enable_debug_packages}
  876. # The #line directives gperf generates do not give the proper
  877. # file name relative to the build directory.
  878. pushd locale
  879. ln -s programs/*.gperf .
  880. popd
  881. pushd iconv
  882. ln -s ../locale/programs/charmap-kw.gperf .
  883. popd
  884. # Print some diagnostic information in the builds about the
  885. # getconf binaries.
  886. # XXX: Why do we do this?
  887. ls -l $RPM_BUILD_ROOT/usr/bin/getconf
  888. ls -l $RPM_BUILD_ROOT/usr/libexec/getconf
  889. eu-readelf -hS $RPM_BUILD_ROOT/usr/bin/getconf $RPM_BUILD_ROOT/usr/libexec/getconf/*
  890. find_debuginfo_args='--strict-build-id -g'
  891. %ifarch %{debuginfocommonarches}
  892. echo %{_prefix}/libexec/pt_chown > workaround.filelist
  893. find_debuginfo_args="$find_debuginfo_args \
  894. -l common.filelist -l utils.filelist -l nscd.filelist -l workaround.filelist \
  895. -p '.*/(sbin|libexec)/.*' \
  896. -o debuginfocommon.filelist \
  897. -l rpm.filelist -l nosegneg.filelist \
  898. "
  899. %endif
  900. eval /usr/lib/rpm/find-debuginfo.sh "$find_debuginfo_args" -o debuginfo.filelist
  901. list_debug_archives()
  902. {
  903. local dir=%{_prefix}/lib/debug%{_prefix}/%{_lib}
  904. find $RPM_BUILD_ROOT$dir -name "*.a" -printf "$dir/%%P\n"
  905. }
  906. %ifarch %{debuginfocommonarches}
  907. %ifarch %{ix86}
  908. %define basearch i686
  909. %endif
  910. %ifarch alpha alphaev6
  911. %define basearch alpha
  912. %endif
  913. %ifarch sparc sparcv9
  914. %define basearch sparc
  915. %endif
  916. # The auxarches get only these few source files.
  917. auxarches_debugsources=\
  918. '/(generic|linux|%{basearch}|nptl(_db)?)/|/%{glibcsrcdir}/build|/dl-osinfo\.h'
  919. # Place the source files into the core debuginfo pakcage.
  920. egrep "$auxarches_debugsources" debuginfocommon.sources >> debuginfo.filelist
  921. # Remove the source files from the common debuginfo package.
  922. egrep -v "$auxarches_debugsources" \
  923. debuginfocommon.sources >> debuginfocommon.filelist
  924. %endif # %{biarcharches}
  925. # Add the list of *.a archives in the debug directory to
  926. # the common debuginfo package.
  927. list_debug_archives >> debuginfocommon.filelist
  928. # It happens that find-debuginfo.sh produces duplicate entries even
  929. # though the inputs are unique. Therefore we sort and unique the
  930. # entries in the debug file lists. This avoids the following warnings:
  931. # ~~~
  932. # Processing files: glibc-debuginfo-common-2.17.90-10.fc20.x86_64
  933. # warning: File listed twice: /usr/lib/debug/usr/sbin/build-locale-archive.debug
  934. # warning: File listed twice: /usr/lib/debug/usr/sbin/nscd.debug
  935. # warning: File listed twice: /usr/lib/debug/usr/sbin/zdump.debug
  936. # warning: File listed twice: /usr/lib/debug/usr/sbin/zic.debug
  937. # ~~~
  938. sort -u debuginfocommon.filelist > debuginfocommon2.filelist
  939. mv debuginfocommon2.filelist debuginfocommon.filelist
  940. %endif # 0%{?_enable_debug_packages}
  941. # Remove the `dir' info-heirarchy file which will be maintained
  942. # by the system as it adds info files to the install.
  943. rm -f $RPM_BUILD_ROOT%{_infodir}/dir
  944. %ifarch %{auxarches}
  945. echo Cutting down the list of unpackaged files
  946. >> debuginfocommon.filelist
  947. sed -e '/%%dir/d;/%%config/d;/%%verify/d;s/%%lang([^)]*) //;s#^/*##' \
  948. common.filelist devel.filelist static.filelist headers.filelist \
  949. utils.filelist nscd.filelist debuginfocommon.filelist |
  950. (cd $RPM_BUILD_ROOT; xargs --no-run-if-empty rm -f 2> /dev/null || :)
  951. rm -f $RPM_BUILD_ROOT%{_prefix}/libexec/pt_chown
  952. %else
  953. mkdir -p $RPM_BUILD_ROOT/var/{db,run}/nscd
  954. touch $RPM_BUILD_ROOT/var/{db,run}/nscd/{passwd,group,hosts,services}
  955. touch $RPM_BUILD_ROOT/var/run/nscd/{socket,nscd.pid}
  956. %endif
  957. %ifnarch %{auxarches}
  958. > $RPM_BUILD_ROOT/%{_prefix}/lib/locale/locale-archive
  959. %endif
  960. mkdir -p $RPM_BUILD_ROOT/var/cache/ldconfig
  961. > $RPM_BUILD_ROOT/var/cache/ldconfig/aux-cache
  962. %pre -p <lua>
  963. -- Check that the running kernel is new enough
  964. required = '%{enablekernel}'
  965. rel = posix.uname("%r")
  966. if rpm.vercmp(rel, required) < 0 then
  967. error("FATAL: kernel too old", 0)
  968. end
  969. %post -p /usr/sbin/glibc_post_upgrade.%{_target_cpu}
  970. %postun -p /sbin/ldconfig
  971. %post -n compat32-%{name} -p /sbin/ldconfig
  972. %postun -n compat32-%{name} -p /sbin/ldconfig
  973. %triggerin common -p <lua> -- glibc
  974. if posix.stat("%{_prefix}/lib/locale/locale-archive.tmpl", "size") > 0 then
  975. pid = posix.fork()
  976. if pid == 0 then
  977. posix.exec("%{_prefix}/sbin/build-locale-archive")
  978. elseif pid > 0 then
  979. posix.wait(pid)
  980. end
  981. end
  982. %post common -p <lua>
  983. if posix.access("/etc/ld.so.cache") then
  984. if posix.stat("%{_prefix}/lib/locale/locale-archive.tmpl", "size") > 0 then
  985. pid = posix.fork()
  986. if pid == 0 then
  987. posix.exec("%{_prefix}/sbin/build-locale-archive")
  988. elseif pid > 0 then
  989. posix.wait(pid)
  990. end
  991. end
  992. end
  993. %triggerin common -p <lua> -- tzdata
  994. function update (filename, new_data)
  995. local fd = io.open(filename)
  996. if not fd then return end
  997. local data = fd:read("*a")
  998. fd:close()
  999. if not data then return end
  1000. -- Don't update the file unnecessarily.
  1001. if data == new_data then return end
  1002. local tempfilename = filename .. ".tzupdate"
  1003. fd = io.open(tempfilename, "w")
  1004. if not fd then return end
  1005. fd:write(new_data)
  1006. fd:close()
  1007. posix.chmod(tempfilename, 0644)
  1008. if not os.rename(tempfilename, filename) then
  1009. os.remove(tempfilename)
  1010. end
  1011. end
  1012. fd = io.open("/etc/sysconfig/clock")
  1013. if not fd then return end
  1014. zonename = nil
  1015. for l in fd:lines() do
  1016. zone = string.match(l, "^[ \t]*ZONE[ \t]*=[ \t]*\"?([^ \t\n\"]*)");
  1017. if zone then
  1018. zonename = "/usr/share/zoneinfo/" .. zone
  1019. break
  1020. end
  1021. end
  1022. fd:close()
  1023. if not zonename then return end
  1024. fd = io.open(zonename)
  1025. if not fd then return end
  1026. data = fd:read("*a")
  1027. fd:close()
  1028. if not data then return end
  1029. update("/etc/localtime", data)
  1030. update("/var/spool/postfix/etc/localtime", data)
  1031. %post common-extra -p <lua>
  1032. -- cp -f /usr/lib/locale/locale-archive-extra.tmpl /usr/lib/locale/locale-archive.tmpl
  1033. if posix.access("/etc/ld.so.cache") then
  1034. if posix.stat("%{_prefix}/lib/locale/locale-archive.tmpl", "size") > 0 then
  1035. pid = posix.fork()
  1036. if pid == 0 then
  1037. posix.exec("%{_prefix}/sbin/build-locale-archive")
  1038. elseif pid > 0 then
  1039. posix.wait(pid)
  1040. end
  1041. end
  1042. end
  1043. %postun common-extra -p <lua>
  1044. posix.exec("cp -f /usr/lib/locale/locale-archive-ja.tmpl /usr/lib/locale/locale-archive.tmpl")
  1045. if posix.access("/etc/ld.so.cache") then
  1046. if posix.stat("%{_prefix}/lib/locale/locale-archive.tmpl", "size") > 0 then
  1047. pid = posix.fork()
  1048. if pid == 0 then
  1049. posix.exec("%{_prefix}/sbin/build-locale-archive")
  1050. elseif pid > 0 then
  1051. posix.wait(pid)
  1052. end
  1053. end
  1054. end
  1055. %triggerun -- common-extra
  1056. posix.exec("cp -f /usr/lib/locale/locale-archive-ja.tmpl /usr/lib/locale/locale-archive.tmpl")
  1057. if posix.access("/etc/ld.so.cache") then
  1058. if posix.stat("%{_prefix}/lib/locale/locale-archive.tmpl", "size") > 0 then
  1059. pid = posix.fork()
  1060. if pid == 0 then
  1061. posix.exec("%{_prefix}/sbin/build-locale-archive")
  1062. elseif pid > 0 then
  1063. posix.wait(pid)
  1064. end
  1065. end
  1066. end
  1067. %post devel
  1068. /sbin/install-info %{_infodir}/libc.info.gz %{_infodir}/dir > /dev/null 2>&1 || :
  1069. %pre headers
  1070. # this used to be a link and it is causing nightmares now
  1071. if [ -L %{_prefix}/include/scsi ] ; then
  1072. rm -f %{_prefix}/include/scsi
  1073. fi
  1074. %preun devel
  1075. if [ "$1" = 0 ]; then
  1076. /sbin/install-info --delete %{_infodir}/libc.info.gz %{_infodir}/dir > /dev/null 2>&1 || :
  1077. fi
  1078. %post utils -p /sbin/ldconfig
  1079. %postun utils -p /sbin/ldconfig
  1080. %pre -n nscd
  1081. getent group nscd >/dev/null || /usr/sbin/groupadd -g 28 -r nscd
  1082. getent passwd nscd >/dev/null ||
  1083. /usr/sbin/useradd -M -o -r -d / -s /sbin/nologin \
  1084. -c "NSCD Daemon" -u 28 -g nscd nscd
  1085. %post -n nscd
  1086. /sbin/chkconfig --add nscd
  1087. %preun -n nscd
  1088. if [ $1 = 0 ] ; then
  1089. /sbin/service nscd stop > /dev/null 2>&1
  1090. /sbin/chkconfig --del nscd
  1091. fi
  1092. %postun -n nscd
  1093. if [ $1 = 0 ] ; then
  1094. /usr/sbin/userdel nscd > /dev/null 2>&1 || :
  1095. fi
  1096. if [ "$1" -ge "1" ]; then
  1097. service nscd condrestart > /dev/null 2>&1 || :
  1098. fi
  1099. %if %{xenpackage}
  1100. %post xen -p /sbin/ldconfig
  1101. %postun xen -p /sbin/ldconfig
  1102. %endif
  1103. %clean
  1104. rm -rf "$RPM_BUILD_ROOT"
  1105. rm -f *.filelist*
  1106. %files -f rpm.filelist
  1107. %defattr(-,root,root)
  1108. %ifarch %{rtkaioarches}
  1109. %dir /%{_lib}/rtkaio
  1110. %endif
  1111. %if %{buildxen} && !%{xenpackage}
  1112. %dir /%{_lib}/%{nosegneg_subdir_base}
  1113. %dir /%{_lib}/%{nosegneg_subdir}
  1114. %ifarch %{rtkaioarches}
  1115. %dir /%{_lib}/rtkaio/%{nosegneg_subdir_base}
  1116. %dir /%{_lib}/rtkaio/%{nosegneg_subdir}
  1117. %endif
  1118. %endif
  1119. %if %{buildpower6}
  1120. %dir /%{_lib}/power6
  1121. %dir /%{_lib}/power6x
  1122. %ifarch %{rtkaioarches}
  1123. %dir /%{_lib}/rtkaio/power6
  1124. %dir /%{_lib}/rtkaio/power6x
  1125. %endif
  1126. %endif
  1127. %ifarch s390x
  1128. %dir /lib
  1129. /lib/ld64.so.1
  1130. %endif
  1131. %ifarch ia64
  1132. %if "%{_lib}" == "lib64"
  1133. %dir /lib
  1134. /lib/ld-linux-ia64.so.2
  1135. %endif
  1136. %endif
  1137. %verify(not md5 size mtime) %config(noreplace) /etc/localtime
  1138. %verify(not md5 size mtime) %config(noreplace) /etc/nsswitch.conf
  1139. %verify(not md5 size mtime) %config(noreplace) /etc/ld.so.conf
  1140. %verify(not md5 size mtime) %config(noreplace) /etc/rpc
  1141. %dir /etc/ld.so.conf.d
  1142. %dir %{_prefix}/libexec/getconf
  1143. %dir %{_prefix}/%{_lib}/gconv
  1144. %dir %attr(0700,root,root) /var/cache/ldconfig
  1145. %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/cache/ldconfig/aux-cache
  1146. %attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /etc/ld.so.cache
  1147. %attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /etc/gai.conf
  1148. %doc README NEWS INSTALL BUGS PROJECTS CONFORMANCE
  1149. %doc COPYING COPYING.LIB LICENSES
  1150. %doc hesiod/README.hesiod
  1151. %if %{build_compat32}
  1152. %files -f rpm.filelist -n compat32-%{name}
  1153. %defattr(-,root,root)
  1154. %ifarch %{rtkaioarches}
  1155. %dir /%{_lib}/rtkaio
  1156. %endif
  1157. %if %{buildxen} && !%{xenpackage}
  1158. %dir /%{_lib}/%{nosegneg_subdir_base}
  1159. %dir /%{_lib}/%{nosegneg_subdir}
  1160. %ifarch %{rtkaioarches}
  1161. %dir /%{_lib}/rtkaio/%{nosegneg_subdir_base}
  1162. %dir /%{_lib}/rtkaio/%{nosegneg_subdir}
  1163. %endif
  1164. %endif
  1165. %endif
  1166. %if %{xenpackage}
  1167. %files -f nosegneg.filelist xen
  1168. %defattr(-,root,root)
  1169. %dir /%{_lib}/%{nosegneg_subdir_base}
  1170. %dir /%{_lib}/%{nosegneg_subdir}
  1171. %endif
  1172. %ifnarch %{auxarches}
  1173. %files -f common.filelist common
  1174. %defattr(-,root,root)
  1175. %dir %{_prefix}/lib/locale
  1176. %attr(0644,root,root) %verify(not md5 size mtime) %{_prefix}/lib/locale/locale-archive-ja.tmpl
  1177. %attr(0644,root,root) %verify(not md5 size mtime) %{_prefix}/lib/locale/locale-archive.tmpl
  1178. %attr(0644,root,root) %verify(not md5 size mtime mode) %ghost %config(missingok,noreplace) %{_prefix}/lib/locale/locale-archive
  1179. %dir %attr(755,root,root) /etc/default
  1180. %verify(not md5 size mtime) %config(noreplace) /etc/default/nss
  1181. %attr(4711,root,root) %{_prefix}/libexec/pt_chown
  1182. %doc documentation/*
  1183. %files common-extra
  1184. %defattr(-,root,root)
  1185. %attr(0644,root,root) %verify(not md5 size mtime) %{_prefix}/lib/locale/locale-archive-extra.tmpl
  1186. %files -f devel.filelist devel
  1187. %defattr(-,root,root)
  1188. %files -f static.filelist static
  1189. %defattr(-,root,root)
  1190. %if %{build_compat32}
  1191. %files -f devel.filelist -n compat32-%{name}-devel
  1192. %defattr(-,root,root)
  1193. %exclude %{_prefix}/share
  1194. %files -f static.filelist -n compat32-%{name}-static
  1195. %defattr(-,root,root)
  1196. %endif
  1197. %files -f headers.filelist headers
  1198. %defattr(-,root,root)
  1199. %files -f utils.filelist utils
  1200. %defattr(-,root,root)
  1201. %files -f nscd.filelist -n nscd
  1202. %defattr(-,root,root)
  1203. %config(noreplace) /etc/nscd.conf
  1204. %config /etc/rc.d/init.d/nscd
  1205. %dir %attr(0755,root,root) /var/run/nscd
  1206. %dir %attr(0755,root,root) /var/db/nscd
  1207. %attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/nscd.pid
  1208. %attr(0666,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/socket
  1209. %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/passwd
  1210. %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/group
  1211. %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/hosts
  1212. %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/services
  1213. %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/passwd
  1214. %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/group
  1215. %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/hosts
  1216. %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/services
  1217. %ghost %config(missingok,noreplace) /etc/sysconfig/nscd
  1218. %endif
  1219. %if 0%{?_enable_debug_packages}
  1220. %files debuginfo -f debuginfo.filelist
  1221. %defattr(-,root,root)
  1222. %ifarch %{debuginfocommonarches}
  1223. %ifnarch %{auxarches}
  1224. %files debuginfo-common -f debuginfocommon.filelist
  1225. %defattr(-,root,root)
  1226. %endif
  1227. %endif
  1228. %endif
  1229. %changelog
  1230. * Mon Aug 1 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.23-4
  1231. - added Patch20000-20004 to fix vulnerabilities.
  1232. - CVE-2016-1234
  1233. - CVE-2016-3075
  1234. - CVE-2016-3706
  1235. - CVE-2016-4429
  1236. * Sun Jun 26 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.23-3
  1237. - rebuilt with gcc-5.4.0
  1238. * Tue May 24 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.23-2
  1239. - rebuilt with new binutils.
  1240. * Sat May 07 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.23-1
  1241. - update to 2.23
  1242. - remove Patch14-18
  1243. - update SOURCE1 from fedora
  1244. * Sun Dec 13 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18-3
  1245. - rebuild with VineSeed environment
  1246. * Mon Jul 14 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18-2
  1247. - rebuild with libpng-1.6.12
  1248. * Mon Nov 04 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18-1
  1249. - update to 2.18
  1250. - merged with FC 2.18-6.fc21
  1251. - add Source1,2,3 and Patch11,12,13,14,15,16,17,18,19 from Fedora
  1252. - add Patch10001 for vine
  1253. * Tue Oct 01 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.14.1-4
  1254. - rebuild with gcc-4.8.1
  1255. * Wed Jan 04 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.14.1-3
  1256. - add Patch12: glibc-fix-do_lookup_x.patch
  1257. * Thu Dec 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-2
  1258. - add patch10 to reexport rpc interface
  1259. - add patch11 to reinstall nis rpc headers
  1260. * Sat Dec 17 2011 NAKAMURA Kenta <kenta@vinelinux.org> 2.14.1-1
  1261. - updated to 2.14.1
  1262. - converted tzdata-update to lua (Red Hat Bugzilla – Bug 729796)
  1263. - dropped obsolete CVE patches
  1264. - update glibc-fedora.patch (glibc-2.14.90-20.fc17) for reference
  1265. - added patch1, 2 and 3 based on glibc-fedora.patch
  1266. * Sun Jul 10 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.11.1-9
  1267. - add patch100,101 for fix CVE-2011-0536
  1268. - add patch102 for fix CVE-2011-1095
  1269. - add patch103 for fix CVE-2011-1071
  1270. - add patch104 for fix CVE-2010-3856
  1271. - add Vendor/Distri tags
  1272. * Wed Mar 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.11.1-8
  1273. - add compat32-glibc-static
  1274. * Tue Apr 6 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.11.1-7
  1275. - rebuilt with gcc-4.3.3-4
  1276. * Sat Mar 6 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.11.1-6
  1277. - fix typo in %%triggerun common-extra
  1278. - add %%postun common-extra (which does the same as %%triggerun common-extra)
  1279. - fix %%post common so that /bin/cp is not necessary
  1280. - locale-archive{,-ja}.tmpl both included (not as ghost) in common
  1281. * Wed Feb 10 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.11.1-5
  1282. - change R: for compat32-*
  1283. - do not require exact version of glibc
  1284. * Mon Feb 8 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.11.1-4
  1285. - rebuilt with gcc-4.4.3-3
  1286. * Sun Jan 31 2010 Daisuke SUZUKI <daisuke@linux.or.jp> - 2.11.1-3
  1287. - fix %%post scripts for glibc-common and glibc-common-extra
  1288. - use build-locale-archive to create ja-only-locale
  1289. - add %%triggerun common-extra to remove non-ja locale.
  1290. * Mon Jan 25 2010 NAKAMURA Kenta <kenta@vinelinux.org> - 2.11.1-2
  1291. - updated to 2.11.1 based on Fedora 12 2.11.1-1
  1292. - dropped BuildRequires: libselinux-devel
  1293. - used pre-generated find_requires/find_provides scripts.
  1294. - add glibc-common-extras to split out non ja/en locale.
  1295. - include en_US* and ja_JP* only.
  1296. - added compat32- packages for x86_64 architecture support
  1297. - the previous Vine version was 2.8-2 and its changelog was as follows:
  1298. * Mon Apr 27 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8-2
  1299. - add glibc-common-extras to split out non ja/en locale.
  1300. - include en_US* and ja_JP* only.
  1301. * Wed Sep 24 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.8-1
  1302. - updated to 2.8 (20080412T0741) based on Fedora 9 errata 2.8-8
  1303. * Wed Jul 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7-4
  1304. - spec in UTF8
  1305. - rebuild with gcc-4.1.2-18
  1306. * Sat Apr 05 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.7-2.1
  1307. - rebuilt with kernel-headers-2.6.24-6
  1308. - remove override_headers hack, BuildRequire >= 2.6.22 kernel-headers
  1309. and rely on its content
  1310. * Sun Feb 10 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.7-2vl3
  1311. - rebuilt with binutils-2.17.50.0.18-1vl2 and gcc-4.1.2-0vl17
  1312. * Fri Jan 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7-2vl2
  1313. - add missing files to file list.
  1314. - fix typo
  1315. * Thu Dec 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7-2vl1
  1316. - update to 2.7 based on fedora-devel 2.7-2
  1317. * Sat May 19 2007 NAKAMURA Kenta <kenta@vinelinux.org> 2.5-12vl3
  1318. - added compat32- packages for x86_64 architecture support
  1319. * Sun May 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-12vl2
  1320. - rebuild with gcc-4.1.2-0vl7 (expecially for ppc)
  1321. * Sat May 12 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-12vl1
  1322. - rebuilt with gcc-4.1.2-0vl6
  1323. - import Patch38 and Patch39 from RHEL5 2.5-12
  1324. - Mon Jan 15 2007 Jakub Jelinek <jakub@redhat.com> 2.5-12
  1325. - add a workaround for #210748 and #211133
  1326. - fix NIS getservbyname when proto is NULL
  1327. * Tue May 08 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5-10vl2
  1328. - use pre-generated find_requires/find_provides scripts.
  1329. * Sun May 06 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-10vl1
  1330. - rebuild
  1331. * Sun May 06 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-10vl0
  1332. - updated for VineSeed based on 2.5-10.fc6
  1333. - build_power6 disabled for ppc
  1334. (until we have ppc64 environments fully prepared for Vine development)
  1335. * Mon Dec 14 2009 Andreas Schwab <schwab@redhat.com> - 2.11.1-1
  1336. - Update to 2.11.1 release.
  1337. - Locale updates.
  1338. - Don't reuse RPC XIDs across forks.
  1339. * Mon Nov 30 2009 Andreas Schwab <schwab@redhat.com> - 2.11-4
  1340. - Update from 2.11 branch
  1341. - Fix sync_file_range on ppc/ppc64.
  1342. - Fix getwc* and putwc* on non-wide streams (BZ#10958).
  1343. - Avoid warnings in CPU_* macros when using const bitsets (BZ#10918).
  1344. - Fix ranges with multibyte characters as endpoints.
  1345. - Handle LC_GLOBAL_LOCALE in duplocale (BZ#10969).
  1346. - Fix _NC_LOCALE_NAME definition (BZ#10968).
  1347. - Add missing Linux MADV_* definitions (BZ#10972).
  1348. - Handle running out of buffer space with IPv6 mapping enabled.
  1349. - Avoid memset warning in one case (#532492).
  1350. - Restore locking in free_check (#504963).
  1351. - Fix infloop in __pthread_disable_asynccancel on x86_64 (#537690).
  1352. - Prevent unintended file desriptor leak in grantpt (#530558).
  1353. - Fix startup to security-relevant statically linked binaries (#528631).
  1354. * Tue Nov 24 2009 Andreas Schwab <schwab@redhat.com> - 2.11-3
  1355. - Enable multi-arch support for ppc and ppc64 on RHEL-6
  1356. * Thu Nov 5 2009 Andreas Schwab <schwab@redhat.com> - 2.11-2
  1357. - Fix readahead on powerpc32.
  1358. - Fix R_PPC64_{JMP_IREL,IRELATIVE} handling.
  1359. - Fix preadv, pwritev and fallocate for -D_FILE_OFFSET_BITS=64 (#533063).
  1360. * Mon Nov 2 2009 Andreas Schwab <schwab@redhat.com> - 2.11-1
  1361. - Update to 2.11 release.
  1362. - Disable multi-arch support on PowerPC again since binutils is too old.
  1363. - Fix crash in tzdata-update due to use of multi-arch symbol (#532128).
  1364. * Fri Oct 30 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-27
  1365. - Update from master.
  1366. - Fix races in setXid implementation (BZ#3270).
  1367. - Implement IFUNC for PPC and enable multi-arch support.
  1368. - Implement mkstemps/mkstemps64 and mkostemps/mkostemps64 (BZ#10349).
  1369. - Fix IA-64 and S390 sigevent definitions (BZ#10446).
  1370. - Fix memory leak in NIS grp database handling (BZ#10713).
  1371. - Print timestamp in nscd debug messages (BZ#10742).
  1372. - Fix mixing IPv4 and IPv6 name server in resolv.conf.
  1373. - Fix range checks in coshl.
  1374. - Implement SSE4.2 optimized strchr and strrchr.
  1375. - Handle IFUNC symbols in dlsym (#529965).
  1376. - Misc fixes (BZ#10312, BZ#10315, BZ#10319, BZ#10391, BZ#10425,
  1377. BZ#10540, BZ#10553, BZ#10564, BZ#10609, BZ#10692, BZ#10780,
  1378. BZ#10717, BZ#10784, BZ#10789, BZ#10847
  1379. - No longer build with -fno-var-tracking-assignments.
  1380. * Mon Oct 19 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-26
  1381. - Update from master.
  1382. - Add ____longjmp_chk for sparc.
  1383. - Avoid installing the same libraries twice.
  1384. * Mon Oct 12 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-25
  1385. - Update from master
  1386. - Fix descriptor leak when calling dlopen with RTLD_NOLOAD (#527409).
  1387. - Fix week-1stday in C locale.
  1388. - Check for integer overflows in formatting functions.
  1389. - Fix locale program error handling (#525363).
  1390. * Mon Sep 28 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-24
  1391. - Update from master.
  1392. - Fix missing reloc dependency (#517001).
  1393. * Mon Sep 21 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-23
  1394. - Update from master.
  1395. * Mon Sep 14 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-22
  1396. - Update from master.
  1397. - Fix endless loop in localedef.
  1398. - Fix __longjmp_chk on s390/s390x.
  1399. - Fix exit codes in nscd start script (#521848).
  1400. - Build with -fno-var-tracking-assignments for now (#523172).
  1401. * Mon Sep 7 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-21
  1402. - Update from master.
  1403. - Fix strstr/strcasestr on i386 (#519226).
  1404. * Thu Sep 3 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-20
  1405. - Update from master.
  1406. - Fix strstr/strcasestr/fma/fmaf on x86_64 (#519226).
  1407. - Fix lookup of group names in hesiod initgroups (#520472).
  1408. * Wed Sep 2 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-19
  1409. - Update from master.
  1410. - Fix x86_64 bits/mathinline.h for -m32 compilation.
  1411. * Tue Sep 1 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-18
  1412. - Update from master.
  1413. - fix parse error in <bits/mathinline.h> (#520209).
  1414. * Thu Aug 27 2009 Roland McGrath <roland@redhat.com> - 2.10.90-17
  1415. - Update from master.
  1416. * Wed Aug 26 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-16
  1417. - Update from master.
  1418. - handle AVX saving on x86-64 in interrupted symbol lookups (#519081).
  1419. * Mon Aug 24 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-15
  1420. - Update from master.
  1421. - fix fortify failure with longjmp from alternate stack (#512103).
  1422. - Add conflict with prelink (#509655).
  1423. * Mon Aug 17 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-14
  1424. - Update from master.
  1425. - fix pthread_cond_signal (#516469)
  1426. * Mon Aug 10 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-13
  1427. - Update from master.
  1428. - fix rehashing of unique symbols (#515677)
  1429. - Fix spurious messages with --excludedocs (#515948)
  1430. * Mon Aug 3 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-12
  1431. - Update from master.
  1432. - fix fortify failure with longjmp from alternate stack (#512103)
  1433. * Thu Jul 30 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-11
  1434. - Update from master.
  1435. - Don't package debuginfo files in glibc-devel.
  1436. * Tue Jul 28 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-10
  1437. - Update from master.
  1438. * fix memory ordering in pthread_mutex_unlock (BZ#10418)
  1439. * implement RES_USE_DNSSEC option in resolver (#205842)
  1440. * fix hang in ldd -r (#513945)
  1441. * Mon Jul 27 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-9
  1442. - Update from master.
  1443. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.90-8.1
  1444. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  1445. * Fri Jul 24 2009 Jakub Jelinek <jakub@redhat.com> - 2.10.90-7.1
  1446. - Fix up pthread_cond_timedwait on x86_64 with old kernels.
  1447. * Thu Jul 23 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-7
  1448. - Update from master.
  1449. - Build with -DNDEBUG unless using a prerelease.
  1450. * Thu Jul 23 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-6
  1451. - Rebuilt with binutils-2.19.51.0.14-29.fc12 to fix static binaries
  1452. * Wed Jul 22 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-5
  1453. - Update from master.
  1454. - Undefine __i686 on x86 to fix build.
  1455. * Mon Jul 20 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-4
  1456. - Update from master.
  1457. - Don't build separate i686 package.
  1458. * Wed Jul 8 2009 Andreas Schwab <schwab@redhat.com> 2.10.90-3
  1459. - Reenable setuid on pt_chown.
  1460. * Thu Jul 2 2009 Andreas Schwab <aschwab@redhat.com> 2.10.90-2
  1461. - Update from master.
  1462. * Fri Jun 26 2009 Andreas Schwab <aschwab@redhat.com> 2.10.90-1
  1463. - Update from master.
  1464. - Enable multi-arch support on x86/x86-64.
  1465. - Add requires glibc-headers to glibc-devel (#476295).
  1466. - Implement second fallback mode for DNS requests (#505105).
  1467. - Don't generate invalid POSIX TZ string for Asia/Dhaka timezone (#506941).
  1468. - Allow backtrace through __longjmp_chk on powerpc.
  1469. * Fri May 22 2009 Jakub Jelinek <jakub@redhat.com> 2.10.1-2
  1470. - fix accept4 on architectures other than i?86/x86_64
  1471. - robustify nscd client code during server GC
  1472. - fix up nscd segfaults during daemon shutdown
  1473. - fix memchr on ia64 (BZ#10162)
  1474. - replace the Sun RPC license with the BSD license, with the explicit
  1475. permission of Sun Microsystems
  1476. - fix up powerpc long double errno reporting
  1477. * Sun May 10 2009 Jakub Jelinek <jakub@redhat.com> 2.10.1-1
  1478. - fix up getsgent_r and getsgnam_r exports on i?86 and ppc
  1479. * Sat May 9 2009 Jakub Jelinek <jakub@redhat.com> 2.10-2
  1480. - update from trunk
  1481. - glibc 2.10 release
  1482. - fix memchr on x86_64 (#499689)
  1483. * Mon Apr 27 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-22
  1484. - update from trunk
  1485. - further localedef fixes
  1486. - fix build-locale-archive
  1487. * Fri Apr 24 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-21
  1488. - update from trunk
  1489. - fix localedef
  1490. - fix SHIFT_JIS iconv EILSEQ handling (#497267)
  1491. - misc fixes (BZ#10093, BZ#10100)
  1492. * Fri Apr 24 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-20
  1493. - update from trunk
  1494. - fix p{read,write}v{,64} (#497429, #497434)
  1495. - fix strfmon (#496386)
  1496. * Thu Apr 16 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-19
  1497. - update from trunk
  1498. - fix dlopen from statically linked binaries (#495830)
  1499. * Thu Apr 16 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-18
  1500. - update from trunk
  1501. - fix fallocate
  1502. * Wed Apr 15 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-17
  1503. - update from trunk
  1504. - if threads have very small stack sizes, use much smaller buffer
  1505. in __get_nprocs when called from within malloc (#494631)
  1506. * Tue Apr 14 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-16
  1507. - update from trunk
  1508. * Thu Apr 9 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-15
  1509. - rebuilt with fixed gcc to avoid miscompilation of i586 memmove
  1510. - reenable experimental malloc again
  1511. * Wed Apr 8 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-14
  1512. - update from trunk
  1513. - temporarily disable experimental malloc
  1514. * Tue Apr 7 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-13
  1515. - update from trunk
  1516. - fix strverscmp (#494457)
  1517. - configure with --enable-nss-crypt
  1518. * Wed Apr 1 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-12
  1519. - update from trunk
  1520. - configure with --enable-experimental-malloc
  1521. * Fri Mar 20 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-11
  1522. - update from trunk
  1523. - POSIX 2008 prototype adjustments for scandir{,64}, alphasort{,64} and
  1524. versionsort{,64}
  1525. - fix libthread_db (#491197)
  1526. * Tue Mar 10 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-10
  1527. - update from trunk
  1528. - fix atexit/__cxa_atexit
  1529. * Mon Mar 9 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-9
  1530. - update from trunk
  1531. - POSIX 2008 support: -D_XOPEN_SOURCE=700 and -D_POSIX_C_SOURCE=200809L
  1532. - move libnldbl_nonshared.a on ppc*/s390*/sparc* back to glibc-devel
  1533. * Fri Feb 27 2009 Roland McGrath <roland@redhat.com> - 2.9.90-8.1
  1534. - fix libthread_db (#487212)
  1535. * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.90-8
  1536. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  1537. * Wed Feb 18 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-7
  1538. - update from trunk
  1539. - adjust for i586 + i686 from i386 + i686 build
  1540. - split static libraries into glibc-static subpackage
  1541. - ld -r the whole libpthread.a together to avoid endless issues with
  1542. -static ... -lpthread
  1543. - require 2.6.18 and later kernel
  1544. * Wed Feb 4 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-3
  1545. - update from trunk
  1546. - ISO C++ compliant strchr etc. with GCC 4.4+
  1547. - AT_RANDOM support
  1548. * Thu Jan 8 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-2
  1549. - update from trunk
  1550. * Fri Jan 2 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-1
  1551. - update from trunk (#478314)
  1552. * Mon Dec 8 2008 Jakub Jelinek <jakub@redhat.com> 2.9-3
  1553. - temporarily disable _nss_dns_gethostbyname4_r (#459756)
  1554. - NIS hostname lookup fixes (#473073, #474800, BZ#7058)
  1555. - fix unsetenv (#472941)
  1556. * Thu Nov 13 2008 Jakub Jelinek <jakub@redhat.com> 2.9-2
  1557. - glibc 2.9 release
  1558. - fix CPU_ALLOC_SIZE on 32-bit arches (BZ#7029)
  1559. * Wed Nov 12 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-17
  1560. - update from trunk
  1561. - don't abort on broken DNS replies (#469299, BZ#7009)
  1562. - misc fixes (BZ#6966, BZ#7008, BZ#6955, BZ#6843)
  1563. * Fri Oct 31 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-16
  1564. - update from trunk
  1565. - further resolver fixes
  1566. - another dynamic TLS handling fix (#469263)
  1567. - misc fixes (BZ#6867, BZ#6875, BZ#6919, BZ#6920, BZ#6942, BZ#6947,
  1568. BZ#6968, BZ#6974, BZ#6980, BZ#6995)
  1569. - rebuild with newer rpm to avoid stripping
  1570. shared libraries when they shouldn't be (#468129)
  1571. * Tue Oct 28 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-15
  1572. - update from trunk
  1573. - __libc_res_nquery fixes (#466786)
  1574. * Sun Oct 19 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-14
  1575. - update from trunk
  1576. - fix dynamic TLS handling (#467309)
  1577. - fix sys/signalfd.h for C++ (#467172)
  1578. - fix sprof (#458861)
  1579. - fix _mcount and socket syscalls on s390x (#464146)
  1580. - try harder to allocate memory in valloc and pvalloc (#461481)
  1581. - fix power6 32-bit libs (#467311)
  1582. * Fri Oct 10 2008 Dennis Gilmore <dennis@ausil.us> 2.8.90-13
  1583. - apply sparcv9v memset patch from jakub and davem
  1584. * Fri Aug 29 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-12
  1585. - update from trunk
  1586. - revert origin changes (#457849)
  1587. - use MAP_STACK for thread stacks
  1588. - misc fixes (BZ#6845, BZ#6544, BZ#6634, BZ#6589, BZ#6790, BZ#6791,
  1589. BZ#6824)
  1590. - power7 bits (BZ#6817)
  1591. - fix expm1 on i?86/x86_64 (#43354, BZ#5794)
  1592. * Sat Aug 2 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-11
  1593. - update from trunk
  1594. - fix non-absolute $ORIGIN handling (#457560)
  1595. - exported some further libresolv APIs (#453325)
  1596. - misc fixes
  1597. * Tue Jul 29 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-10
  1598. - update from trunk
  1599. - resolver fixes
  1600. - misc fixes (BZ#6771, BZ#6763, BZ#6698, BZ#6712)
  1601. - s390{,x} utmp/utmpx bi-arch support (BZ#6724)
  1602. - popen "e" flag
  1603. - fr_FR locale changes reenabled
  1604. * Wed Jul 16 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-9
  1605. - update from trunk
  1606. - fix unbuffered vfprintf if writing to the stream fails (#455360)
  1607. - remove useless "malloc: using debugging hooks" message (#455355)
  1608. - nscd fixes
  1609. - fix resolver alignment issues (#454500)
  1610. - fix setvbuf (BZ#6719)
  1611. * Thu Jul 3 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-8
  1612. - update from trunk
  1613. - watch even resolv.conf in nscd using inotify
  1614. - some nscd fixes
  1615. * Fri Jun 13 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-7
  1616. - update from trunk
  1617. - avoid *lround* on ppc* clobbering cr3/cr4 registers (#450790)
  1618. - further nscd fixes (#450704)
  1619. - use inotify in nscd to watch files
  1620. * Thu Jun 12 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-6
  1621. - update from trunk
  1622. - nscd fixes (#450704)
  1623. - fix getservbyport (#449358)
  1624. - fix regexp.h (#446406)
  1625. - avoid crashing on T_DNAME in DNS responses (#450766)
  1626. * Sun May 25 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-5
  1627. - update from trunk
  1628. * Tue May 20 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-4
  1629. - further getaddrinfo and nscd fixes
  1630. * Sun May 18 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-3
  1631. - getaddrinfo and nscd fixes
  1632. - reenable assertion checking in rawhide
  1633. * Fri May 16 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-2
  1634. - fix getaddrinfo (#446801, #446808)
  1635. * Thu May 15 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-1
  1636. - update to trunk
  1637. - O(n) memmem/strstr/strcasestr
  1638. - i386/x86_64 TLS descriptors support
  1639. - concurrent IPv4 and IPv6 DNS lookups by getaddrinfo
  1640. * Mon May 5 2008 Jakub Jelinek <jakub@redhat.com> 2.8-3
  1641. - don't run telinit u in %%post if both /dev/initctl and
  1642. /sbin/initctl exist (#444978)
  1643. - workaround GCC ppc64 miscompilation of c{log{,10},acosh,atan}l
  1644. (#444996)
  1645. * Wed Apr 30 2008 Jakub Jelinek <jakub@redhat.com> 2.8-2
  1646. - fix nscd races during GC (BZ#5381)
  1647. - rebuilt with fixed GCC to fix regex miscompilation on power6
  1648. - SPARC fixes
  1649. * Sat Apr 12 2008 Jakub Jelinek <jakub@redhat.com> 2.8-1
  1650. - 2.8 release
  1651. * Fri Apr 11 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-16
  1652. - update to trunk
  1653. - misc fixes (BZ#4997, BZ#5741)
  1654. - make sure all users of __libc_setlocale_lock know it is
  1655. now a rwlock
  1656. - fix ppc/ppc64 compatibility _sys_errlist and _sys_siglist
  1657. symbols
  1658. * Thu Apr 10 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-15
  1659. - update to trunk
  1660. - misc fixes (BZ#4314, BZ#4407, BZ#5209, BZ#5436, BZ#5768, BZ#5998,
  1661. BZ#6024)
  1662. - restart sshd in %%post when upstart is used - it doesn't have
  1663. /dev/initctl (#441763)
  1664. - disable assert checking again
  1665. * Tue Apr 8 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-14
  1666. - update to trunk
  1667. - misc fixes (BZ#5443, BZ#5475, BZ#5478, BZ#5939, BZ#5979, BZ#5995,
  1668. BZ#6004, BZ#6007, BZ#6020, BZ#6021, BZ#6042)
  1669. - change mtrace to keep perl 5.10 quiet (#441082)
  1670. - don't share conversion state between mbtowc and wctomb (#438687)
  1671. - if st_blksize is too large and malloc fails, retry with smaller
  1672. buffer in opendir (#430768)
  1673. - correct *printf overflow test (#358111)
  1674. * Fri Mar 28 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-13
  1675. - update to trunk
  1676. - don't define ARG_MAX in <limits.h>, as it is no longer
  1677. constant - use sysconf (_SC_ARG_MAX) to get the current
  1678. argument size limit
  1679. - fix build on sparc64
  1680. - only service sshd condrestart if /etc/rc.d/init.d/sshd exists
  1681. (#428859)
  1682. * Wed Mar 26 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-12
  1683. - update to trunk
  1684. - new CLONE_* flags in <sched.h> (#438542)
  1685. - nis+ errno clobbering fix (#437945)
  1686. - fix adjtime (#437974)
  1687. * Fri Mar 14 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-11
  1688. - update to trunk
  1689. - remove <stropts.h>, define _XOPEN_STREAMS -1 (#436349)
  1690. * Wed Mar 5 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-8
  1691. - update to trunk
  1692. - {,v}{as,d}printf and obstack_{,v}printf fortification (#435905)
  1693. - fix getnameinfo/gethostbyaddr (#428067, BZ#5790)
  1694. - fix yp_order (#435519, BZ#5854)
  1695. - misc fixes (BZ#5779, BZ#5736, BZ#5627, BZ#5818, BZ#5012)
  1696. - merge review cleanup (Tom Callaway, #225806)
  1697. * Sat Feb 16 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-7
  1698. - update to trunk
  1699. - make NI_MAXHOST and NI_MAXSERV available even in BSDish
  1700. namespaces (BZ#5737)
  1701. - timerfd_* syscalls
  1702. * Fri Feb 1 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-6
  1703. - fix build
  1704. * Thu Jan 31 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-5
  1705. - update to trunk
  1706. - rebuild with gcc 4.3
  1707. * Fri Jan 11 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-4
  1708. - update to trunk
  1709. - misc fixes (BZ#5541, BZ#5545, BZ#5553, BZ#5112, BZ#5520)
  1710. - getaddrinfo fixes
  1711. - signalize EOVERFLOW from sem_post instead of overflowing
  1712. the counter
  1713. - fix i?86 makecontext
  1714. - fix iconv for iso-2022-jp//translit (#397021)
  1715. * Thu Jan 3 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-3
  1716. - update to trunk
  1717. - fix recognition of interface family (#425768)
  1718. - add __THROW to __ctype_{b,tolower,toupper}_loc prototypes
  1719. * Thu Dec 27 2007 Jakub Jelinek <jakub@redhat.com> 2.7.90-2
  1720. - update to trunk
  1721. - nsswitch fix (#425768)
  1722. - temporarily enable assert checking
  1723. * Wed Dec 12 2007 Jakub Jelinek <jakub@redhat.com> 2.7.90-1
  1724. - update to trunk
  1725. - fix __USE_STRING_INLINES on i?86 (#408731, #371711)
  1726. - fix *scanf (#388751)
  1727. * Wed Oct 17 2007 Jakub Jelinek <jakub@redhat.com> 2.7-1
  1728. - glibc 2.7 release
  1729. - fix tzfile.c for times after last transition (#333561)
  1730. - fix sem_post@GLIBC_2.0 on i?86
  1731. - appease valgrind in libpthread.so initialization
  1732. - misc fixes (BZ#3425, BZ#5184, BZ#5186)
  1733. * Mon Oct 15 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-21
  1734. - fix getgr{name,gid}{,_r} with nscd
  1735. * Sun Oct 14 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-20
  1736. - install <bits/error.h> (#330031)
  1737. - disable -D_FORTIFY_SOURCE{,=2} support (with a warning) for
  1738. GCC 3.4.x and earlier(#327641)
  1739. - pl_PL locale changes (BZ#4098, #242296)
  1740. - misc fixes (BZ#1140, BZ#3195, BZ#3242, BZ#4359)
  1741. * Thu Oct 11 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-19
  1742. - fix <netinet/tcp.h>
  1743. - simple preprocessor in localedef, fix de_DE collation with it
  1744. * Wed Oct 10 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-18
  1745. - add signalfd, eventfd, eventfd_read, eventfd_write
  1746. - qsort speedups
  1747. - workaround for cpuid bugs (#324081)
  1748. - make sure gettext's conversion_lock is initialized even if
  1749. program isn't linked against libpthread.so.0, only dlopens it (#321761)
  1750. - misc fixes (BZ#5112, BZ#5113, BZ#5104, BZ#5063, BZ#5010, BZ#4407,
  1751. BZ#3924, BZ#5103, BZ#2633, BZ#181, BZ#73, #321901)
  1752. * Wed Oct 3 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-17
  1753. - fix {,v}swprintf with -D_FORTIFY_SOURCE=1 -mlong-double-64 on ppc*/s390*/sparc*
  1754. - strcoll fixes
  1755. - misc fixes (BZ#645, BZ#5071)
  1756. - locale fixes (BZ#4941, #299321, #203364, #196711, #236212)
  1757. * Sat Sep 29 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-16
  1758. - misc fixes (BZ#4963, BZ#4972, BZ#5028, BZ#5043, BZ#5058)
  1759. - improve -D_FORTIFY_SOURCE{,=2} diagnostic through warning/error
  1760. attributes
  1761. - fix wcscpy, wcpcpy, fgetws, fgetws_unlocked, swprintf and vswprintf
  1762. fortification inlines
  1763. - fix a scalability issue with lazy binding in heavily multithreaded
  1764. programs
  1765. * Thu Sep 20 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-15
  1766. - $5$ (SHA-256) and $6$ (SHA-512) support in crypt
  1767. (#228697, #249477, #173834)
  1768. * Tue Sep 18 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-14
  1769. - -D_FORTIFY_SOURCE{,=2} support for C++
  1770. - fortification of fread{,_unlocked}
  1771. - support *scanf m allocation modifier (%%ms, %%mls, %%mc, ...)
  1772. - in -std=c99 or -D_XOPEN_SOURCE=600 mode don't recognize
  1773. %%as, %%aS and %%a[ as a GNU extension for *scanf
  1774. - fix splice, vmsplice, tee return value, make them cancellation
  1775. points
  1776. - mq_open checking
  1777. - use inline function rather than function-like macro
  1778. for open{,at}{,64} checking
  1779. - IFA_F_OPTIMISTIC handling in getaddrinfo (#259681)
  1780. - fix an ABBA deadlock in ld.so (#284171)
  1781. - remove sparc{32,64} unwind info from _start and clone
  1782. * Mon Aug 27 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-13
  1783. - fix personality on x86_64/ppc/ppc64 (#256281)
  1784. * Sat Aug 25 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-12
  1785. - readd x86_64 gettimeofday stuff, initialize it earlier
  1786. - nis_list fix (#254115)
  1787. - workaround for bugs in ia64 silly /emul/ia32-linux hack (#253961)
  1788. - misc fixes (BZ#3924, BZ#4566, BZ#4582, BZ#4588, BZ#4726, BZ#4946,
  1789. BZ#4905, BZ#4814, BZ#4925, BZ#4936, BZ#4896, BZ#4937, BZ#3842,
  1790. BZ#4554, BZ#4557, BZ#4938)
  1791. * Fri Aug 17 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-11
  1792. - remove __strtold_internal and __wcstold_internal from ppc*/s390*/sparc*
  1793. *-ldbl.h headers
  1794. - temporarily backout x86_64 gettimeofday.S changes (#252453)
  1795. - some further sparc, sparc64 and alpha fixes
  1796. * Wed Aug 15 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-10
  1797. - don't open /etc/ld.so.{cache,preload} with O_NOATIME (#252146)
  1798. - s390{,x}, alpha and sparc fixes
  1799. - sparcv9 is no longer an aux arch, as we expect
  1800. to not build sparc.rpm glibc any longer, only sparcv9.rpm,
  1801. sparc64.rpm and new two aux arches sparcv9v.rpm and sparc64v.rpm
  1802. * Tue Aug 14 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-9
  1803. - private futex even for mutexes and condvars
  1804. - some further O_CLOEXEC changes
  1805. - use vDSO on x86_64 if available
  1806. - ia64 build fixes (#251983)
  1807. * Fri Aug 10 2007 Roland McGrath <roland@redhat.com> 2.6.90-8
  1808. - update to trunk
  1809. - fix missing strtold_l export on ppc64
  1810. * Thu Aug 9 2007 Roland McGrath <roland@redhat.com> 2.6.90-6
  1811. - update to trunk
  1812. - fix local PLT regressions
  1813. - spec file revamp for new find-debuginfo.sh
  1814. * Sun Aug 5 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-4
  1815. - fix librt.so and librtkaio.so on ppc32, so that it is not using
  1816. bss PLT
  1817. * Sat Aug 4 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-3
  1818. - fix open{,at}{,64} macro for -pedantic (#250897)
  1819. - add transliteration for l with stroke (#250492)
  1820. - fix strtod ("-0", NULL)
  1821. - update License tag
  1822. * Wed Aug 1 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-2
  1823. - make aux-cache purely optional performance optimization in ldconfig,
  1824. don't issue any errors if it can't be created (#250430)
  1825. - remove override_headers hack, BuildRequire >= 2.6.22 kernel-headers
  1826. and rely on its content
  1827. * Tue Jul 31 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-1
  1828. - update to trunk
  1829. - private futex optimizations
  1830. - open{,at}{,64} argument checking
  1831. - ldconfig speedups
  1832. * Sun Jul 8 2007 Jakub Jelinek <jakub@redhat.com> 2.6-4
  1833. - filter <built-in> pseudo-files from debuginfo source lists (#245714)
  1834. - fix sscanf when errno is EINTR before the call (BZ#4745)
  1835. - save/restore errno around reading /etc/default/nss (BZ#4702)
  1836. - fix LD_HWCAP_MASK handling
  1837. - disable workaround for #210748, instead backport
  1838. ld.so locking fixes from the trunk (#235026)
  1839. - new x86_64 memcpy
  1840. - don't write uninitialized padding bytes to nscd socket
  1841. - fix dl{,v}sym, dl_iterate_phdr and dlopen if some library is
  1842. mapped into ld.so's inter-segment hole on x86_64 (#245035, #244545)
  1843. - fix LD_AUDIT=a:b program (#180432)
  1844. - don't crash on pseudo-zero long double values passed to
  1845. *printf on i?86/x86_64/ia64 (BZ#4586)
  1846. - fix *printf %%La and strtold with some hexadecimal floating point
  1847. constants on ppc/ppc64
  1848. - fix nextafterl on ppc/ppc64
  1849. - fix sem_timedwait on i?86 and x86_64
  1850. * Thu May 24 2007 Jakub Jelinek <jakub@redhat.com> 2.6-3
  1851. - don't use %%config(missingok) for locale-archive.tmpl,
  1852. instead of removing it altogether truncate it to zero
  1853. size (#240697)
  1854. - add a workaround for #210748
  1855. * Mon May 21 2007 Jakub Jelinek <jakub@redhat.com> 2.6-2
  1856. - restore malloc_set_state backwards compatibility (#239344)
  1857. - fix epoll_pwait (BZ#4525)
  1858. - fix printf with unknown format spec or positional arguments
  1859. and large width and/or precision (BZ#4514)
  1860. - robust mutexes fix (BZ#4512)
  1861. * Tue May 15 2007 Roland McGrath <roland@redhat.com> 2.6-1
  1862. - glibc 2.6 release
  1863. * Fri May 11 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-24
  1864. - utimensat, futimens and lutimes support
  1865. * Thu May 10 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-23
  1866. - use madvise MADV_DONTNEED in malloc
  1867. - fix ia64 feraiseexcept
  1868. - fix s390{,x} feholdexcept (BZ#3427)
  1869. - ppc fenv fixes
  1870. - make fdatasync a cancellation point (BZ#4465)
  1871. - fix *printf for huge precisions with wide char code and multi-byte
  1872. strings
  1873. - fix dladdr (#232224, BZ#4131)
  1874. * Fri May 4 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-22
  1875. - add transliteration for <U2044> (BZ#3213)
  1876. - fix *scanf with %%f on hexadecimal floats without exponent (BZ#4342)
  1877. - fix *printf with very large precisions for %%s (#238406, BZ#4438)
  1878. - fix inet_ntop size checking for AF_INET (BZ#4439)
  1879. - for *printf %%e avoid 1.000e-00, for exponent 0 always use + sign (#238431)
  1880. - fix a regression introduced in #223467 changes
  1881. - gethostby*_r alignment fixes (BZ#4381)
  1882. - fix ifaddrs error handling
  1883. * Mon Apr 16 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-21
  1884. - don't include individual locale files in glibc-common,
  1885. rather include prepared locale-archive template and let
  1886. build-locale-archive create locale-archive from the template
  1887. and any user supplied /usr/lib/locale/*_* directories,
  1888. then unlink the locale-archive template - this should save
  1889. > 80MB of glibc-common occupied disk space
  1890. - fix _XOPEN_VERSION (BZ#4364)
  1891. - fix printf with %%g and values tiny bit smaller than 1.e-4 (#235864,
  1892. BZ#4362)
  1893. - fix NIS+ __nisfind_server (#235229)
  1894. * Sat Mar 31 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-20
  1895. - assorted NIS+ speedups (#223467)
  1896. - fix HAVE_LIBCAP configure detection (#178934)
  1897. - remove %%{_prefix}/sbin/rpcinfo from glibc-common (#228894)
  1898. - nexttoward*/nextafter* fixes (BZ#3306)
  1899. - feholdexcept/feupdateenv fixes (BZ#3427)
  1900. - speed up fnmatch with two or more * in the pattern
  1901. * Sat Mar 17 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-19
  1902. - fix power6 libm compat symbols on ppc32 (#232633)
  1903. - fix child refcntr in NPTL fork (#230198)
  1904. - fix ifaddrs with many net devices on > 4KB page size arches (#230151)
  1905. - fix pthread_mutex_timedlock on x86_64 (#228103)
  1906. - various fixes (BZ#3919, BZ#4101, BZ#4130, BZ#4181, BZ#4069, BZ#3458)
  1907. * Wed Feb 21 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-18
  1908. - fix nftw with FTW_CHDIR on / (BZ#4076)
  1909. - nscd fixes (BZ#4074)
  1910. - fix fmod{,f,l} on i?86 (BZ#3325)
  1911. - support localized digits for fp values in *scanf (BZ#2211)
  1912. - namespaces fixes (BZ#2633)
  1913. - fix euidaccess (BZ#3842)
  1914. - glob fixes (BZ#3996)
  1915. - assorted locale data fixes (BZ#1430, BZ#672, BZ#58, BZ#3156,
  1916. BZ#2692, BZ#2648, BZ#3363, BZ#3334, BZ#3326, BZ#3322, BZ#3995,
  1917. BZ#3885, BZ#3884, BZ#3851)
  1918. * Sun Feb 11 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-17
  1919. - RFC2671 support in resolver (#205842)
  1920. - fix strptime (BZ#3944)
  1921. - fix regcomp with REG_NEWLINE (BZ#3957)
  1922. - fix pthread_mutex_timedlock on x86_64 (#228103)
  1923. * Fri Feb 2 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-16
  1924. - add strerror_l
  1925. - fix application crashes when doing NSS lookups through nscd
  1926. mmapped databases and nscd decides to start garbage collection
  1927. during the lookups (#219145, #225315)
  1928. - fix %%0lld printing of 0LL on 32-bit architectures (BZ#3902)
  1929. - ignore errors from install-info in glibc-devel scriptlets
  1930. (#223691)
  1931. * Wed Jan 17 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-15
  1932. - fix NIS getservbyname when proto is NULL
  1933. - fix nss_compat +group handling (#220658)
  1934. - cache services in nscd
  1935. - fix double free in fts_close (#222089)
  1936. - fix vfork+execvp memory leak (#221187)
  1937. - soft-fp fixes (BZ#2749)
  1938. - further strtod fixes (BZ#3855)
  1939. - make sure pthread_kill doesn't return EINVAL even if
  1940. the target thread exits in between pthread_kill ESRCH check
  1941. and the actual tgkill syscall (#220420)
  1942. - fix ABBA deadlock possibility in ld.so scope locking code
  1943. * Tue Dec 19 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-14
  1944. - fix {j,m}rand48{,_r} on 64-bit arches (BZ#3747)
  1945. - handle power6x AT_PLATFORM (#216970)
  1946. - fix a race condition in getXXbyYY_r (#219145)
  1947. - fix tst-pselect testcase
  1948. * Thu Dec 14 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-13
  1949. - fix setcontext on ppc32 (#219107)
  1950. - fix wide stdio after setvbuf (#217064, BZ#2337)
  1951. - handle relatime mount option in statvfs
  1952. - revert i?86/x86_64 clone CFI temporarily
  1953. * Sun Dec 10 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-12
  1954. - fix hasmntopt (#218802)
  1955. - fix setusershell and getusershell (#218782)
  1956. - strtod fixes (BZ#3664, BZ#3673, BZ#3674)
  1957. - fix memusage with realloc (x, 0)
  1958. * Tue Dec 5 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-11
  1959. - allow suid apps to setenv NIS_PATH and influence through that
  1960. nis_list and nis_lookup (#209155)
  1961. - fix ttyname and ttyname_r with invalid file descriptor (#218276)
  1962. - cs_CZ LC_TIME fixes (#218438)
  1963. - fix build with 2.6.19+ headers (#217723)
  1964. * Fri Dec 1 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-10
  1965. - fix x86-64 restore_rt unwind info
  1966. * Thu Nov 30 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-9
  1967. - fix last svc_run change (#217850)
  1968. - on ppc64 build __libc_start_main without unwind info,
  1969. as it breaks MD_FROB_UPDATE_CONTEXT (#217729, #217775; in the
  1970. future that could be fixable just by providing .cfi_undefined r2
  1971. in __libc_start_main instead)
  1972. - add unwind info for x86-64 restore_rt signal return landing pad
  1973. (#217087)
  1974. - add power6x subdir to /%%{_lib}/ and /%%{_lib}/rtkaio/,
  1975. link all libs from ../power6/* into them
  1976. * Tue Nov 28 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-8
  1977. - fix svc_run (#216834, BZ#3559)
  1978. - add -fasynchronous-unwind-tables to CFLAGS (#216518)
  1979. - make sure there is consistent timestamp for /etc/ld.so.conf,
  1980. /etc/localtime and /etc/rpc between multilib glibc rpms
  1981. * Mon Nov 20 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-7
  1982. - handle IPv6 addresses in /etc/hosts that are mappable to
  1983. IPv4 addresses in IPv4 host lookups (#215283)
  1984. - fix :include: /etc/alias handling (#215572)
  1985. - handle new tzdata format to cope with year > 2037 transitions
  1986. on 64-bit architectures
  1987. * Fri Nov 10 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-6
  1988. - fix strxfrm fix
  1989. - fix i?86 floor and ceil inlines (BZ#3451)
  1990. * Thu Nov 9 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-5
  1991. - fix sysconf (_SC_LEVEL{2,3}_CACHE_SIZE) on Intel Core Duo
  1992. CPUs
  1993. - fix libthread_db.so on TLS_DTV_AT_TP architectures
  1994. - fix --inhibit-rpath (#214569)
  1995. - fix _r_debug content when prelinked ld.so executes
  1996. a program as its argument
  1997. - fix strxfrm
  1998. - powerpc-cpu add-on updates
  1999. * Fri Nov 3 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-4
  2000. - fix atexit backwards compatibility (#213388)
  2001. - add mai_IN locale (#213415)
  2002. - remove bogus %%{_libdir}/librt.so.1 symlink (#213555)
  2003. - fix memusage (#213656)
  2004. - change libc.info category (#209493)
  2005. * Sun Oct 29 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-3
  2006. - fix suid/sgid binaries on i?86/x86_64 (#212723)
  2007. * Fri Oct 27 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-2
  2008. - fix ia64 build
  2009. - don't call _dl_close outside of dl_load_lock critical section
  2010. if dlopen failed (BZ#3426)
  2011. - add rtld scope locking (#211133)
  2012. * Wed Oct 25 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-1
  2013. - fix i?86 6 argument syscalls (e.g. splice)
  2014. - fix rtld minimal realloc (BZ#3352)
  2015. - fix RFC3484 getaddrinfo sorting according to rules 4 and 7 (BZ#3369)
  2016. - fix xdrmem_setpos (#211452)
  2017. - bump __GLIBC_MINOR__
  2018. - increase PTHREAD_STACK_MIN on ppc{,64} to 128K to allow
  2019. 64K pagesize kernels (#209877)
  2020. - speed up initgroups on NIS+ (#208203)
  2021. * Mon Oct 2 2006 Jakub Jelinek <jakub@redhat.com> 2.5-2
  2022. - fix nscd database growing (#207928)
  2023. - bypass prelinking when LD_DYNAMIC_WEAK=1 is in the environment
  2024. * Fri Sep 29 2006 Jakub Jelinek <jakub@redhat.com> 2.5-1
  2025. - glibc 2.5 release
  2026. * Wed Sep 27 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-36
  2027. - rebuilt with gcc-4.1.1-26 to fix unwind info
  2028. * Mon Sep 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-35
  2029. - fix glob with large number of matches (BZ#3253)
  2030. - fix fchownat on kernels that don't support that syscall (BZ#3252)
  2031. - fix lrintl on s390{,64}
  2032. * Sat Sep 23 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-34
  2033. - fix ppc{32,64} longjmp (BZ#3225)
  2034. - fix user visible spelling errors (BZ#3137)
  2035. - fix l{,l}rint{,f,l} around zero (BZ#2592)
  2036. - avoid stack trampoline in s390{,x} makecontext
  2037. * Fri Sep 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-33
  2038. - fix dlclose (#206639)
  2039. - don't load platform optimized libraries if kernel doesn't set
  2040. AT_PLATFORM
  2041. - fix ppc{32,64} libSegFault.so
  2042. - use -mtune=generic even for glibc-devel.i386 (#206437)
  2043. - fix /%%{_lib}/librt.so.1 symlink
  2044. * Fri Sep 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-32
  2045. - on ppc* use just AT_PLATFORM and altivec AT_HWCAP bit for library selection
  2046. - fix lrintl and lroundl on ppc{,64}
  2047. - use hidden visibility on fstatat{,64} and mknodat in libc_nonshared.a
  2048. * Sun Sep 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-31
  2049. - fix pthread_cond_{,timed}wait cancellation (BZ#3123)
  2050. - fix lrint on ppc32 (BZ#3155)
  2051. - fix malloc allocating more than half of address space (BZ#2775)
  2052. - fix mktime on 32-bit arches a few years after 2038 (BZ#2821)
  2053. * Thu Sep 7 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-30
  2054. - add librtkaio, to use it add /%%{lib}/rtkaio to your
  2055. LD_LIBRARY_PATH or /etc/ld.so.conf
  2056. - fix or_IN February name (#204730)
  2057. - fix pthread_create called from cancellation handlers (BZ#3124)
  2058. - fix regex case insensitive searches with characters where upper
  2059. and lower case multibyte representations have different length
  2060. (e.g. I and dotless i, #202991)
  2061. * Tue Sep 5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-29
  2062. - randomize resolver query ids before use instead after use (#205113)
  2063. - fix resolver symver checking with DT_GNU_HASH (#204909)
  2064. - put .hash section in glibc libraries at the end of RO segment
  2065. when .gnu.hash is present
  2066. * Thu Aug 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-28
  2067. - another malloc doubly linked list corruption problem fix (#204653)
  2068. * Thu Aug 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-27
  2069. - allow $LIB and $PLATFORM in dlopen parameters even in suid/sgid (#204399)
  2070. - handle $LIB/$PLATFORM in LD_LIBRARY_PATH
  2071. - fix splice prototype (#204530)
  2072. * Mon Aug 28 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-26
  2073. - real fix for the doubly linked list corruption problem
  2074. - try harder in realloc to allocate memory (BZ#2684)
  2075. - fix getnameinfo error reporting (#204122)
  2076. - make localedef more robust on invalid input (#203728)
  2077. * Fri Aug 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-25
  2078. - temporarily back out code to limit number of unsorted block
  2079. sort iterations (#203735, #204027)
  2080. - handle PLT symbols in dladdr properly (BZ#2683)
  2081. - avoid malloc infinite looping for allocations larger than
  2082. the system can allocate (#203915)
  2083. * Tue Aug 22 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-23
  2084. - malloc fixes, especially for 32-bit arches (#202309)
  2085. - further *_IN locale fixes (#200230)
  2086. - fix get{serv,rpc}ent{,_r} if NIS map is empty (#203237)
  2087. - fix /usr/bin/iconv (#203400)
  2088. * Fri Aug 18 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-22
  2089. - rebuilt with latest binutils to pick up 64K -z commonpagesize
  2090. on ppc/ppc64 (#203001)
  2091. * Tue Aug 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-21
  2092. - if some test gets stuck, kill the tee process after make check
  2093. finishes
  2094. - build with -mtune=generic on i686 and x86_64
  2095. * Tue Aug 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-20
  2096. - PTHREAD_PRIO_PROTECT support
  2097. - fix errno if nice() fails (#201826)
  2098. * Thu Aug 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-19
  2099. - adaptive malloc brk/mmap threshold
  2100. - fix fchownat to use kernel syscall (if available) on many arches (#201870)
  2101. - only define O_DIRECT with -D_GNU_SOURCE on ia64 to match all
  2102. other arches (#201748)
  2103. * Mon Aug 7 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-18
  2104. - NIS+ fixes
  2105. - fix memusage and xtrace scripts (#200736)
  2106. - redirect /sbin/service sshd condrestart std{out,err} to /dev/null
  2107. when executed from glibc_post_upgrade
  2108. * Wed Aug 2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-17
  2109. - typo fix for the dladdr patch
  2110. - build i?86 glibc with -mno-tls-direct-seg-refs (#200469)
  2111. * Wed Aug 2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-16
  2112. - fix dladdr on binaries/libraries with only DT_GNU_HASH and no
  2113. DT_HASH (#200635)
  2114. - fix early timeout of initgroups data in nscd (#173019)
  2115. - add am/pm display to es_PE and es_NI locales (#167101)
  2116. - fix nss_compat failures when nis/nis+ unavailable (#192072)
  2117. * Mon Jul 31 2006 Roland McGrath <roland@redhat.com> 2.4.90-15
  2118. - fix missing destructor calls in dlclose (#197932)
  2119. - enable transliteration support in all locales (#196713)
  2120. - disallow RTLD_GLOBAL flag for dlmopen in secondary namespaces (#197462)
  2121. - PI mutex support
  2122. * Mon Jul 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-13
  2123. - DT_GNU_HASH support
  2124. * Fri Jun 30 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-12
  2125. - buildrequire gettext
  2126. - enable fstatat64/newfstatat syscalls even on ppc*/s390*/ia64 (#196494)
  2127. - fix out of memory behavior in gettext (#194321)
  2128. - fix regex on multi-byte non-UTF-8 charsets (#193873)
  2129. - minor NIS+ fixes (#190803)
  2130. - don't use cancellable calls in posix_spawn* and only set{u,g}id
  2131. current thread if requested (#193631)
  2132. * Wed May 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-11
  2133. - don't exit from nscd -i <database> before the database is
  2134. actually invalidated, add locking to prune_cache (#191464)
  2135. - build glibc-devel.i386 static libraries with
  2136. -mno-tls-direct-seg-refs -DNO_TLS_DIRECT_SEG_REFS
  2137. - RFC3542 support (advanced API for IPv6; #191001, BZ##2693)
  2138. * Wed May 24 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-10
  2139. - on i686 make glibc owner of /lib/i686 directory (#192597)
  2140. - search parent NIS+ domains (#190803)
  2141. * Sun May 21 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-9
  2142. - update from CVS
  2143. - big NIS+ changes
  2144. * Fri May 19 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-8
  2145. - update from CVS
  2146. - fix nss_compat when SETENT_BATCH_READ=TRUE is in /etc/default/nss
  2147. - fix RFC3484 precedence table for site-local and ULA addresses (#188364)
  2148. - fix a sunrpc memory leak
  2149. * Thu May 11 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-7
  2150. - update from CVS
  2151. - fix tcgetattr (#177965)
  2152. - fix <sys/queue.h> (#191264)
  2153. * Fri May 5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-6
  2154. - update from CVS
  2155. - rebuilt using fixed rpm
  2156. * Fri May 5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-5
  2157. - update from CVS
  2158. - some NIS+ fixes
  2159. - allow overriding rfc3484 address sorting tables for getaddrinfo
  2160. through /etc/gai.conf (sample config file included in %%doc directory)
  2161. * Mon May 1 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-4
  2162. - update from CVS
  2163. - SETENT_BATCH_READ /etc/default/nss option for speeding up
  2164. some usages of NIS+ (#188246)
  2165. - move debug state change notification (#179208)
  2166. - fix ldd script if one of the dynamic linkers is not installed (#190259)
  2167. * Thu Apr 27 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-3
  2168. - update from CVS
  2169. - fix a typo in nscd.conf (#190085)
  2170. - fix handling of SIGHUP in nscd when some caches are disabled (#189978)
  2171. - make nscd paranoia mode working with non-root server-user (#189779)
  2172. * Wed Apr 26 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-2
  2173. - update from CVS
  2174. - fix getaddrinfo (#190002)
  2175. - add auto-propagate nscd.conf options (#177154)
  2176. - fix nscd auditing (#169148)
  2177. * Tue Apr 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-1
  2178. - update from CVS
  2179. * Mon Apr 24 2006 Jakub Jelinek <jakub@redhat.com> 2.4-6
  2180. - update from CVS
  2181. - NIS+ fixes
  2182. - don't segfault on too large argp key values (#189545)
  2183. - getaddrinfo fixes for RFC3484 (#188364)
  2184. * Tue Mar 28 2006 Jakub Jelinek <jakub@redhat.com> 2.4-5
  2185. - update from CVS
  2186. - pshared robust mutex support
  2187. - fix btowc and bwtoc in C++ (#186410)
  2188. - fix NIS+ (#186592)
  2189. - don't declare __wcsto*l_internal for non-GCC or if not -O1+ (#185667)
  2190. - don't mention nscd failures on 2.0 kernels (#185335)
  2191. * Tue Mar 7 2006 Roland McGrath <roland@redhat.com> 2.4-4
  2192. - back up %%{ix86} gdb conflicts to < 6.3.0.0-1.111
  2193. * Tue Mar 7 2006 Jakub Jelinek <jakub@redhat.com> 2.4-3
  2194. - really fix rintl on ppc64
  2195. * Tue Mar 7 2006 Jakub Jelinek <jakub@redhat.com> 2.4-2
  2196. - accurate unwind info for lowlevellock.h stubs on %%{ix86}
  2197. - fix ppc/ppc64 ceill, floorl, rintl, roundl and truncl (BZ#2423)
  2198. * Mon Mar 6 2006 Jakub Jelinek <jakub@redhat.com> 2.4-1
  2199. - update from CVS
  2200. - glibc 2.4 release
  2201. * Mon Mar 6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.91-2
  2202. - update from CVS
  2203. - fix sYSMALLOc for MALLOC_ALIGNMENT > 2 * SIZE_SZ (#183895)
  2204. - revert ppc32 malloc alignment patch, it breaks malloc_set_state
  2205. and needs some further thoughts and time (#183894)
  2206. - provide accurate unwind info for lowlevellock.h stubs on x86_64
  2207. * Thu Mar 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.91-1
  2208. - update from CVS
  2209. - fixes for various arches
  2210. - ensure malloc returns pointers aligned to at least
  2211. MIN (2 * sizeof (size_t), __alignof__ (long double))
  2212. (only on ppc32 this has not been the case lately with addition
  2213. of 128-bit long double, #182742)
  2214. * Wed Mar 1 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-39
  2215. - update from CVS
  2216. * Fri Feb 17 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-38
  2217. - update from CVS
  2218. - robust mutexes rewrite
  2219. * Mon Feb 13 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-37
  2220. - update from CVS
  2221. - *at fixes
  2222. - unshare syscall wrapper
  2223. * Sat Feb 4 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-36
  2224. - update from CVS
  2225. - fix frequency setting for ITIMER_PROF (#179938, BZ#2268)
  2226. - fix powerpc inline fegetround ()
  2227. - fix nptl_db (#179946)
  2228. * Fri Feb 3 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-35
  2229. - update from CVS
  2230. - handle futimesat (fd, NULL, tvp) as futimes (fd, tvp)
  2231. - fix <stdlib.h> q{e,f,g}cvt{,_r} for -mlong-double-64
  2232. * Thu Feb 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-34
  2233. - fix <math.h> with C++ and -mlong-double-64 (#179742)
  2234. - add nexttowardl redirect for -mlong-double-64
  2235. * Thu Feb 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-33
  2236. - update from CVS
  2237. - long double support fixes
  2238. * Wed Feb 1 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-32
  2239. - update from CVS
  2240. - 128-bit long double fixes for ppc{,64}, s390{,x} and sparc{,v9},
  2241. alpha 128-bit long double support
  2242. - add inotify syscall numbers to the override <asm/unistd.h> headers
  2243. (#179366)
  2244. * Mon Jan 30 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-31
  2245. - update from CVS
  2246. - 128-bit long double on ppc, ppc64, s390, s390x and sparc{,v9}
  2247. - add some new syscall numbers to the override <asm/unistd.h>
  2248. headers
  2249. * Mon Jan 9 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-30
  2250. - update from CVS
  2251. - <pthread.h> initializer fixes for -std=c{8,9}9 on 32-bit
  2252. arches
  2253. - avoid writable .rodata (#177121)
  2254. * Fri Jan 6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-29
  2255. - update from CVS
  2256. - make pthread_mutex_t an unnamed union again, as it affects
  2257. libstdc++ ABI mangling
  2258. * Fri Jan 6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-28
  2259. - update from CVS
  2260. - make aio_suspend interruptible by signals (#171968)
  2261. * Fri Jan 6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-27
  2262. - only rely on d_type in 32-bit getdents on s390 for 2.6.11+
  2263. * Wed Jan 4 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-26
  2264. - update from CVS
  2265. - for newly linked lio_listio* callers, send per request
  2266. notifications (#170116)
  2267. - fixup nscd -S option removal changes (#176860)
  2268. - remove nonnull attribute from ctermid (#176753)
  2269. - fix PTHREAD_*_INITIALIZER{,_NP} on 64-bit arches
  2270. - SPARC NPTL support for pre-v9 CPUs
  2271. - drop support for 2.4.xx and < 2.6.9 kernels
  2272. * Mon Jan 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-25
  2273. - update from CVS
  2274. - s390{,x} and sparc{,64} pointer mangling fixes
  2275. - install a sanitized LinuxThreads <bits/libc-lock.h>
  2276. * Mon Jan 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-24
  2277. - update from CVS
  2278. - nscd audit changes (#174422)
  2279. - ppc{32,64} vDSO support and ppc32 hp-timing
  2280. * Tue Dec 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-23
  2281. - update from CVS
  2282. - robust mutexes
  2283. - fix transliteration segfaults (#176573, #176583)
  2284. - ignore prelink temporaries in ldconfig (#176570)
  2285. * Wed Dec 21 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-22
  2286. - update from CVS
  2287. - minor fts fixes
  2288. - revert broken _Pragma () workaround
  2289. - fix ldconfig on bi-arch architectures (#176316)
  2290. * Tue Dec 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-21
  2291. - update from CVS
  2292. - fix pointer (de)mangling in gconv_cache.c
  2293. * Tue Dec 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-20
  2294. - update from CVS
  2295. - time ((void *) 1) should segfault, not return -EFAULT (#174856, BZ#1952)
  2296. - fix errlist generation
  2297. - update ulps for GCC 4.1 on IA-64
  2298. * Mon Dec 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-19
  2299. - update from CVS
  2300. - sysdeps/generic reorg
  2301. - setjmp/longjmp jump pointer mangling
  2302. - rebuilt with GCC 4.1-RH prerelease, worked around broken _Pragma ()
  2303. handling in it
  2304. - remove glibc-profile subpackage
  2305. - use non-PLT calls for malloc/free/realloc/memalign invocations in
  2306. mtrace and mcheck hooks (#175261)
  2307. - setjmp/longjmp jump pointer mangling on ppc{,64}/ia64/s390{,x}
  2308. * Sat Nov 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-18
  2309. - update from CVS
  2310. - change <sys/stat.h> for broken apps that #define const /**/,
  2311. handle non-GCC compilers
  2312. - fix ppc{32,64} strncmp (BZ#1877, #173643, IT#83510)
  2313. - provide shmatt_t typedef in ia64 <sys/shm.h (#173680)
  2314. - support 2nd arg to futimesat being NULL (#173581)
  2315. * Wed Nov 16 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-17
  2316. - update from CVS
  2317. - fix <sys/stat.h> in C++
  2318. - {fstat,fchown,rename,unlink}at fixes
  2319. - epoll_wait is now a cancellation point
  2320. * Tue Nov 15 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-16
  2321. - update from CVS
  2322. - make sure waitid syscall is used on ppc*/s390*
  2323. * Thu Oct 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-15
  2324. - update from CVS
  2325. - be permissive in %%n check because of kernel bug #165351 (#171240)
  2326. - don't misalign stack in pthread_once on x86_64 (#170786, IT#81521)
  2327. - many locale fixes
  2328. * Mon Oct 10 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-14
  2329. - update from CVS
  2330. - fix malloc bug after fork introduced in the last update
  2331. - fix getent hosts IP for IPv4 IPs (#169831)
  2332. * Mon Oct 3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-13
  2333. - update from CVS
  2334. - fix setuid etc. hangs if some thread exits during the call (#167766)
  2335. - fix innetgr memory leak (#169051)
  2336. - support > 2GB nscd log files (#168851)
  2337. - too many other changes to list here
  2338. - include errno in nscd message if audit_open failed (#169148)
  2339. * Mon Sep 12 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-12
  2340. - update from CVS
  2341. - netgrp handling fixes (#167728)
  2342. - fix memory leak in setlocale (BZ#1318)
  2343. - fix hwcaps computation
  2344. - several regex portability improvements (#167019)
  2345. - hypotf fix
  2346. - fix *printf return code if underlying write fails (BZ#1146)
  2347. - PPC64 dl{,v}sym fixes for new ABI .opd symbols
  2348. - fix calloc with MALLOC_PERTURB_ in environment on 64-bit architectures
  2349. (#166719)
  2350. - source /etc/sysconfig/nscd (if it exists) in /etc/rc.d/init.d/nscd
  2351. (#167083)
  2352. - add %%triggerin for tzdata to glibc-common, so that tzdata updates
  2353. update /etc/localtime and /var/spool/postfix/etc/localtime if they
  2354. exist (#167787)
  2355. * Mon Aug 29 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-11
  2356. - FUTEX_WAKE_OP support to speed up pthread_cond_signal
  2357. * Wed Aug 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-10
  2358. - update from CVS
  2359. - fix growing of nscd persistent database (BZ#1204)
  2360. - fix _FORTIFY_SOURCE mbstowcs and wcstombs if destination size
  2361. is known at compile time, but length argument is not
  2362. * Mon Aug 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-9
  2363. - update from CVS
  2364. - fix resolving over TCP (#161181, #165802)
  2365. - on ia64 don't abort on unhandled math function exception codes
  2366. (#165693)
  2367. * Mon Aug 8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-8
  2368. - update from CVS
  2369. - nscd persistent database verifier (#164001)
  2370. - cleanup _FORTIFY_SOURCE bits/*.h headers (#165000)
  2371. - handle EINTR in sigwait properly
  2372. - make sure poor man's stack guard randomization keeps first
  2373. byte 0 even on big-endian 32-bit arches
  2374. - fix {elf,nptl}/tst-stackguard1
  2375. - obsolete linuxthreads-devel in glibc-devel
  2376. * Fri Jul 29 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-7
  2377. - update from CVS
  2378. - do some poor man's stack guard randomization even without
  2379. the costly --enable-stackguard-randomization
  2380. - rebuilt with new GCC to make it use -msecure-plt on PPC32
  2381. * Mon Jul 25 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-6
  2382. - update from CVS
  2383. - fix execvp if PATH is not in environment and the call is going
  2384. to fail (BZ#1125)
  2385. - another bits/wchar2.h fix (#163990)
  2386. * Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-5
  2387. - update from CVS
  2388. - fix stubs.h generation
  2389. - don't use _G_va_list in bits/wchar2.h
  2390. * Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-4
  2391. - update from CVS
  2392. - make sure bits/wchar2.h header is installed
  2393. - fix __getgroups_chk return type
  2394. * Thu Jul 21 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-3
  2395. - update from CVS
  2396. - make sure nscd cmsg buffers aren't misaligned, handle EINTR from
  2397. poll when contacting nscd more gracefully
  2398. - remove malloc attribute from posix_memalign
  2399. - correctly size nscd buffer for grpcache key (#163538)
  2400. - fix atan2f
  2401. - fix error memory leaks
  2402. - some more _FORTIFY_SOURCE protection
  2403. * Fri Jul 8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-2
  2404. - update from CVS
  2405. - ia64 stack protector support
  2406. - handle DNS referral results as server errors (#162625)
  2407. - ctan{,h}{,f,l} fixes (#160759)
  2408. - pass argc, argv and envp also to executable's *ni_array
  2409. functions (BZ#974)
  2410. - add ellipsis to clone prototype (#161593)
  2411. - fix glibc-profile (#162601)
  2412. - nss_compat fixes
  2413. - use sysdeps/generic version of <bits/stdio-lock.h> in installed
  2414. headers instead of NPTL version (#162634)
  2415. * Mon Jun 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-1
  2416. - update from CVS
  2417. - stack protector support
  2418. - fix xdr_{,u_}{longlong_t,hyper} on 64-bit arches (#161583)
  2419. - enable @GLIBC_2.4 symbols
  2420. - remove linuxthreads
  2421. * Mon Jun 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-11
  2422. - update from CVS
  2423. - PPC32 -msecure-plt support
  2424. - support classes keyword in /etc/hesiod.conf (#150350)
  2425. - add RLIMIT_NICE and RLIMIT_RTPRIO to <sys/resources.h> (#157049)
  2426. - decrease number of .plt relocations in libc.so
  2427. - use -laudit in nscd (#159217)
  2428. - handle big amounts of networking interfaces in getifaddrs/if_nameindex
  2429. (#159399)
  2430. - fix pa_IN locale's am_pm (#158715, BZ#622)
  2431. - fix debugging of PIEs
  2432. * Mon May 30 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-10
  2433. - fix LD_ASSUME_KERNEL (since 2.3.5-8 GLRO(dl_osversion)
  2434. has been always overwritten with the version of currently
  2435. running kernel)
  2436. - remove linuxthreads man pages other than those covered in
  2437. 3p section, as 3p man pages are far better quality and describe
  2438. POSIX behaviour that NPTL implements (#159084)
  2439. * Tue May 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-9
  2440. - update from CVS
  2441. - increase bindresvport's LOWPORT to 512, apparently some
  2442. broken daemons don't think 0 .. 511 ports are reserved
  2443. * Mon May 23 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-8
  2444. - update from CVS
  2445. - fix kernel version check in ld.so
  2446. - fix sendfile{,64} prototypes (BZ#961)
  2447. - try more ports in bindresvport if all 600..1023 are
  2448. used, don't use priviledged ports when talking to portmap
  2449. (#141773)
  2450. * Fri May 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-7
  2451. - update from CVS
  2452. - make regexec thread safe (BZ#934)
  2453. - fix statically linked programs on i?86, x86_64, s390* and
  2454. sparc* (#158027)
  2455. - fix IBM939 iconv module (BZ#955)
  2456. * Wed May 4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-6
  2457. - update from CVS
  2458. - fix cancellation on i?86
  2459. - add call frame information to i?86 assembly
  2460. * Tue May 3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-5
  2461. - update from CVS
  2462. - add some more UTF-8 locales (#156115)
  2463. - clean up /lib64/tls instead of /lib/tls on x86-64, s390x and
  2464. ppc64 in glibc_post_upgrade (#156656)
  2465. - fix posix_fallocate{,64} (#156289)
  2466. * Thu Apr 28 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-4
  2467. - update from CVS
  2468. - fix nscd cache pruning (#150748)
  2469. * Wed Apr 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-3
  2470. - update from CVS
  2471. - fix linuxthreads clocks
  2472. - put xen libs into the glibc-2*.i686 package instead of a separate one
  2473. - fix librt.so symlink in linuxthreads-devel
  2474. - do not include linuxthreads-devel on %%{auxarches},
  2475. just on the base architectures
  2476. * Wed Apr 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-2
  2477. - update from CVS
  2478. - with MALLOC_CHECK_=N N>0 (#153003)
  2479. - fix recursive dlclose (#154641)
  2480. - handle %%z in strptime (#154804)
  2481. - automatically append /%%{_lib}/obsolete/linuxthreads/
  2482. to standard library search path if LD_ASSUME_KERNEL=N N <= 2.4.19
  2483. or for glibc 2.0 binaries (or broken ones that don't use errno/h_errno
  2484. properly). Warning: all those will stop working when LinuxThreads
  2485. is finally nuked, which is not very far away
  2486. - remove nonnull attribute from acct prototype (BZ#877)
  2487. - kernel CPU clocks support
  2488. - fix *scanf in locales with multi-byte decimal point
  2489. * Wed Apr 27 2005 Roland McGrath <roland@redhat.com>
  2490. - glibc-xen subpackage for i686
  2491. * Fri Apr 15 2005 Roland McGrath <roland@redhat.com> 2.3.5-1
  2492. - update from CVS
  2493. - fix execvp regression (BZ#851)
  2494. - ia64 libm updates
  2495. - sparc updates
  2496. - fix initstate{,_r}/strfry (#154504)
  2497. - grok PT_NOTE in vDSO for kernel version and extra hwcap dirs,
  2498. support "hwcap" keyword in ld.so.conf files
  2499. * Mon Apr 4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-21
  2500. - update from CVS
  2501. - fix xdr_rmtcall_args on 64-bit arches (#151686)
  2502. - fix <pthread.h> and <bits/libc-lock.h> with -std=c89 -fexceptions (#153774)
  2503. * Mon Apr 4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-20
  2504. - move LinuxThreads libraries to /%%{_lib}/obsolete/linuxthreads/
  2505. and NPTL libraries to /%%{_lib}. To run a program against LinuxThreads,
  2506. LD_ASSUME_KERNEL=2.4.xx LD_LIBRARY_PATH=/%%{_lib}/obsolete/linuxthreads/
  2507. is now needed
  2508. - bzip2 ChangeLog* files instead of gzipping them
  2509. * Sat Apr 2 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-19
  2510. - update from CVS
  2511. - fix nextafterl and several other libm routines on ia64
  2512. - fix initgroups (BZ#661)
  2513. - kill nptl-devel subpackage, add linuxthreads-devel,
  2514. compile and link by default against NPTL and only with
  2515. -I/usr/include/linuxthreads -L/usr/%%{_lib}/linuxthreads
  2516. against LinuxThreads
  2517. - package /usr/lib/debug/%%{_lib}/tls/i{5,6}86 symlinks in
  2518. i386 glibc-debuginfo
  2519. - limit number of ChangeLog* files in glibc-common %%doc
  2520. to last 2.5 years of changes only to save space
  2521. * Fri Mar 25 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-18
  2522. - fix build on 64-bit arches with new GCC
  2523. * Thu Mar 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-17
  2524. - update from CVS
  2525. - fix LD_AUDIT in LinuxThreads ld.so
  2526. - fix calloc with M_PERTURB
  2527. - fix error handling in pthread_create with PTHREAD_EXPLICIT_SCHED
  2528. on ppc*/ia64/alpha/mips (BZ#801)
  2529. - fix a typo in WINDOWS-31J charmap (#151739)
  2530. - fix NIS ypprot_err (#151469)
  2531. * Sun Mar 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-16
  2532. - fix pread with -D_FILE_OFFSET_BITS=64 (#151573)
  2533. * Sat Mar 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-15
  2534. - update from CVS
  2535. - better fix for the dlclose bug (#145810, #150414)
  2536. - fix regex crash on case insensitive search in zh_CN locale
  2537. (#151215)
  2538. - fix malloc_trim (BZ#779)
  2539. - with -D_FORTIFY_SOURCE=*, avoid defining read and a bunch of others
  2540. as function-like macros, there are too many broken programs
  2541. out there
  2542. - add %%dir %%{_prefix}/%%{_lib}/gconv to glibc's file list (#151372)
  2543. * Sun Mar 6 2005 Roland McGrath <roland@redhat.com> 2.3.4-14
  2544. - fix bits/socket2.h macro typos
  2545. * Sat Mar 5 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-12
  2546. - fix tst-chk{2,3}
  2547. - fix up AS_NEEDED directive in /usr/%%{_lib}/libc.so
  2548. - BuildReq binutils >= 2.15.94.0.2-1 for AS_NEEDED, in
  2549. glibc-devel Conflict with binutils < 2.15.94.0.2-1
  2550. * Thu Mar 3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-11
  2551. - update from CVS
  2552. - fix execvp (#149290)
  2553. - fix dlclose (#145810)
  2554. - clear padding in gconv-modules.cache (#146614, BZ#776)
  2555. - rebuilt with GCC4
  2556. - changed __GLIBC_MINOR__ for now back to 3
  2557. - back out the newly added GLIBC_2.4 *_chk routines, instead
  2558. do the checking in macros
  2559. * Sat Feb 12 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-10
  2560. - hopefully fix interaction with prelink (#147655)
  2561. * Fri Feb 11 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-9
  2562. - update from CVS
  2563. - bi-arch <gnu/stubs.h> (BZ#715)
  2564. * Fri Feb 11 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-8
  2565. - update from CVS
  2566. - bi-arch <gnu/lib-names.h> (BZ#632)
  2567. - fix libdl on s390 and maybe other platforms
  2568. - fix initstate{,_r} (BZ#710)
  2569. - fix <gnu/stubs.h> generation (BZ#157)
  2570. - define CMSPAR in bits/termios.h (#147533)
  2571. * Tue Feb 8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-7
  2572. - update from CVS
  2573. - fix TLS handling in linuxthreads
  2574. * Tue Feb 8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-6
  2575. - update from CVS
  2576. - ld.so auditing
  2577. - fix segfault if chrooted app attempts to dlopen a library
  2578. and no standard library directory exists at all (#147067, #144303)
  2579. - fix initgroups when nscd is running, but has group caching disabled
  2580. (#146588)
  2581. - fix pthread_key_{create,destroy} in LinuxThreads when pthread_create
  2582. has not been called yet (#146710)
  2583. - fix ppc64 swapcontext and setcontext (#146736, BZ#700)
  2584. - service nscd cosmetic fixes (#146776)
  2585. - fix IA-32 and x86-64 stack alignment in DSO constructors (#145689)
  2586. - fix zdump -v segfaults on x86-64 (#146210)
  2587. - avoid calling sigaction (SIGPIPE, ...) inside syslog (#146021, IT#56686)
  2588. - fix errno values for futimes (BZ#633)
  2589. - unconditionally include <features.h> in malloc.h (BZ#650)
  2590. - change regex \B handling to match old GNU regex as well as perl/grep's dfa
  2591. (from empty string inside of word to empty string not at a word boundary,
  2592. BZ#693)
  2593. - slightly optimize i686 TLS accesses, use direct TLS %%gs access in sem_*
  2594. and allow building -mno-tls-direct-seg-refs glibc that is free of direct TLS
  2595. %%gs access with negative offsets
  2596. - fix addseverity
  2597. - fix fmemopen
  2598. - fix rewinddir
  2599. - increase svc{tcp,unix}_create listen backlog
  2600. * Thu Jan 6 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-5
  2601. - update from CVS
  2602. - add some warn_unused_result marking
  2603. - make ftruncate available even for just -D_POSIX_C_SOURCE=200112L
  2604. (BZ#640)
  2605. * Thu Jan 6 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-4
  2606. - update from CVS
  2607. - fix IA-32 stack alignment for LinuxThreads thread functions
  2608. and functions passed to clone(2) directly
  2609. - fix ecvt{,_r} on denormals (#143279)
  2610. - fix __tls_get_addr typo
  2611. - fix rounding in IA-64 alarm (#143710)
  2612. - don't reinitialize __environ in __libc_start_main, so that
  2613. effects of setenv/putenv done in DSO initializers are preserved
  2614. (#144037, IT#57403)
  2615. - fix fmemopen
  2616. - fix vDSO l_map_end and l_text_end values
  2617. - IA64 libm update (#142494)
  2618. - fix ppc rint/ceil etc. (BZ#602)
  2619. * Tue Dec 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-3
  2620. - rebuilt
  2621. * Mon Dec 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-2
  2622. - work around rpm bug some more, this time by copying
  2623. iconvconfig to iconvconfig.%%{_target_cpu}.
  2624. * Mon Dec 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-1
  2625. - update from CVS
  2626. - glibc 2.3.4 release
  2627. - add -o and --nostdlib options to iconvconfig
  2628. - if /sbin/ldconfig doesn't exist when running
  2629. glibc_post_upgrade.%%{_target_cpu}, just don't attempt to run it.
  2630. This can happen during first install of bi-arch glibc and the
  2631. other arch glibc's %%post wil run /sbin/ldconfig (#143326)
  2632. - use -o and --nostdlib options to create all needed
  2633. gconv-modules.cache files on bi-arch setups
  2634. * Sun Dec 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-99
  2635. - rebuilt
  2636. * Sat Dec 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-98
  2637. - add .%%{_target_cpu} to glibc_post_upgrade, only run telinit u
  2638. if /sbin/init is the same ELF class and machine as
  2639. glibc_post_upgrade.%%{_target_cpu} and similarly with
  2640. condrestarting sshd (#143046)
  2641. * Fri Dec 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-97
  2642. - update from CVS
  2643. - fix ppc64 getcontext and swapcontext (BZ#610)
  2644. - sparc/sparc64 fixes
  2645. * Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-96
  2646. - update from CVS
  2647. - fix i686 __USE_STRING_INLINES strncat
  2648. - make sure ppc/ppc64 maintain correct stack alignment
  2649. across clone
  2650. * Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-95
  2651. - export nis_domain_of_r from libnsl.so again which was
  2652. unintentionally lost
  2653. * Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-93
  2654. - update from CVS
  2655. - ppc/ppc64 clone without CLONE_THREAD getpid () adjustement
  2656. - fix MALLOC_CHECK_={1,2,3} for non-contiguous main arena
  2657. (BZ#457)
  2658. - fix sysconf (_POSIX_V6_*) for other ABI environments in
  2659. bi-arch setups
  2660. - s390/s390x clone without CLONE_THREAD getpid () adjustement
  2661. * Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-92
  2662. - update from CVS
  2663. - fix %%{_prefix}/libexec/getconf filenames generation
  2664. * Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-91
  2665. - update from CVS
  2666. - double buffer size in getXXbyYY or getXXent on ERANGE
  2667. instead of adding BUFLEN (#142617)
  2668. - avoid busy loop in malloc if another thread is doing fork
  2669. (#142214)
  2670. - some more realloc corruption checks
  2671. - fix getconf _POSIX_V6_WIDTH_RESTRICTED_ENVS output,
  2672. tweak %%{_prefix}/libexec/getconf/ filenames
  2673. * Fri Dec 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-90
  2674. - update from CVS
  2675. - regex speedups
  2676. - use | cat in ldd if running under bash3+ to allow running
  2677. it on binaries that are not through SELinux allowed to access
  2678. console or tty
  2679. - add __NR_waitid defines for alpha and ia64
  2680. * Wed Dec 8 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-89
  2681. - update from CVS
  2682. - fix clone2 on ia64
  2683. - avoid tst-timer5 failing with linuxthreads implementation
  2684. - if __libc_enable_secure, disallow mode != normal
  2685. - change ldd script to imply -r when -u is used, properly
  2686. propagate return value and handle suid binaries
  2687. * Tue Dec 7 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-88
  2688. - update from CVS
  2689. - disregard LD_SHOW_AUXV and LD_DYNAMIC_WEAK if __libc_enable_secure
  2690. - disregard LD_DEBUG if __libc_enable_secure in normal mode
  2691. if /suid-debug doesn't exist
  2692. - fix fseekpos after ungetc
  2693. - avoid reading bytes before start of buffers in regex's
  2694. check_dst_limits_calc_pos_1 (#142060)
  2695. - make getpid () working with clone/clone2 without CLONE_THREAD
  2696. (so far on i386/x86_64/ia64 only)
  2697. - move %%{_prefix}/libexec/getconf/* to glibc from glibc-common
  2698. - make %%{_prefix}/libexec/getconf directory owned by glibc package
  2699. * Fri Dec 3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-87
  2700. - update from CVS
  2701. - build libpthread_nonshared.a objects with -fPIC on s390/s390x
  2702. - fix mktime with < 0 or > 59 tm_sec on entry
  2703. - remove nonnull attribute for realpath
  2704. - add $(make-target-directory) for errlist-compat.c rule
  2705. (hopefully fix #141404)
  2706. - add testcase for ungetc bug
  2707. - define _POSIX_{,THREAD_}CPUTIME to 0 on all Linux arches
  2708. * Tue Nov 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-86
  2709. - update from CVS
  2710. - some posix_opt.h fixes
  2711. - fix strtold use of unitialized memory (#141000)
  2712. - some more bugfixes for bugs detected by valgrind
  2713. - rebuilt with GCC >= 3.4.3-5 to avoid packed stack layout
  2714. on s390{,x} (#139678)
  2715. * Fri Nov 26 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-85
  2716. - update from CVS
  2717. - support -v specification in getconf
  2718. - fix sysconf (_SC_LFS64_CFLAGS) etc.
  2719. - avoid thread stack aliasing issues on EM64T (#140803)
  2720. - move %%{_prefix}/include/nptl headers from nptl-devel
  2721. to glibc-headers, so that even NPTL specific programs
  2722. can be built bi-arch without problems
  2723. * Wed Nov 24 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-84
  2724. - update from CVS
  2725. - fix memory leak in getaddrinfo if using nscd (#139559)
  2726. - handle large lines in /etc/hosts and /etc/networks
  2727. (#140378)
  2728. - add nonnull attributes to selected dirent.h and dlfcn.h
  2729. functions
  2730. * Sun Nov 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-83
  2731. - update from CVS
  2732. - add deprecated and/or nonnull attribute to some signal.h
  2733. functions
  2734. - speed up tzset () by only using stat instead of open/fstat
  2735. when calling tzset for the second and following time if
  2736. /etc/localtime has not changed
  2737. - fix tgamma (BZ #552)
  2738. * Sat Nov 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-82
  2739. - update from CVS
  2740. - some malloc () checking
  2741. - libpthread.a object dependency cleanups (#115157)
  2742. - <bits/socket.h> fix for -std=c89 -pedantic-errors (#140132)
  2743. * Fri Nov 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-81
  2744. - don't use chunksize in <= 2 * SIZE_SZ free () checks
  2745. * Fri Nov 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-80
  2746. - update from CVS
  2747. - with -D_FORTIFY_SOURCE=2, prevent missing %%N$ formats
  2748. - for -D_FORTIFY_SOURCE=2 and %%n in writable format string,
  2749. issue special error message instead of using the buffer overflow
  2750. detected one
  2751. - speedup regex searching with REG_NOSUB, add RE_NO_SUB,
  2752. speedup searching with nested subexps (BZ #544)
  2753. - block SIGCANCEL in NPTL timer_* helper thread
  2754. - further free () checking
  2755. * Tue Nov 16 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-79
  2756. - update from CVS
  2757. - fix free () checking
  2758. - move /etc/default/nss into glibc-common (hopefully fix #132392)
  2759. * Mon Nov 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-78
  2760. - update from CVS
  2761. - fix LD_DEBUG=statistics
  2762. - issue error message before aborting in __chk_fail ()
  2763. - some more free () checking
  2764. * Fri Nov 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-77
  2765. - update from CVS
  2766. - speedup regex on palindromes (BZ #429)
  2767. - fix NPTL set{,e,re,res}[ug]id, so that even if making process
  2768. less priviledged all threads change their credentials successfully
  2769. * Wed Nov 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-76
  2770. - update from CVS
  2771. - fix regcomp crash (#138439)
  2772. - fix ftell{,o,o64} (#137885)
  2773. - robustification of nscd to cope with corrupt databases (#137140)
  2774. - fix NPTL with pthread_exit immediately after pthread_create (BZ #530)
  2775. - some regex optimizations
  2776. * Tue Nov 2 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-75
  2777. - update from CVS
  2778. - mktime cleanups (BZ #487, #473)
  2779. - unique comments in free(3) check error messages
  2780. - adjust some x86_64 headers for -m32 (#129712)
  2781. - object size checking support even with GCC-3.4.2-RH >= 3.4.2-8
  2782. * Wed Oct 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-74
  2783. - fix <netinet/udp.h> header
  2784. - fix globfree (#137176)
  2785. - fix exiting if there are dlmopened libraries in namespaces
  2786. other than main one not closed yet
  2787. - export again _res_opcodes and __p_{class,type}_syms from
  2788. libresolv.so that were lost in -69
  2789. * Thu Oct 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-73
  2790. - remove setaltroot and key{_add,_request,ctl} also from Versions
  2791. - back out _sys_errlist changes
  2792. * Thu Oct 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-72
  2793. - back out setaltroot and key{_add,_request,ctl} addition
  2794. - fix severe x86-64 symbol versioning regressions that breaks
  2795. e.g. java binaries
  2796. * Wed Oct 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-71
  2797. - update from CVS
  2798. - fix minor catchsegv temp file handling vulnerability
  2799. (CAN-2004-0968, #136319)
  2800. - add 4 new errno codes
  2801. - setaltroot, key{_add,_request,ctl} syscalls on some arches
  2802. - export _dl_debug_state@GLIBC_PRIVATE from ld.so again for
  2803. gdb purpose
  2804. - use inet_pton to decide what is address and what is hostname
  2805. in getent (#135422)
  2806. - change dladdr/dladdr1, so that dli_saddr is the same kind
  2807. of value as dlsym/dlvsym return (makes difference on ia64/hppa only)
  2808. - fix catchsegv script so that it works with both 32-bit and 64-bit
  2809. programs on multi-arch platforms
  2810. * Tue Oct 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-70
  2811. - update from CVS
  2812. - require newer selinux-policy (#135978)
  2813. - add %%dir for /var/run/nscd and /var/db/nscd and %%ghost
  2814. files in it
  2815. - conflict with gcc4 4.0.0-0.6 and earlier (needs __builtin_object_size)
  2816. * Mon Oct 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-69
  2817. - update from CVS
  2818. - object size checking support (-D_FORTIFY_SOURCE={1,2})
  2819. * Thu Oct 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-68
  2820. - update from CVS
  2821. - support for namespaces in the dynamic linker
  2822. - fix dlclose (BZ #77)
  2823. - libSegFault.so uses now backtrace() to work on IA-64, x86-64
  2824. and s390 (#130254)
  2825. * Tue Oct 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-67
  2826. - update from CVS
  2827. - use non-blocking sockets in resolver (#135234)
  2828. - reset pd->res options on thread exit, so that threads
  2829. reusing cached stacks get resolver state properly initialized
  2830. (BZ #434)
  2831. * Wed Oct 6 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-66
  2832. - update from CVS
  2833. - avoid using perl in the spec file, buildrequire sed >= 3.95
  2834. (#127671)
  2835. - export TIMEOUTFACTOR=16
  2836. - fix _JMPBUF_CFA_UNWINDS_ADJ on s390{,x}
  2837. * Tue Oct 5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-65
  2838. - update from CVS
  2839. - define _POSIX_THREAD_PROCESS_SHARED and _POSIX_CLOCK_SELECTION
  2840. to -1 in LinuxThreads
  2841. - define _POSIX_CPUTIME and _POSIX_THREAD_CPUTIME to 0
  2842. on i?86/ia64 and make sure sysconf (_SC_{,THREAD_}CPUTIME)
  2843. returns correct value
  2844. - if _POSIX_CLOCK_SELECTION == -1 in nscd, still try
  2845. sysconf (_SC_CLOCK_SELECTION) and if it returns true,
  2846. dlopen libpthread.so and dlsym pthread_condattr_setclock
  2847. - build nscd with -z relro and -z now
  2848. * Mon Oct 4 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-64
  2849. - update from CVS
  2850. - stop using __builtin_expect in assert and assert_perror
  2851. (#127606)
  2852. - try to avoid too much VA fragmentation with malloc
  2853. on flexmap layout (#118574)
  2854. - nscd robustification
  2855. - change valloc to use debugging hooks (#134385)
  2856. - make glibc_post_upgrade more verbose on errors (Fergal Daly,
  2857. #125700)
  2858. * Fri Oct 1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-63
  2859. - update from CVS
  2860. - fix __nscd_getgrouplist
  2861. - fix a typo in x86_64 pthread_mutex_timedwait fix
  2862. * Fri Oct 1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-62
  2863. - update from CVS
  2864. - fix NPTL pthread_mutex_timedwait on i386/x86_64 (BZ #417)
  2865. * Thu Sep 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-61
  2866. - update from CVS
  2867. - some nscd fixes (#134193)
  2868. - cache initgroups in nscd (#132850)
  2869. - reread /etc/localtime in tzset () even if just mtime changed
  2870. (#133481)
  2871. - fix glob (#126460)
  2872. - another get_myaddress fix
  2873. * Wed Sep 29 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-60
  2874. - update from CVS
  2875. - fix get_myaddress (#133982)
  2876. - remove nonnull attribute from second utime argument (#133866)
  2877. - handle SIGSETXID the same way as SIGCANCEL in
  2878. sigaction/pthread_kill/sigwait/sigwaitinfo etc.
  2879. - add __extension__ to long long types in NPTL <bits/pthreadtypes.h>
  2880. * Mon Sep 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-59
  2881. - update from CVS
  2882. - fix BZ #151, #362, #381, #407
  2883. - fdim fix for +inf/+inf (BZ #376)
  2884. * Sun Sep 26 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-58
  2885. - update from CVS
  2886. - vasprintf fix (BZ #346)
  2887. - gettext locking (BZ #322)
  2888. - change linuxthreads useldt.h inclusion login again, the last
  2889. one failed all linuxthreads FLOATING_STACKS tests
  2890. * Sat Sep 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-57
  2891. - update from CVS
  2892. - fix setuid in LD_ASSUME_KERNEL=2.2.5 libc (#133558)
  2893. - fix nis locking (#132204)
  2894. - RTLD_DEEPBIND support
  2895. - fix pthread_create bugs (BZ #401, #405)
  2896. * Wed Sep 22 2004 Roland McGrath <roland@redhat.com> 2.3.3-56
  2897. - migrated CVS to fedora-branch in sources.redhat.com glibc repository
  2898. - source tarballs renamed
  2899. - redhat/ moved to fedora/, some old cruft removed
  2900. - update from trunk
  2901. - some __nonnull annotations
  2902. * Wed Sep 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-55
  2903. - update from CVS
  2904. - set{re,e,res}[ug]id now affect the whole process in NPTL
  2905. - return EAGAIN instead of ENOMEM when not enough memory
  2906. in pthread_create
  2907. * Fri Sep 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-54
  2908. - update from CVS
  2909. - nscd getaddrinfo caching
  2910. * Tue Sep 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-53
  2911. - restore temporarily old definition of __P()/__PMT()
  2912. for third party apps
  2913. * Tue Sep 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-52
  2914. - update from CVS
  2915. - nscd bi-arch fix
  2916. - remove all uses of __P()/__PMT() from glibc headers
  2917. - update and reenable nscd SELinux patch
  2918. - remove libnss1* and libnss*.so.1 compatibility NSS modules
  2919. on IA-32, SPARC and Alpha
  2920. * Fri Sep 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-51
  2921. - update from CVS
  2922. - disable one of the malloc double free checks for non-contiguous
  2923. arenas where it doesn't have to be true even for non-broken
  2924. apps
  2925. * Thu Sep 9 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-50
  2926. - update from CVS
  2927. - pwd/grp/host loops with nscd speed up by sharing the
  2928. nscd cache r/o with applications
  2929. - inexpensive double free check in free(3)
  2930. - make NPTL pthread.h initializers usable even from C++
  2931. (BZ #375)
  2932. - use atomic instructions even in i386 nscd on i486+ CPUs
  2933. (conditionally)
  2934. * Fri Sep 3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-49
  2935. - update from CVS
  2936. - fix linuxthreads tst-cancel{[45],-static}
  2937. * Fri Sep 3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-48
  2938. - update from CVS
  2939. - fix pthread_cond_destroy (BZ #342)
  2940. - fix fnmatch without FNM_NOESCAPE (BZ #361)
  2941. - fix ppc32 setcontext (BZ #357)
  2942. - add NPTL support for i386 glibc (only if run on i486 or higher CPU)
  2943. - add __NR_waitid defines for i386, x86_64 and sparc*
  2944. * Tue Aug 31 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-47
  2945. - update from CVS
  2946. - persistent nscd caching
  2947. - ppc64 32-bit atomicity fix
  2948. - fix x86-64 nptl-devel headers for -m32 compilation
  2949. - %%ghost /etc/ld.so.cache (#130597)
  2950. - edit /etc/ld.so.conf in glibc_post_upgrade if
  2951. include ld.so.conf.d/*.conf line is missing (#120588)
  2952. - ugly hacks for the IA-64 /emul braindamage (#124996, #128267)
  2953. * Sat Aug 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-46
  2954. - update from CVS
  2955. * Thu Aug 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-45
  2956. - update from CVS
  2957. - fix nss_compat's initgroups handling (#130363)
  2958. - fix getaddrinfo ai_canonname setting
  2959. * Thu Aug 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-44
  2960. - update from CVS
  2961. - add ip6-dotint resolv.conf option, make
  2962. no-ip6-dotint the default
  2963. - BuildPrereq libselinux-devel (#129946)
  2964. - on ppc64, build without dot symbols
  2965. * Thu Aug 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-43
  2966. - update from CVS
  2967. - remove debugging printout (#129747)
  2968. - make <sys/shm.h> usable in C++ (IT#45148)
  2969. - update RLIMIT_* constants in <bits/resource.h>, make
  2970. <sys/resource.h> POSIX compliant (#129740)
  2971. * Wed Aug 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-42
  2972. - fix last tzset () fixes, disable rereading of /etc/localtime
  2973. every time for now
  2974. - really enable SELinux support for NSCD
  2975. * Wed Aug 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-41
  2976. - update from CVS
  2977. - fread_unlocked/fwrite_unlocked macro fixes (BZ #309, #316)
  2978. - tzset () fixes (BZ #154)
  2979. - speed up pthread_rwlock_unlock on arches other than i386 and
  2980. x86_64 (#129455)
  2981. - fix compilation with -ansi (resp. -std=c89 or -std=c99) and
  2982. -D_XOPEN_SOURCE=[56]00 but no -D_POSIX_SOURCE* or -D_POSIX_C_SOURCE*
  2983. (BZ #284)
  2984. - add SELinux support for NSCD
  2985. * Fri Aug 6 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-40
  2986. - update from CVS
  2987. - change res_init to force all threads to re-initialize
  2988. resolver before they use it next time (#125712)
  2989. - various getaddrinfo and related fixes (BZ #295, #296)
  2990. - fix IBM{932,943} iconv modules (#128674)
  2991. - some nscd fixes (e.g. BZ #292)
  2992. - RFC 3678 support (Multicast Source Filters)
  2993. - handle /lib/i686/librtkaio-* in i386 glibc_post_upgrade
  2994. the same as /lib/i686/librt-*
  2995. * Fri Jul 23 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-39
  2996. - update from CVS
  2997. - conformance related changes in headers
  2998. - remove -finline-limit=2000 for GCC 3.4.x+
  2999. * Thu Jul 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-38
  3000. - update from CVS
  3001. - fix res_init leaks
  3002. - fix newlocale races
  3003. - fix ppc64 setjmp
  3004. - fix strtold (BZ #274)
  3005. * Fri Jul 16 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-37
  3006. - update from CVS
  3007. - allow pthread_cancel in DSO destructors run at exit time
  3008. - fix pow{f,,l} on IA-32 and powl on x86-64
  3009. - allow PIEs on IA-32 to have main in a shared library they depend on
  3010. * Mon Jul 5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-36
  3011. - s390* .plt slot reduction
  3012. - fix pthread_rwlock_timedrdlock on x86_64
  3013. * Wed Jun 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-35
  3014. - tweak spec file for the libpthread-0.61.so -> libpthread-2.3.3.so
  3015. NPTL changes
  3016. * Wed Jun 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-34
  3017. - update from CVS
  3018. - if_nameindex using preferably netlink
  3019. - printf_parsemb initialization fix
  3020. - NPTL version is now the same as glibc version
  3021. * Mon Jun 28 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-33
  3022. - update from CVS
  3023. - reread resolv.conf for nscd --invalidate=hosts
  3024. - fix F_GETLK/F_SETLK/F_SETLKW constants on x86_64 for
  3025. -m32 -D_FILE_OFFSET_BITS=64 compilations
  3026. - avoid calling non-existing fcntl64 syscall on ppc64
  3027. * Mon Jun 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-32
  3028. - update from CVS
  3029. - FUTEX_CMP_REQUEUE support (fix pthread_cond_* deadlocks)
  3030. - fix backtrace in statically linked programs
  3031. - rebuilt with GCC 3.4, adjusted ulps and i386 <bits/string.h>
  3032. * Fri May 28 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-31
  3033. - update from CVS
  3034. - <bits/string2.h> and <bits/mathinline.h> changes for GCC 3.{2,4,5}+
  3035. - make c_stubs buildable even with GCC 3.2.x (#123042)
  3036. * Fri May 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-30
  3037. - fix pthread_cond_wait on architectures other than IA-32 and
  3038. x86_64
  3039. * Thu May 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-29
  3040. - use lib64 instead of lib on ia64 if %%{_lib} is defined to lib64
  3041. * Wed May 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-28
  3042. - update from CVS
  3043. - FUTEX_REQUEUE fixes (#115349)
  3044. - SPARC GCC 3.4 build fix
  3045. - fix handling of undefined TLS symbols on IA32 (RELA only),
  3046. SPARC and SH
  3047. - regex translate fix
  3048. - speed up sprintf
  3049. - x86_64 makecontext alignment fix
  3050. - make POSIX sigpause the default sigpause, unless BSD sigpause
  3051. requested
  3052. * Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
  3053. - remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade
  3054. on x86-64, s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
  3055. - build mq_{send,receive} with -fexceptions
  3056. * Fri May 7 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
  3057. - update from CVS
  3058. - fix <tgmath.h>
  3059. - fix memory leaks in nis, getifaddrs, etc. caused by incorrect
  3060. use of realloc
  3061. - remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade
  3062. and rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
  3063. might be a stale symlink
  3064. * Wed May 5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
  3065. - update from CVS
  3066. - disable FUTEX_REQUEUE (work around #115349)
  3067. - mq for sparc/sparc64/ia64
  3068. * Tue May 4 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
  3069. - update from CVS
  3070. - define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK
  3071. plus F_[SG]ETOWN also in -D_XOPEN_SOURCE=500 (both
  3072. included already in XNS5)
  3073. - reorder dlopen checks, so that dlopening ET_REL objects
  3074. complains about != ET_DYN != ET_EXEC, not about phentsize
  3075. (#121606)
  3076. - fix strpbrk macro for GCC 3.4+ (BZ #130)
  3077. - fix <sys/sysctl.h> (BZ #140)
  3078. - sched_[gs]etaffinity documentation fix (BZ #131)
  3079. - fix sparc64 build (BZ #139)
  3080. - change linuxthreads back to use non-cancellable writes
  3081. to manager pipes etc.
  3082. - fix sem_timedwait return value in linuxthreads (BZ #133)
  3083. - ia64 unnecessary PLT relocs removal
  3084. * Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
  3085. - update from CVS
  3086. - fix *scanf
  3087. - fix shm_unlink, sem_unlink and mq_unlink errno values
  3088. - avoid memory leaks in error
  3089. - execstack fixes on s390
  3090. * Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
  3091. - update from CVS
  3092. - mq and timer fixes
  3093. - rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically
  3094. linked binaries
  3095. - fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
  3096. * Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
  3097. - disable rtkaio
  3098. - update from CVS
  3099. - POSIX message passing support
  3100. - fixed SIGEV_THREAD support for POSIX timers
  3101. - fix free on non-malloced memory in syslog
  3102. - fix ffsl on some 64-bit arches
  3103. - fix sched_setaffinity on x86-64, ia64
  3104. - fix ppc64 umount
  3105. - NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
  3106. - various NIS speedups
  3107. - fix fwrite with > 2GB sizes on 64-bit arches
  3108. - fix pthread_getattr_np guardsize reporting in NPTL
  3109. - report PLT relocations in ld.so and libc.so during the build
  3110. * Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
  3111. - update from CVS
  3112. - change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
  3113. - strtol speed optimization
  3114. - don't try to use certainly unimplemented syscalls on ppc64
  3115. - kill -debug subpackage, move the libs to glibc-debuginfo{,-common}
  3116. into /usr/lib/debug/usr/%%{_lib}/ directory
  3117. - fix c_stubs with gcc 3.4
  3118. - move all the up to 3 builds into %%build scriptlet and
  3119. leave only installation in the %%install scriptlet
  3120. * Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
  3121. - update from CVS
  3122. - affinity API changes
  3123. * Thu Mar 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-18
  3124. - update from CVS
  3125. - fix ia64 iopl (#118591)
  3126. - add support for /etc/ld.so.conf.d/*.conf
  3127. - fix x86-64 LD_DEBUG=statistics
  3128. - fix hwcap handling when using ld.so.cache (#118518)
  3129. * Mon Mar 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-17
  3130. - update from CVS
  3131. - implement non-_l function on top of _l functions
  3132. * Thu Mar 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-16
  3133. - update from CVS
  3134. - fix s390{,x} TLS handling
  3135. * Wed Mar 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-15
  3136. - update from CVS
  3137. - special section for compatibility code
  3138. - make getpid () work even in vfork () child
  3139. - configure with --enable-bind-now to avoid lazy binding in ld.so
  3140. and libc.so
  3141. * Fri Mar 5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-14
  3142. - update from CVS
  3143. - fix iconv -c (#117021)
  3144. - fix PIEs on sparc/sparc64
  3145. - fix posix_fadvise on 64-bit architectures
  3146. - add locale-archive as %%ghost file (#117014)
  3147. * Mon Mar 1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-13
  3148. - update from CVS
  3149. * Fri Feb 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-12
  3150. - update from CVS
  3151. * Fri Feb 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-11
  3152. - update from CVS
  3153. - fix ld.so when vDSO is randomized
  3154. * Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-10
  3155. - update from CVS
  3156. * Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-9
  3157. - update from CVS
  3158. * Tue Feb 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-8
  3159. - update from CVS
  3160. * Tue Jan 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-7
  3161. - update from CVS
  3162. - dl_iterate_phdr extension to signal number of added/removed
  3163. libraries
  3164. - fix PT_GNU_RELRO support on ppc* with prelinking
  3165. * Fri Jan 23 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-6
  3166. - rebuilt with fixed GCC on IA-64
  3167. * Thu Jan 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-5
  3168. - fix PT_GNU_RELRO support
  3169. * Wed Jan 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-4
  3170. - update from CVS
  3171. - some further regex speedups
  3172. - fix re.translate handling in regex (#112869)
  3173. - change regfree to match old regex behaviour (what is freed
  3174. and clearing of freed pointers)
  3175. - fix accesses to unitialized memory in regex (#113507, #113425,
  3176. #113421)
  3177. - PT_GNU_RELRO support
  3178. * Tue Dec 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-3
  3179. - update from CVS
  3180. - fix pmap_set fd and memory leak (#112726)
  3181. - fix backreference handling in regex
  3182. - rebuilt under glibc without the above bug to fix
  3183. libc.so linker script (#112738)
  3184. * Mon Dec 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-2
  3185. - update from CVS
  3186. - faster getpid () in NPTL builds
  3187. - fix to make pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, )
  3188. really disable cancellation (#112512)
  3189. - more regex fixes and speedups
  3190. - fix nextafter*/nexttoward*
  3191. - handle 6th syscall(3) argument on AMD64
  3192. - handle memalign/posix_memalign in mtrace
  3193. - fix linuxthreads memory leak (#112208)
  3194. - remove throw () from cancellation points in linuxthreads (#112602)
  3195. - fix NPTL unregister_atfork
  3196. - fix unwinding through alternate signal stacks
  3197. * Mon Dec 1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-1
  3198. - update from CVS
  3199. - 2.3.3 release
  3200. - lots of regex fixes and speedups (#110401)
  3201. - fix atan2
  3202. - fix pshared condvars in NPTL
  3203. - fix pthread_attr_destroy for attributes created with
  3204. pthread_attr_init@GLIBC_2.0
  3205. - for the time being, include both nb_NO* and no_NO* as locales
  3206. so that the distribution can catch up with the no_NO->nb_NO
  3207. transition
  3208. - add BuildPrereq texinfo (#110252)
  3209. * Tue Nov 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-102
  3210. - update from CVS
  3211. - fix getifaddrs (CAN-2003-0859)
  3212. - fix ftw fd leak
  3213. - fix linuxthreads sigaction (#108634)
  3214. - fix glibc 2.0 stdio compatibility
  3215. - fix uselocale (LC_GLOBAL_LOCALE)
  3216. - speed up stdio locking in non-threaded programs on IA-32
  3217. - try to maintain correct order of cleanups between those
  3218. registered with __attribute__((cleanup))
  3219. and with LinuxThreads style pthread_cleanup_push/pop (#108631)
  3220. - fix segfault in regex (#109606)
  3221. - fix RE_ICASE multi-byte handling in regex
  3222. - fix pthread_exit in libpthread.a (#109790)
  3223. - FTW_ACTIONRETVAL support
  3224. - lots of regex fixes and speedups
  3225. - fix ceill/floorl on AMD64
  3226. * Mon Oct 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-101
  3227. - update from CVS
  3228. - fix ld.so --verify (and ldd)
  3229. * Mon Oct 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-100
  3230. - update from CVS
  3231. - fix sprof (#103727)
  3232. - avoid infinite loops in {,f}statvfs{,64} with hosed mounts file
  3233. - prevent dlopening of executables
  3234. - fix glob with GLOB_BRACE and without GLOB_NOESCAPE
  3235. - fix locale printing of word values on 64-bit big-endian arches
  3236. (#107846)
  3237. - fix getnameinfo and getaddrinfo with reverse IPv6 lookups
  3238. (#101261)
  3239. * Wed Oct 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-99
  3240. - update from CVS
  3241. - dl_iterate_phdr in libc.a on arches other than IA-64
  3242. - LD_DEBUG=statistics prints number of relative relocations
  3243. - fix hwcap computation
  3244. - NPTL is now part of upstream glibc CVS
  3245. - include {st,xh,zu}_ZA{,.UTF-8} locales
  3246. * Sat Oct 4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-98
  3247. - update from CVS
  3248. - fix close, pause and fsync (#105348)
  3249. - fix pthread_once on IA-32
  3250. - implement backtrace () on IA-64, handle -fomit-frame-pointer
  3251. in AMD64 backtrace () (#90402)
  3252. * Tue Sep 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-97
  3253. - update from CVS
  3254. - fix <sys/sysmacros.h> with C++ or -ansi or -pedantic C
  3255. - fix mknod/ustat return value when given bogus device number (#105768)
  3256. * Fri Sep 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-96
  3257. - rebuilt
  3258. * Fri Sep 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-95
  3259. - fix IA-64 getcontext
  3260. * Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-94
  3261. - update from CVS
  3262. - fix syslog with non-C non-en_* locales (#61296, #104979)
  3263. - filter GLIBC_PRIVATE symbols from glibc provides
  3264. - fix NIS+
  3265. * Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-93
  3266. - update from CVS
  3267. - assume 2.4.21 kernel features on RHEL/ppc*, so that
  3268. {make,set,get,swap}context works
  3269. - backout execstack support for RHEL
  3270. - build rtkaio on amd64 too
  3271. * Wed Sep 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-92
  3272. - update from CVS
  3273. - execstack/noexecstack support
  3274. - build nscd as PIE
  3275. - move __libc_stack_end back to @GLIBC_2.1
  3276. - build against elfutils >= 0.86 to fix stripping on s390x
  3277. * Mon Sep 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-91
  3278. - rebuilt
  3279. * Mon Sep 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-90
  3280. - update from CVS
  3281. - NPTL locking change (#102682)
  3282. - don't jump around lock on amd64
  3283. * Thu Sep 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-89
  3284. - fix open_memstream/syslog (#104661)
  3285. * Thu Sep 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-88
  3286. - update from CVS
  3287. - retrieve affinity in pthread_getattr_np
  3288. - fix pthread_attr_[gs]etaffinity_np
  3289. - handle hex and octal in wordexp
  3290. * Wed Sep 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-87
  3291. - update from CVS
  3292. - truncate instead of round in utimes when utimes syscall is not available
  3293. - don't align stack in every glibc function unnecessarily on IA-32
  3294. - make sure threads have their stack 16 byte aligned on IA-32
  3295. - move sched_[sg]etaffinity to GLIBC_2.3.3 symbol version (#103231)
  3296. - fix pthread_getattr_np for the initial thread (#102683)
  3297. - avoid linuxthreads signal race (#104368)
  3298. - ensure all gzip invocations are done with -n option
  3299. * Fri Sep 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-86
  3300. - update from CVS
  3301. - avoid linking in libgcc_eh.a unnecessarily
  3302. - change ssize_t back to long int on s390 -m31, unless
  3303. gcc 2.95.x is used
  3304. * Wed Sep 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-85
  3305. - update from CVS
  3306. - fix IA-64 memccpy (#104114)
  3307. * Tue Sep 9 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-84
  3308. - update from CVS
  3309. - undo broken amd64 signal context changes
  3310. * Tue Sep 9 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-83
  3311. - update from CVS
  3312. - change *nlink_t, *ssize_t and *intptr_t types on s390 -m31 to
  3313. {unsigned,} int
  3314. - change *u_quad_t, *quad_t, *qaddr_t, *dev_t, *ino64_t, *loff_t,
  3315. *off64_t, *rlim64_t, *blkcnt64_t, *fsblkcnt64_t, *fsfilcnt64_t
  3316. on 64-bit arches from {unsigned,} long long int {,*} to
  3317. {unsigned,} long int {,*} to restore binary compatibility
  3318. for C++ functions using these types as arguments
  3319. * Sun Sep 7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-82
  3320. - rebuilt
  3321. * Sat Sep 6 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-81
  3322. - update from CVS
  3323. - fix tc[gs]etattr/cf[gs]et[io]speed on ppc (#102732)
  3324. - libio fixes
  3325. * Thu Sep 4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-80
  3326. - update from CVS
  3327. - fix IA-64 cancellation when mixing __attribute__((cleanup ()))
  3328. and old-style pthread_cleanup_push cleanups
  3329. * Tue Sep 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-79
  3330. - updated from CVS
  3331. - lots of cancellation fixes
  3332. - fix posix_fadvise* on ppc32
  3333. - TLS layout fix
  3334. - optimize stdio cleanups (#103354)
  3335. - sparcv9 NPTL
  3336. - include sigset, sighold, sigrelse, sigpause and sigignore prototypes
  3337. in signal.h even if -D_XOPEN_SOURCE_EXTENDED (#103269)
  3338. - fix svc_getreqset on 64-bit big-endian arches
  3339. - return ENOSYS in linuxthreads pthread_barrierattr_setpshared for
  3340. PTHREAD_PROCESS_SHARED
  3341. - add pthread_cond_timedwait stubs to libc.so (#102709)
  3342. - split glibc-devel into glibc-devel and glibc-headers to ensure
  3343. amd64 /usr/include always wins on amd64/i386 bi-arch installs
  3344. - increase PTHREAD_STACK_MIN on alpha, ia64 and sparc*
  3345. - get rid of __syscall_* prototypes and stubs in sysdeps/unix/sysv/linux
  3346. - run make check also with linuxthreads (on IA-32 non-FLOATING_STACKS)
  3347. ld.so and NPTL (on IA-32 also FLOATING_STACKS linuxthreads) libraries
  3348. and tests
  3349. * Mon Aug 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-78
  3350. - include dl-osinfo.h only in glibc-debuginfo-2*.rpm, not
  3351. in glibc-debuginfo-common*
  3352. * Mon Aug 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-77
  3353. - update from CVS
  3354. - fix glibc 2.0 libio compatibility (#101385)
  3355. - fix ldconfig with /usr/lib/lib*.so symlinks (#102853)
  3356. - fix assert.h (#102916, #103017)
  3357. - make ld.so.cache identical between IA-32 and AMD64 (#102887)
  3358. - fix static linking of large IA-64 binaries (#102586)
  3359. - avoid using floating point regs in lazy binding code on ppc64 (#102763)
  3360. * Fri Aug 22 2003 Roland McGrath <roland@redhat.com> 2.3.2-76
  3361. - add td_thr_tls_get_addr changes missed in initial nptl_db rewrite
  3362. * Sun Aug 17 2003 Roland McGrath <roland@redhat.com> 2.3.2-74
  3363. - nptl_db rewrite not yet in CVS
  3364. * Thu Aug 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-72
  3365. - update from CVS
  3366. - fix rtkaio aio_fsync{,64}
  3367. - update rtkaio for !BROKEN_THREAD_SIGNALS
  3368. - fix assert macro when used on pointers
  3369. * Wed Aug 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-71
  3370. - update from CVS
  3371. * Tue Aug 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-70
  3372. - update from CVS
  3373. - disable CLONE_STOPPED for now until it is resolved
  3374. - strip crt files
  3375. - fix libio on arches with no < GLIBC_2.2 support (#102102, #102105)
  3376. - fix glibc-debuginfo to include all nptl and nptl_db sources
  3377. * Thu Aug 7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-69
  3378. - update from CVS
  3379. - fix pthread_create@GLIBC_2.0 (#101767)
  3380. - __ASSUME_CLONE_STOPPED on all arches but s390* in RHEL
  3381. * Sun Aug 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-68
  3382. - update from CVS
  3383. - only use CLONE_STOPPED if kernel supports it, fix setting of thread
  3384. explicit scheduling (#101457)
  3385. * Fri Aug 1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-67
  3386. - update from CVS
  3387. - fix utimes and futimes if kernel doesn't support utimes syscall
  3388. - fix s390 ssize_t type
  3389. - fix dlerror when called before any dlopen/dlsym
  3390. - update IA-64 bits/sigcontext.h (#101344)
  3391. - various warning fixes
  3392. - fix pthread.h comment typos (#101363)
  3393. * Wed Jul 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-66
  3394. - update from CVS
  3395. - fix dlopen of libraries using TLS IE/LE models
  3396. * Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-65
  3397. - update from CVS
  3398. - fix timer_create
  3399. - use __extension__ before long long typedefs in <bits/types.h> (#100718)
  3400. * Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-64
  3401. - update from CVS
  3402. - fix wcpncpy (#99462)
  3403. - export _res@GLIBC_2.0 even from NPTL libc.so (__res_state ()
  3404. unlike __errno_location () or __h_errno_location () was introduced
  3405. in glibc 2.2)
  3406. - fix zic bug on 64-bit platforms
  3407. - some TLS handling fixes
  3408. - make ldconfig look into alternate ABI dirs by default (#99402)
  3409. - move %%{_datadir}/zoneinfo to tzdata package, so that it can be
  3410. errataed separately from glibc
  3411. - new add-on - rtkaio
  3412. - prereq libgcc, as glibc now relies on libgcc_s.so.1 for pthread_cancel
  3413. * Tue Jul 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-63
  3414. - fix thread cancellation on ppc64
  3415. * Sat Jul 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-62
  3416. - update from CVS
  3417. - fix thread cancellation on ppc32, s390 and s390x
  3418. * Thu Jul 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-61
  3419. - update from CVS
  3420. - build libc_nonshared.a with -fPIC instead of -fpic
  3421. - fix ppc64 PIE support
  3422. - add cfi directives to NPTL sysdep-cancel.h on ppc/ppc64/s390/s390x
  3423. * Tue Jul 8 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-60
  3424. - update from CVS
  3425. * Thu Jul 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-59
  3426. - update from CVS
  3427. - on IA-64 use different symbols for cancellation portion of syscall
  3428. handlers to make gdb happier
  3429. * Thu Jun 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-58
  3430. - update from CVS
  3431. - nss_compat supporting LDAP etc.
  3432. * Tue Jun 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-57
  3433. - update from CVS
  3434. * Thu Jun 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-56
  3435. - fix condvars and semaphores in ppc* NPTL
  3436. - fix test-skeleton.c reporting of timed-out tests (#91269)
  3437. - increase timeouts for tests during make check
  3438. * Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-55
  3439. - make ldconfig default to both /lib+/usr/lib and /lib64+/usr/lib64
  3440. on bi-ABI architectures (#97557)
  3441. - disable FUTEX_REQUEUE on ppc* temporarily
  3442. * Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-54
  3443. - update from CVS
  3444. - fix glibc_post_upgrade on ppc
  3445. * Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-53
  3446. - update from CVS
  3447. - fix localedef (#90659)
  3448. - tweak linuxthreads for librt cancellation
  3449. * Mon Jun 16 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-52
  3450. - update from CVS
  3451. * Thu Jun 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-51
  3452. - update from CVS
  3453. - fix <gnu/stubs.h> (#97169)
  3454. * Wed Jun 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-50
  3455. - update from CVS
  3456. * Tue Jun 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-49
  3457. - update from CVS
  3458. - fix pthread_cond_signal on IA-32 (#92080, #92253)
  3459. - fix setegid (#91567)
  3460. - don't prelink -R libc.so on any architecture, it prohibits
  3461. address randomization
  3462. * Thu Jun 5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-48
  3463. - update from CVS
  3464. - fix IA-64 NPTL build
  3465. * Thu Jun 5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-47
  3466. - update from CVS
  3467. - PT_GNU_STACK segment in binaries/executables and .note.GNU-stack
  3468. section in *.[oa]
  3469. * Sun Jun 1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-46
  3470. - update from CVS
  3471. - enable NPTL on AMD64
  3472. - avoid using trampolines in localedef
  3473. * Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-45
  3474. - enable NPTL on IA-64
  3475. * Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-44
  3476. - update from CVS
  3477. - enable NPTL on s390 and s390x
  3478. - make __init_array_start etc. symbols in elf-init.oS hidden undefined
  3479. * Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-43
  3480. - update from CVS
  3481. * Fri May 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-42
  3482. - update from CVS
  3483. * Tue May 20 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-41
  3484. - update from CVS
  3485. - use NPTL libs if uname -r contains nptl substring or is >= 2.5.69
  3486. or set_tid_address syscall is available instead of checking
  3487. AT_SYSINFO dynamic tag
  3488. * Thu May 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-40
  3489. - update from CVS
  3490. * Wed May 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-39
  3491. - update from CVS
  3492. - fix for prelinking of libraries with no dependencies
  3493. * Tue May 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-38
  3494. - update from CVS
  3495. - enable NPTL on ppc and ppc64
  3496. * Tue May 6 2003 Matt Wilson <msw@redhat.com> 2.3.2-37
  3497. - rebuild
  3498. * Sun May 4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-36
  3499. - update from CVS
  3500. * Sat May 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-35
  3501. - update from CVS
  3502. - make -jN build fixes
  3503. * Fri May 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-34
  3504. - update from CVS
  3505. - avoid using trampolines in iconvconfig for now
  3506. * Sat Apr 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-33
  3507. - update from CVS
  3508. * Fri Apr 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-32
  3509. - update from CVS
  3510. - more ppc TLS fixes
  3511. * Wed Apr 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-31
  3512. - update from CVS
  3513. - nscd fixes
  3514. - fix Bahrain spelling (#56298)
  3515. - fix Ukrainian collation (#83973)
  3516. - accept trailing spaces in /etc/ld.so.conf (#86032)
  3517. - perror fix (#85994)
  3518. - fix localedef (#88978)
  3519. - fix getifaddrs (#89026)
  3520. - fix strxfrm (#88409)
  3521. - fix ppc TLS
  3522. - fix getaddrinfo (#89448)
  3523. - don't print warning about errno, h_errno or _res if
  3524. LD_ASSUME_KERNEL=2.4.1 or earlier
  3525. * Tue Apr 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-30
  3526. - update from CVS
  3527. - fix prelink on ppc32
  3528. - add TLS support on ppc32 and ppc64
  3529. - make sure on -m64 arches all helper binaries are built with this
  3530. option
  3531. * Mon Apr 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-29
  3532. - update from CVS
  3533. - fix strxfrm (#88409)
  3534. - use -m64 -mno-minimal-toc on ppc64
  3535. - conflict with kernels < 2.4.20 on ppc64 and < 2.4.0 on x86_64
  3536. - link glibc_post_upgrade against newly built libc.a
  3537. * Sun Apr 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-28
  3538. - update from CVS
  3539. - fix NPTL pthread_detach and already terminated, but not yet
  3540. joined thread (#88219)
  3541. - fix bug-regex4 testcase (#88118)
  3542. - reenable prelink support broken in 2.3.2-13
  3543. - fix register_printf_function (#88052)
  3544. - fix double free with fopen using ccs= (#88056)
  3545. - fix potential access below $esp in {set,swap}context (#88093)
  3546. - fix buffer underrun in gencat -H (#88099)
  3547. - avoid using unitialized variable in tst-tgmath (#88101)
  3548. - fix gammal (#88104)
  3549. - fix iconv -c
  3550. - fix xdr_string (PR libc/4999)
  3551. - fix /usr/lib/nptl/librt.so symlink
  3552. - avoid running NPTL cleanups twice in some cases
  3553. - unblock __pthread_signal_cancel in linuxthreads, so that
  3554. linuxthreads threaded programs work correctly if spawned
  3555. from NPTL threaded programs
  3556. - fix sysconf _SC_{NPROCESSORS_{CONF,ONLN},{,AV}PHYS_PAGES}
  3557. - remove /lib/i686 directory before running ldconfig in glibc post
  3558. during i686 -> i386 glibc "upgrades" (#88456)
  3559. * Wed Apr 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-22
  3560. - update from CVS
  3561. - add pthread_atfork to libpthread.a
  3562. * Tue Apr 1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-21
  3563. - update from CVS
  3564. - make sure linuxthreads pthread_mutex_lock etc. is not a cancellation
  3565. point
  3566. * Sat Mar 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-20
  3567. - update from CVS
  3568. - if kernel >= 2.4.1 doesn't support NPTL, fall back to
  3569. /lib/i686 libs on i686, not stright to /lib
  3570. * Fri Mar 28 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-19
  3571. - update from CVS
  3572. - timers fixes
  3573. * Thu Mar 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-18
  3574. - update from CVS
  3575. - fix NPTL pthread_cond_timedwait
  3576. - fix sysconf (_SC_MONOTONIC_CLOCK)
  3577. - use /%%{_lib}/tls instead of /lib/tls on x86-64
  3578. - add /%%{_lib}/tls/librt*so* and /%%{_lib}/i686/librt*so*
  3579. - display content of .out files for all make check failures
  3580. * Wed Mar 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-17
  3581. - update from CVS
  3582. - kernel POSIX timers support
  3583. * Sat Mar 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-16
  3584. - update from CVS
  3585. - export __fork from glibc again
  3586. - fix glibc-compat build in NPTL
  3587. - fix c_stubs
  3588. - fix some more atomic.h problems
  3589. - don't check abi in glibc-compat libs
  3590. * Fri Mar 21 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-15
  3591. - update from CVS
  3592. - build glibc-compat (for glibc 2.0 compatibility) and c_stubs add-ons
  3593. - condrestart sshd in glibc_post_upgrade so that the user can
  3594. log in remotely and handle the rest (#86339)
  3595. - fix a typo in glibc_post_upgrade on sparc
  3596. * Tue Mar 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-14
  3597. - update from CVS
  3598. - change i686/athlon libc.so.6 base to 0x00e80000
  3599. * Mon Mar 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-13
  3600. - update from CVS
  3601. - hopefully last fix for condvar problems
  3602. * Fri Mar 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-12
  3603. - fix bits/syscall.h creation on x86-64
  3604. * Thu Mar 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-11
  3605. - update from CVS
  3606. * Wed Mar 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-10
  3607. - update from CVS
  3608. * Tue Mar 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-9
  3609. - update from CVS
  3610. - fix glibc-debug description (#85111)
  3611. - make librt.so a symlink again, not linker script
  3612. * Tue Mar 4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-8
  3613. - update from CVS
  3614. - remove the workarounds for broken software accessing GLIBC_PRIVATE
  3615. symbols
  3616. * Mon Mar 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-7
  3617. - update from CVS
  3618. * Sun Mar 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-6
  3619. - fix TLS IE/LE model handling in dlopened libraries
  3620. on TCB_AT_TP arches
  3621. * Tue Feb 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-5
  3622. - update from CVS
  3623. * Tue Feb 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-4
  3624. - update from CVS
  3625. * Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-3
  3626. - update from CVS
  3627. - only warn about errno, h_errno or _res for binaries, never
  3628. libraries
  3629. - rebuilt with gcc-3.2.2-4 to use direct %%gs TLS access insn sequences
  3630. * Sun Feb 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-2
  3631. - update from CVS
  3632. * Sat Feb 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-1
  3633. - update from CVS
  3634. * Thu Feb 20 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-51
  3635. - update from CVS
  3636. * Wed Feb 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-50
  3637. - update from CVS
  3638. * Wed Feb 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-49
  3639. - update from CVS
  3640. - remove nisplus and nis from the default nsswitch.conf (#67401, #9952)
  3641. * Tue Feb 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-48
  3642. - update from CVS
  3643. * Sat Feb 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-47
  3644. - update from CVS
  3645. * Fri Feb 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-46
  3646. - update from CVS
  3647. - pthread_cond* NPTL fixes, new NPTL testcases
  3648. * Thu Feb 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-45
  3649. - update from CVS
  3650. - include also linuxthreads FLOATING_STACKS libs on i686 and athlon:
  3651. LD_ASSUME_KERNEL=2.2.5 to LD_ASSUME_KERNEL=2.4.0 is non-FLOATING_STACKS lt,
  3652. LD_ASSUME_KERNEL=2.4.1 to LD_ASSUME_KERNEL=2.4.19 is FLOATING_STACKS lt,
  3653. later is NPTL
  3654. - enable TLS on alpha/alphaev6
  3655. - add BuildPreReq: /usr/bin/readlink
  3656. * Tue Feb 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-44
  3657. - update from CVS
  3658. - pthread_once fix
  3659. * Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-43
  3660. - update from CVS
  3661. - vfork fix on s390
  3662. - rebuilt with binutils 2.13.90.0.18-5 so that accesses to errno
  3663. don't bind locally (#83325)
  3664. * Thu Feb 06 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-42
  3665. - update from CVS
  3666. - fix pthread_create after vfork+exec in linuxthreads
  3667. * Wed Feb 05 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-41
  3668. - update from CVS
  3669. * Thu Jan 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-40
  3670. - update from CVS
  3671. * Wed Jan 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-39
  3672. - update from CVS
  3673. - enable TLS on s390{,x} and sparc{,v9}
  3674. * Fri Jan 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-38
  3675. - update from CVS
  3676. - initialize __environ in glibc_post_upgrade to empty array,
  3677. so that it is not NULL
  3678. - compat symlink for s390x /lib/ld64.so.1
  3679. - enable glibc-profile on x86-64
  3680. - only include libNoVersion.so on IA-32, Alpha and Sparc 32-bit
  3681. * Thu Jan 16 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-37
  3682. - update from CVS
  3683. - nscd fixes, *scanf fix
  3684. - fix %%nptlarches noarch build (#81909)
  3685. - IA-64 TLS fixes
  3686. * Tue Jan 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-36
  3687. - update from CVS
  3688. - rework -debuginfo subpackage, add -debuginfo-common
  3689. subpackage on IA-32, Alpha and Sparc (ie. auxiliary arches)
  3690. - fix vfork in libc.a on PPC32, Alpha, Sparc
  3691. - fix libio locks in linuxthreads libc.so if libpthread.so
  3692. is dlopened later (#81374)
  3693. * Mon Jan 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-35
  3694. - update from CVS
  3695. - dlclose bugfixes
  3696. - fix NPTL libpthread.a
  3697. - fix glibc_post_upgrade on several arches
  3698. * Sat Jan 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-34
  3699. - update from CVS
  3700. - TLS support on IA-64
  3701. * Wed Jan 8 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-33
  3702. - fix vfork in linuxthreads (#81377, #81363)
  3703. * Tue Jan 7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-32
  3704. - update from CVS
  3705. - don't use TLS libs if kernel doesn't set AT_SYSINFO
  3706. (#80921, #81212)
  3707. - add ntp_adjtime on alpha (#79996)
  3708. - fix nptl_db (#81116)
  3709. * Sun Jan 5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-31
  3710. - update from CVS
  3711. - support all architectures again
  3712. * Fri Jan 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-30
  3713. - fix condvar compatibility wrappers
  3714. - add ugly hack to use non-TLS libs if a binary is seen
  3715. to have errno, h_errno or _res symbols in .dynsym
  3716. * Fri Jan 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-29
  3717. - update from CVS
  3718. - fixes for new condvar
  3719. * Thu Jan 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-28
  3720. - new NPTL condvar implementation plus related linuxthreads
  3721. symbol versioning updates
  3722. * Thu Jan 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-27
  3723. - update from CVS
  3724. - fix #include <sys/stat.h> with -D_BSD_SOURCE or without
  3725. feature set macros
  3726. - make *sigaction, sigwait and raise the same between
  3727. -lpthread -lc and -lc -lpthread in linuxthreads builds
  3728. * Tue Dec 31 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-26
  3729. - fix dlclose
  3730. * Sun Dec 29 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-25
  3731. - enable sysenter by default for now
  3732. - fix endless loop in ldconfig
  3733. * Sat Dec 28 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-24
  3734. - update from CVS
  3735. * Fri Dec 27 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-23
  3736. - update from CVS
  3737. - fix ptmalloc_init after clearenv (#80370)
  3738. * Sun Dec 22 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-22
  3739. - update from CVS
  3740. - add IA-64 back
  3741. - move TLS libraries from /lib/i686 to /lib/tls
  3742. * Thu Dec 19 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-21
  3743. - system(3) fix for linuxthreads
  3744. - don't segfault in pthread_attr_init from libc.so
  3745. - add cancellation tests from nptl to linuxthreads
  3746. * Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-20
  3747. - fix up lists of exported symbols + their versions
  3748. from the libraries
  3749. * Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-19
  3750. - fix --with-tls --enable-kernel=2.2.5 libc on IA-32
  3751. * Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-18
  3752. - update from CVS
  3753. - fix NPTL hanging mozilla
  3754. - initialize malloc in mALLOPt (fixes problems with squid, #79957)
  3755. - make linuxthreads work with dl_dynamic_weak 0
  3756. - clear dl_dynamic_weak everywhere
  3757. * Tue Dec 17 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-17
  3758. - update from CVS
  3759. - NPTL socket fixes, flockfile/ftrylockfile/funlockfile fix
  3760. - kill -debug sub-package, rename -debug-static to -debug
  3761. - clear dl_dynamic_weak for NPTL
  3762. * Mon Dec 16 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-16
  3763. - fix <bits/mathinline.h> and <bits/nan.h> for C++
  3764. - automatically generate NPTL libpthread wrappers
  3765. * Mon Dec 16 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-15
  3766. - update from CVS
  3767. - all functions which need cancellation should now be cancellable
  3768. both in libpthread.so and libc.so
  3769. - removed @@GLIBC_2.3.2 cancellation wrappers
  3770. * Fri Dec 13 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-14
  3771. - update from CVS
  3772. - replace __libc_lock_needed@GOTOFF(%%ebx) with
  3773. %%gs:offsetof(tcbhead_t, multiple_threads)
  3774. - start of new NPTL cancellation wrappers
  3775. * Thu Dec 12 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-13
  3776. - update from CVS
  3777. - use inline locks in malloc
  3778. * Tue Dec 10 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-12
  3779. - update from CVS
  3780. - support LD_ASSUME_KERNEL=2.2.5 in statically linked programs
  3781. * Mon Dec 9 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-11
  3782. - update from CVS
  3783. - rebuilt with gcc-3.2.1-2
  3784. * Fri Dec 6 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-10
  3785. - update from CVS
  3786. - non-nptl --with-tls --without-__thread FLOATING_STACKS libpthread
  3787. should work now
  3788. - faster libc locking when using nptl
  3789. - add OUTPUT_FORMAT to linker scripts
  3790. - fix x86_64 sendfile (#79111)
  3791. * Wed Dec 4 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-9
  3792. - update from CVS
  3793. - RUSCII support (#78906)
  3794. - for nptl builds add BuildRequires
  3795. - fix byteswap.h for non-gcc (#77689)
  3796. - add nptl-devel package
  3797. * Tue Dec 3 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-8
  3798. - update from CVS
  3799. - make --enable-kernel=2.2.5 --with-tls --without-__thread
  3800. ld.so load nptl and other --with-__thread libs
  3801. - disable nptl by default for now
  3802. * Wed Nov 27 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-7
  3803. - update from CVS
  3804. - restructured redhat/Makefile and spec, so that src.rpm contains
  3805. glibc-<date>.tar.bz2, glibc-redhat-<date>.tar.bz2 and glibc-redhat.patch
  3806. - added nptl
  3807. * Fri Nov 8 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-6
  3808. - update from CVS
  3809. - even more regex fixes
  3810. - run sed testsuite to check glibc regex
  3811. * Thu Oct 24 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-5
  3812. - fix LD_DEBUG=statistics and LD_TRACE_PRELINKING in programs
  3813. using libpthread.so.
  3814. * Thu Oct 24 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-4
  3815. - update from CVS
  3816. - fixed %%a and %%A in *printf (#75821)
  3817. - fix re_comp memory leaking (#76594)
  3818. * Tue Oct 22 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-3
  3819. - update from CVS
  3820. - some more regex fixes
  3821. - fix libpthread.a (#76484)
  3822. - fix locale-archive enlarging
  3823. * Fri Oct 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-2
  3824. - update from CVS
  3825. - don't need to use 128K of stacks for DNS lookups
  3826. - regex fixes
  3827. - updated timezone data e.g. for this year's Brasil DST
  3828. changes
  3829. - expand ${LIB} in RPATH/RUNPATH/dlopen filenames
  3830. * Fri Oct 11 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-1
  3831. - update to 2.3.1 final
  3832. - support really low thread stack sizes (#74073)
  3833. - tzdata update
  3834. * Wed Oct 9 2002 Jakub Jelinek <jakub@redhat.com> 2.3-2
  3835. - update from CVS
  3836. - handle low stack limits
  3837. - move s390x into */lib64
  3838. * Thu Oct 3 2002 Jakub Jelinek <jakub@redhat.com> 2.3-1
  3839. - update to 2.3 final
  3840. - fix freopen on libstdc++ <= 2.96 stdin/stdout/stderr (#74800)
  3841. * Sun Sep 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-3
  3842. - don't prelink -r libc.so on ppc/x86-64/sparc*, it doesn't
  3843. speed things up, because they are neither REL arches, nor
  3844. ELF_MACHINE_REL_RELATIVE
  3845. - fix sparc64 build
  3846. * Sun Sep 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-2
  3847. - update from CVS
  3848. * Sat Sep 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-1
  3849. - update from CVS
  3850. - prelink on ppc and x86-64 too
  3851. - don't remove ppc memset
  3852. - instead of listing on which arches to remove glibc-compat
  3853. list where it should stay
  3854. * Fri Sep 6 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-5
  3855. - fix wcsmbs functions with invalid character sets (or malloc
  3856. failures)
  3857. - make sure __ctype_b etc. compat vars are updated even if
  3858. they are copy relocs in the main program
  3859. * Thu Sep 5 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-4
  3860. - fix /lib/libnss1_dns.so.1 (missing __set_h_errno definition
  3861. leading to unresolved __set_h_errno symbol)
  3862. * Wed Sep 4 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-3
  3863. - security fix - increase dns-network.c MAXPACKET to at least
  3864. 65536 to avoid buffer overrun. Likewise glibc-compat
  3865. dns-{host,network}.c.
  3866. * Tue Sep 3 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-2
  3867. - temporarily add back __ctype_b, __ctype_tolower and __ctype_toupper to
  3868. libc.a and export them as @@GLIBC_2.0 symbols, not @GLIBC_2.0
  3869. from libc.so - we have still lots of .a libraries referencing
  3870. __ctype_{b,tolower,toupper} out there...
  3871. * Tue Sep 3 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-1
  3872. - update from CVS
  3873. - 2.2.93 release
  3874. - use double instead of single indirection in isXXX macros
  3875. - per-locale wcsmbs conversion state
  3876. * Sat Aug 31 2002 Jakub Jelinek <jakub@redhat.com> 2.2.92-2
  3877. - update from CVS
  3878. - fix newlocale/duplocale/uselocale
  3879. - disable profile on x86_64 for now
  3880. * Sat Aug 31 2002 Jakub Jelinek <jakub@redhat.com> 2.2.92-1
  3881. - update from CVS
  3882. - 2.2.92 release
  3883. - fix gettext after uselocale
  3884. - fix locales in statically linked threaded programs
  3885. - fix NSS
  3886. * Thu Aug 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.91-1
  3887. - update from CVS
  3888. - 2.2.91 release
  3889. - fix fd leaks in locale-archive reader (#72043)
  3890. - handle EROFS in build-locale-archive gracefully (#71665)
  3891. * Wed Aug 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-27
  3892. - update from CVS
  3893. - fix re_match (#72312)
  3894. - support more than 1024 threads
  3895. * Fri Aug 23 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-26
  3896. - update from CVS
  3897. - fix i386 build
  3898. * Thu Aug 22 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-25
  3899. - update from CVS
  3900. - fix locale-archive loading hang on some (non-primary) locales
  3901. (#72122, #71878)
  3902. - fix umount problems with locale-archives when /usr is a separate
  3903. partition (#72043)
  3904. - add LICENSES file
  3905. * Fri Aug 16 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-24
  3906. - update from CVS
  3907. - only mmap up to 2MB of locale-archive on 32-bit machines
  3908. initially
  3909. - fix fseek past end + fread segfault with mmaped stdio
  3910. - include <sys/debugreg.h> which is mistakenly not included
  3911. in glibc-devel on IA-32
  3912. * Fri Aug 16 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-23
  3913. - don't return normalized locale name in setlocale when using
  3914. locale-archive
  3915. * Thu Aug 15 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-22
  3916. - update from CVS
  3917. - optimize for primary system locale
  3918. - localedef fixes (#71552, #67705)
  3919. * Wed Aug 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-21
  3920. - fix path to locale-archive in libc reader
  3921. - build locale archive at glibc-common %%post time
  3922. - export __strtold_internal and __wcstold_internal on Alpha again
  3923. - workaround some localedata problems
  3924. * Tue Aug 13 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-20
  3925. - update from CVS
  3926. - patch out set_thread_area for now
  3927. * Fri Aug 9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-19
  3928. - update from CVS
  3929. - GB18030 patch from Yu Shao
  3930. - applied Debian patch for getaddrinfo IPv4 vs. IPv6
  3931. - fix regcomp (#71039)
  3932. * Sun Aug 4 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-18
  3933. - update from CVS
  3934. - use /usr/sbin/prelink, not prelink (#70376)
  3935. * Thu Jul 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-17
  3936. - update from CVS
  3937. * Thu Jul 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-16
  3938. - update from CVS
  3939. - ungetc fix (#69586)
  3940. - fseek errno fix (#69589)
  3941. - change *etrlimit prototypes for C++ (#68588)
  3942. - use --without-tls instead of --disable-tls
  3943. * Thu Jul 11 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-15
  3944. - set nscd user's shell to /sbin/nologin (#68369)
  3945. - fix glibc-compat buffer overflows (security)
  3946. - buildrequire prelink, don't build glibc's own copy of it (#67567)
  3947. - update from CVS
  3948. - regex fix (#67734)
  3949. - fix unused warnings (#67706)
  3950. - fix freopen with mmap stdio (#67552)
  3951. - fix realloc (#68499)
  3952. * Tue Jun 25 2002 Bill Nottingham <notting@redhat.com> 2.2.90-14
  3953. - update from CVS
  3954. - fix argp on long words
  3955. - update atime in libio
  3956. * Sat Jun 22 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-13
  3957. - update from CVS
  3958. - a thread race fix
  3959. - fix readdir on invalid dirp
  3960. * Wed Jun 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-12
  3961. - update from CVS
  3962. - don't use __thread in headers
  3963. - fix system(3) in threaded apps
  3964. - update prelink, so that it is possible to prelink -u libc.so.6.1
  3965. on Alpha
  3966. * Fri Jun 7 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-11
  3967. - update from CVS
  3968. - fix __moddi3 (#65612, #65695)
  3969. - fix ether_line (#64427)
  3970. - fix setvbuf with mmap stdio (#65864)
  3971. - --disable-tls for now, waiting for kernel
  3972. - avoid duplication of __divtf3 etc. on IA-64
  3973. - make sure get*ent_r and _IO_wfile_jumps are exported (#62278)
  3974. * Tue May 21 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-10
  3975. - update from CVS
  3976. - fix Alpha pthread bug with gcc 3.1
  3977. * Fri Apr 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-35
  3978. - fix nice
  3979. * Mon Apr 15 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-34
  3980. - add relocation dependencies even for weak symbols (#63422)
  3981. - stricter check_fds check for suid/sgid binaries
  3982. - run make check at %%install time
  3983. * Sat Apr 13 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-33
  3984. - handle Dec 31 1969 in mktime for timezones west of GMT (#63369)
  3985. - back out do-lookup.h change (#63261, #63305)
  3986. - use "memory" clobber instead all the fancy stuff in i386/i686/bits/string.h
  3987. since lots of compilers break on it
  3988. - fix sparc build with gcc 3.1
  3989. - fix spec file for athlon
  3990. * Tue Apr 9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-32
  3991. - fix debugging of threaded apps (#62804)
  3992. - fix DST for Estonia (#61494)
  3993. - document that pthread_mutexattr_?etkind_np are deprecated
  3994. and pthread_mutexattr_?ettype should be used instead in man
  3995. pages (#61485)
  3996. - fix libSegFault.so undefined externals
  3997. * Fri Apr 5 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-31
  3998. - temporarily disable prelinking ld.so, as some statically linked
  3999. binaries linked against debugging versions of old glibcs die on it
  4000. (#62352)
  4001. - fix <semaphore.h> for -std=c99 (#62516)
  4002. - fix ether_ntohost segfault (#62397)
  4003. - remove in glibc_post_upgrade on i386 all /lib/i686/libc-*.so,
  4004. /lib/i686/libm-*.so and /lib/i686/libpthread-*.so, not just current
  4005. version (#61633)
  4006. - prelink -r on alpha too
  4007. * Thu Mar 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-30
  4008. - update GB18030 iconv module (Yu Shao)
  4009. * Tue Mar 26 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-29
  4010. - features.h fix
  4011. * Tue Mar 26 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-28
  4012. - update from CVS
  4013. - fix nscd with huge groups
  4014. - fix nis to not close fds it shouldn't
  4015. - rebuilt against newer glibc-kernheaders to use the correct
  4016. PATH_MAX
  4017. - handle .athlon.rpm glibc the same way as .i686.rpm
  4018. - add a couple of .ISO-8859-15 locales (#61908)
  4019. - readd temporarily currencies which were superceeded by Euro
  4020. into the list of accepted currencies by localedef to make
  4021. standard conformance testsuites happy
  4022. - temporarily moved __libc_waitpid back to make Sun JDK happy
  4023. - use old malloc code
  4024. - prelink i686/athlon ld.so and prelink -r i686/athlon libc.so
  4025. * Thu Mar 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-27
  4026. - update from CVS
  4027. - fix DST handling for southern hemisphere (#60747)
  4028. - fix daylight setting for tzset (#59951)
  4029. - fix ftime (#60350)
  4030. - fix nice return value
  4031. - fix a malloc segfault
  4032. - temporarily moved __libc_wait, __libc_fork and __libc_stack_end
  4033. back to what they used to be exported at
  4034. - censorship (#60758)
  4035. * Thu Feb 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-26
  4036. - update from CVS
  4037. - use __attribute__((visibility(...))) if supported, use _rtld_local
  4038. for ld.so only objects
  4039. - provide libc's own __{,u}{div,mod}di3
  4040. * Wed Feb 27 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-25
  4041. - switch back to 2.2.5, mmap stdio needs work
  4042. * Mon Feb 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-8
  4043. - fix two other mmap stdio bugs (#60228)
  4044. * Thu Feb 21 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-7
  4045. - fix yet another mmap stdio bug (#60145)
  4046. * Tue Feb 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-6
  4047. - fix mmap stdio bug (seen on ld as File truncated error, #60043)
  4048. - apply Andreas Schwab's fix for pthread sigwait
  4049. - remove /lib/i686/ libraries in glibc_post_upgrade when
  4050. performing i386 glibc install
  4051. * Thu Feb 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-5
  4052. - update to CVS
  4053. - added glibc-utils subpackage
  4054. - disable autoreq in glibc-debug
  4055. - readd %%lang() to locale files
  4056. * Thu Feb 7 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-4
  4057. - update to CVS
  4058. - move glibc private symbols to GLIBC_PRIVATE symbol version
  4059. * Wed Jan 9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-3
  4060. - fix a sqrt bug on alpha which caused SHN_UNDEF $__full_ieee754_sqrt..ng
  4061. symbol in libm
  4062. * Tue Jan 8 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-2
  4063. - add debug-static package
  4064. * Mon Dec 31 2001 Jakub Jelinek <jakub@redhat.com> 2.2.90-1
  4065. - update from CVS
  4066. - remove -D__USE_STRING_INLINES
  4067. - add debug subpackage to trim glibc and glibc-devel size
  4068. * Wed Oct 3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-19
  4069. - fix strsep
  4070. * Fri Sep 28 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-18
  4071. - fix a ld.so bug with duplicate searchlists in l_scope
  4072. - fix erfcl(-inf)
  4073. - turn /usr/lib/librt.so into linker script
  4074. * Wed Sep 26 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-17
  4075. - fix a ld.so lookup bug after lots of dlopen calls
  4076. - fix CMSG_DATA for non-gcc non-ISOC99 compilers (#53984)
  4077. - prelinking support for Sparc64
  4078. * Fri Sep 21 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-16
  4079. - update from CVS to fix DT_SYMBOLIC
  4080. - prelinking support for Alpha and Sparc
  4081. * Tue Sep 18 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-15
  4082. - update from CVS
  4083. - linuxthreads now retries if -1/EINTR is returned from
  4084. reading or writing to thread manager pipe (#43742)
  4085. - use DT_FILTER in librt.so (#53394)
  4086. - update glibc prelink patch so that it handles filters
  4087. - fix timer_* with SIGEV_NONE (#53494)
  4088. - make glibc_post_upgrade work on PPC (patch from Franz Sirl)
  4089. * Mon Sep 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-14
  4090. - fix build on sparc32
  4091. - 2.2.4-13 build for some reason missed some locales
  4092. on alpha/ia64
  4093. * Mon Sep 3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-13
  4094. - fix iconvconfig
  4095. * Mon Sep 3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-12
  4096. - add fam to /etc/rpc (#52863)
  4097. - fix <inttypes.h> for C++ (#52960)
  4098. - fix perror
  4099. * Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-11
  4100. - fix strnlen(x, -1)
  4101. * Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-10
  4102. - doh, <bits/libc-lock.h> should only define __libc_rwlock_t
  4103. if __USE_UNIX98.
  4104. * Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-9
  4105. - fix bits/libc-lock.h so that gcc can compile
  4106. - fix s390 build
  4107. * Fri Aug 24 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-8
  4108. - kill stale library symlinks in ldconfig (#52350)
  4109. - fix inttypes.h for G++ < 3.0
  4110. - use DT_REL*COUNT
  4111. * Wed Aug 22 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-7
  4112. - fix strnlen on IA-64 (#50077)
  4113. * Thu Aug 16 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-6
  4114. - glibc 2.2.4 final
  4115. - fix -lpthread -static (#51672)
  4116. * Fri Aug 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-5
  4117. - doh, include libio/tst-swscanf.c
  4118. * Fri Aug 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-4
  4119. - don't crash on catclose(-1)
  4120. - fix wscanf %%[] handling
  4121. - fix return value from swprintf
  4122. - handle year + %%U/%%W week + week day in strptime
  4123. * Thu Aug 9 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-3
  4124. - update from CVS to
  4125. - fix strcoll (#50548)
  4126. - fix seekdir (#51132)
  4127. - fix memusage (#50606)
  4128. - don't make gconv-modules.cache %%config file, just don't verify
  4129. its content.
  4130. * Mon Aug 6 2001 Jakub Jelinek <jakub@redhat.com>
  4131. - fix strtod and *scanf (#50723, #50724)
  4132. * Sat Aug 4 2001 Jakub Jelinek <jakub@redhat.com>
  4133. - update from CVS
  4134. - fix iconv cache handling
  4135. - glibc should not own %%{_infodir}, %%{_mandir} nor %%{_mandir}/man3 (#50673)
  4136. - add gconv-modules.cache as emtpy config file (#50699)
  4137. - only run iconvconfig if /usr is mounted read-write (#50667)
  4138. * Wed Jul 25 2001 Jakub Jelinek <jakub@redhat.com>
  4139. - move iconvconfig from glibc-common into glibc subpackage,
  4140. call it from glibc_post_upgrade instead of common's post.
  4141. * Tue Jul 24 2001 Jakub Jelinek <jakub@redhat.com>
  4142. - turn off debugging printouts in iconvconfig
  4143. * Tue Jul 24 2001 Jakub Jelinek <jakub@redhat.com>
  4144. - update from CVS
  4145. - fix IA-32 makecontext
  4146. - make fflush(0) thread-safe (#46446)
  4147. * Mon Jul 23 2001 Jakub Jelinek <jakub@redhat.com>
  4148. - adjust prelinking DT_* and SHT_* values in elf.h
  4149. - update from CVS
  4150. - iconv cache
  4151. - make iconv work in SUID/SGID programs (#34611)
  4152. * Fri Jul 20 2001 Jakub Jelinek <jakub@redhat.com>
  4153. - update from CVS
  4154. - kill non-pic code in libm.so
  4155. - fix getdate
  4156. - fix some locales (#49402)
  4157. - rebuilt with binutils-2.11.90.0.8-5 to place .interp section
  4158. properly in libBrokenLocale.so, libNoVersion.so and libanl.so
  4159. - add floating stacks on IA-64, Alpha, Sparc (#49308)
  4160. * Mon Jul 16 2001 Jakub Jelinek <jakub@redhat.com>
  4161. - make /lib/i686 directory owned by glibc*.i686.rpm
  4162. * Mon Jul 9 2001 Jakub Jelinek <jakub@redhat.com>
  4163. - remove rquota.[hx] headers which are now provided by quota (#47141)
  4164. - add prelinking patch
  4165. * Thu Jul 5 2001 Jakub Jelinek <jakub@redhat.com>
  4166. - require sh-utils for nscd
  4167. * Mon Jun 25 2001 Jakub Jelinek <jakub@redhat.com>
  4168. - update from CVS (#43681, #43350, #44663, #45685)
  4169. - fix ro_RO bug (#44644)
  4170. * Wed Jun 6 2001 Jakub Jelinek <jakub@redhat.com>
  4171. - fix a bunch of math bugs (#43210, #43345, #43346, #43347, #43348, #43355)
  4172. - make rpc headers -ansi compilable (#42390)
  4173. - remove alphaev6 optimized memcpy, since there are still far too many
  4174. broken apps which call memcpy where they should call memmove
  4175. - update from CVS to (among other things):
  4176. - fix tanhl bug (#43352)
  4177. * Tue May 22 2001 Jakub Jelinek <jakub@redhat.com>
  4178. - fix #include <signal.h> with -D_XOPEN_SOURCE=500 on ia64 (#35968)
  4179. - fix a dlclose reldeps handling bug
  4180. - some more profiling fixes
  4181. - fix tgmath.h
  4182. * Thu May 17 2001 Jakub Jelinek <jakub@redhat.com>
  4183. - make ldconfig more quiet
  4184. - fix LD_PROFILE on i686 (#41030)
  4185. * Wed May 16 2001 Jakub Jelinek <jakub@redhat.com>
  4186. - fix the hardlink program, so that it really catches all files with
  4187. identical content
  4188. - add a s390x clone fix
  4189. * Wed May 16 2001 Jakub Jelinek <jakub@redhat.com>
  4190. - fix rpc for non-threaded apps using svc_fdset and similar variables (#40409)
  4191. - fix nss compatibility DSO versions for alphaev6
  4192. - add a hardlink program instead of the shell 3x for plus cmp -s/link
  4193. which takes a lot of time during build
  4194. - rework BuildPreReq and Conflicts with gcc, so that
  4195. it applies only where it has to
  4196. * Fri May 11 2001 Jakub Jelinek <jakub@redhat.com>
  4197. - fix locale name of ja_JP in UTF-8 (#39783)
  4198. - fix re_search_2 (#40244)
  4199. - fix memusage script (#39138, #39823)
  4200. - fix dlsym(RTLD_NEXT, ) from main program (#39803)
  4201. - fix xtrace script (#39609)
  4202. - make glibc conflict with glibc-devel 2.2.2 and below (to make sure
  4203. libc_nonshared.a has atexit)
  4204. - fix getconf LFS_CFLAGS on 64bitters
  4205. - recompile with gcc-2.96-84 or above to fix binary compatibility problem
  4206. with __frame_state_for function (#37933)
  4207. * Fri Apr 27 2001 Jakub Jelinek <jakub@redhat.com>
  4208. - glibc 2.2.3 release
  4209. - fix strcoll (#36539)
  4210. - add BuildPreReqs (#36378)
  4211. * Wed Apr 25 2001 Jakub Jelinek <jakub@redhat.com>
  4212. - update from CVS
  4213. * Fri Apr 20 2001 Jakub Jelinek <jakub@redhat.com>
  4214. - update from CVS
  4215. - fix sparc64, ia64
  4216. - fix some locale syntax errors (#35982)
  4217. * Wed Apr 18 2001 Jakub Jelinek <jakub@redhat.com>
  4218. - update from CVS
  4219. * Wed Apr 11 2001 Jakub Jelinek <jakub@redhat.com>
  4220. - update from CVS
  4221. * Fri Apr 6 2001 Jakub Jelinek <jakub@redhat.com>
  4222. - support even 2.4.0 kernels on ia64, sparc64 and s390x
  4223. - include UTF-8 locales
  4224. - make gconv-modules %%config(noreplace)
  4225. * Fri Mar 23 2001 Jakub Jelinek <jakub@redhat.com>
  4226. - back out sunrpc changes
  4227. * Wed Mar 21 2001 Jakub Jelinek <jakub@redhat.com>
  4228. - update from CVS
  4229. - fix ia64 build
  4230. - fix pthread_getattr_np
  4231. * Fri Mar 16 2001 Jakub Jelinek <jakub@redhat.com>
  4232. - update from CVS
  4233. - run atexit() registered functions at dlclose time if they are in shared
  4234. libraries (#28625)
  4235. - add pthread_getattr_np API to make JVM folks happy
  4236. * Wed Mar 14 2001 Jakub Jelinek <jakub@redhat.com>
  4237. - require 2.4.1 instead of 2.4.0 on platforms where it required 2.4 kernel
  4238. - fix ldd behaviour on unresolved symbols
  4239. - remove nonsensical ldconfig warning, update osversion for the most
  4240. recent library with the same soname in the same directory instead (#31703)
  4241. - apply selected patches from CVS
  4242. - s390x spec file changes from Florian La Roche
  4243. * Wed Mar 7 2001 Jakub Jelinek <jakub@redhat.com>
  4244. - fix gencat (#30894)
  4245. - fix ldconfig changes from yesterday, fix LD_ASSUME_KERNEL handling
  4246. * Tue Mar 6 2001 Jakub Jelinek <jakub@redhat.com>
  4247. - update from CVS
  4248. - make pthread_attr_setstacksize consistent before and after pthread manager
  4249. is started (#28194)
  4250. - pass back struct sigcontext from pthread signal wrapper (on ia32 only so
  4251. far, #28493)
  4252. - on i686 ship both --enable-kernel 2.2.5 and 2.4.0 libc/libm/libpthread,
  4253. make ld.so pick the right one
  4254. * Sat Feb 17 2001 Preston Brown <pbrown@redhat.com>
  4255. - glib-common doesn't require glibc, until we can figure out how to get out of dependency hell.
  4256. * Sat Feb 17 2001 Jakub Jelinek <jakub@redhat.com>
  4257. - make glibc require particular version of glibc-common
  4258. and glibc-common prerequire glibc.
  4259. * Fri Feb 16 2001 Jakub Jelinek <jakub@redhat.com>
  4260. - glibc 2.2.2 release
  4261. - fix regex REG_ICASE bug seen in ksymoops
  4262. * Sat Feb 10 2001 Jakub Jelinek <jakub@redhat.com>
  4263. - fix regexec leaking memory (#26864)
  4264. * Fri Feb 9 2001 Jakub Jelinek <jakub@redhat.com>
  4265. - update from CVS
  4266. - fix ia64 build with gnupro
  4267. - make regex 64bit clean
  4268. - fix tgmath make check failures on alpha
  4269. * Tue Feb 6 2001 Jakub Jelinek <jakub@redhat.com>
  4270. - update again for ia64 DF_1_INITFIRST
  4271. * Fri Feb 2 2001 Jakub Jelinek <jakub@redhat.com>
  4272. - update from CVS
  4273. - fix getaddrinfo (#25437)
  4274. - support DF_1_INITFIRST (#25029)
  4275. * Wed Jan 24 2001 Jakub Jelinek <jakub@redhat.com>
  4276. - build all auxiliary arches with --enablekernel 2.4.0, those wanting
  4277. to run 2.2 kernels can downgrade to the base architecture glibc.
  4278. * Sat Jan 20 2001 Jakub Jelinek <jakub@redhat.com>
  4279. - remove %%lang() flags from %%{_prefix}/lib/locale files temporarily
  4280. * Sun Jan 14 2001 Jakub Jelinek <jakub@redhat.com>
  4281. - update to 2.2.1 final
  4282. - fix a pthread_kill_other_threads_np breakage (#23966)
  4283. - make static binaries using dlopen work on ia64 again
  4284. - fix a typo in glibc-common group
  4285. * Wed Jan 10 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  4286. - devel requires glibc = %%{version}
  4287. - noreplace /etc/nscd.conf
  4288. * Wed Jan 10 2001 Jakub Jelinek <jakub@redhat.com>
  4289. - some more security fixes:
  4290. - don't look up LD_PRELOAD libs in cache for SUID apps
  4291. (because that bypasses SUID bit checking on the library)
  4292. - place output files for profiling SUID apps into /var/profile,
  4293. use O_NOFOLLOW for them
  4294. - add checks for $MEMUSAGE_OUTPUT and $SEGFAULT_OUTPUT_NAME
  4295. - hardlink identical locale files together
  4296. - add %%lang() tags to locale stuff
  4297. - remove ko_KR.utf8 for now, it is provided by locale-utf8 package
  4298. * Mon Jan 8 2001 Jakub Jelinek <jakub@redhat.com>
  4299. - add glibc-common subpackage
  4300. - fix alphaev6 memcpy (#22494)
  4301. - fix sys/cdefs.h (#22908)
  4302. - don't define stdin/stdout/stderr as macros for -traditional (#22913)
  4303. - work around a bug in IBM JDK (#22932, #23012)
  4304. - fix pmap_unset when network is down (#23176)
  4305. - move nscd in rc.d before netfs on shutdown
  4306. - fix $RESOLV_HOST_CONF in SUID apps (#23562)
  4307. * Fri Dec 15 2000 Jakub Jelinek <jakub@redhat.com>
  4308. - fix ftw and nftw
  4309. * Wed Dec 13 2000 Jakub Jelinek <jakub@redhat.com>
  4310. - fix fcvt (#22184)
  4311. - ldd /lib/ld-linux.so.2 is not crashing any longer again (#22197)
  4312. - fix gencat
  4313. * Mon Dec 11 2000 Jakub Jelinek <jakub@redhat.com>
  4314. - fix alpha htonl and alphaev6 stpcpy
  4315. * Sat Dec 9 2000 Jakub Jelinek <jakub@redhat.com>
  4316. - update to CVS to:
  4317. - fix getnameinfo (#21934)
  4318. - don't stomp on memory in rpath handling (#21544)
  4319. - fix setlocale (#21507)
  4320. - fix libNoVersion.so.1 loading code (#21579)
  4321. - use auxarches define in spec file for auxiliary
  4322. architectures (#21219)
  4323. - remove /usr/share directory from filelist (#21218)
  4324. * Sun Nov 19 2000 Jakub Jelinek <jakub@redhat.com>
  4325. - update to CVS to fix getaddrinfo
  4326. * Fri Nov 17 2000 Jakub Jelinek <jakub@redhat.com>
  4327. - update to CVS to fix freopen
  4328. - remove all alpha workarounds, not needed anymore
  4329. * Wed Nov 15 2000 Jakub Jelinek <jakub@redhat.com>
  4330. - fix dladdr bug on alpha/sparc32/sparc64
  4331. - fix Makefiles so that they run static tests properly
  4332. * Tue Nov 14 2000 Jakub Jelinek <jakub@redhat.com>
  4333. - update to CVS to fix ldconfig
  4334. * Thu Nov 9 2000 Jakub Jelinek <jakub@redhat.com>
  4335. - update to glibc 2.2 release
  4336. * Mon Nov 6 2000 Jakub Jelinek <jakub@redhat.com>
  4337. - update to CVS to:
  4338. - export __sysconf@@GLIBC_2.2 (#20417)
  4339. * Fri Nov 3 2000 Jakub Jelinek <jakub@redhat.com>
  4340. - merge to 2.1.97
  4341. * Mon Oct 30 2000 Jakub Jelinek <jakub@redhat.com>
  4342. - update to CVS, including:
  4343. - fix WORD_BIT/LONG_BIT definition in limits.h (#19088)
  4344. - fix hesiod (#19375)
  4345. - set LC_MESSAGES in zic/zdump for proper error message output (#19495)
  4346. - fix LFS fcntl when used with non-LFS aware kernels (#19730)
  4347. * Thu Oct 19 2000 Jakub Jelinek <jakub@redhat.com>
  4348. - fix alpha semctl (#19199)
  4349. - update to CVS, including:
  4350. - fix glibc headers for Compaq non-gcc compilers
  4351. - fix locale alias handling code (#18832)
  4352. - fix rexec on little endian machines (#18886)
  4353. - started writing changelog again
  4354. * Thu Aug 10 2000 Adrian Havill <havill@redhat.com>
  4355. - added ja ujis alias for backwards compatibility