<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <link>http://nxr.netbsd.org/rss/src/usr.bin/mklocale/Makefile</link>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2005</copyright>
    <generator>Java</generator>
    
<item>
    <title>bsd.own.mk: rename GCC_NO_* to CC_WNO_*<br/><br/>Rename compiler-warning-disable variables from<br/>	GCC_NO_warning<br/>to<br/>	CC_WNO_warning<br/>where warning is the full warning name as used by the compiler.<br/><br/>GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH<br/><br/>Using the convention CC_compilerflag, where compilerflag<br/>is based on the full compiler flag name.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.18</description>
    <pubDate>Sat Jun 03 09:09:17 UTC 2023</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>introduce some common variables for use in GCC warning disables:<br/><br/>GCC_NO_FORMAT_TRUNCATION    -Wno-format-truncation (GCC 7/8)<br/>GCC_NO_STRINGOP_TRUNCATION  -Wno-stringop-truncation (GCC 8)<br/>GCC_NO_STRINGOP_OVERFLOW    -Wno-stringop-overflow (GCC 8)<br/>GCC_NO_CAST_FUNCTION_TYPE   -Wno-cast-function-type (GCC 8)<br/><br/>use these to turn off warnings for most GCC-8 complaints.  many<br/>of these are false positives, most of the real bugs are already<br/>commited, or are yet to come.<br/><br/><br/>we plan to introduce versions of (some?) of these that use the<br/>"-Wno-error=" form, which still displays the warnings but does<br/>not make it an error, and all of the above will be re-considered<br/>as either being "fix me" (warning still displayed) or "warning<br/>is wrong."</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.17</description>
    <pubDate>Sun Oct 13 07:28:15 UTC 2019</pubDate>
    <dc:creator>mrg</dc:creator>
</item>

<item>
    <title>branches:  1.16.46;<br/>Enable WARNS=4 by default for usr.bin, except for:<br/>	awk  bdes  checknr  compile_et  error  gss  hxtool  kgetcred  kinit<br/>	klist  ldd  less  lex  locale  login  m4  man  menuc  mk_cmds<br/>	mklocale  msgc  openssl  rpcgen  rpcinfo  sdiff  spell  ssh<br/>	string2key  telnet  tn3270  verify_krb5_conf  xlint</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.16</description>
    <pubDate>Tue Apr 14 22:15:24 UTC 2009</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>branches:  1.15.2;<br/>1. reworking PR lib/40317:<br/>libnbcompat already contains empty fparseln.lo<br/>so previous fix doesn't work correctly.<br/>i've just added broken fparseln check to configure script.<br/><br/>2. reworking cross build breakage under FreeBSD/MacOS X.<br/>FreeBSD/MacOS X still have public /usr/include/runetype.h<br/>derived from 4.4BSD-Lite.  so i renamed out private header from<br/>src/lib/libc/locale/runetype.h to src/lib/libc/locale/runetype_local.h<br/>to solve this problems.<br/><br/>3. fix build breakage when CITRUS=no was set.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.15</description>
    <pubDate>Mon Jan 05 06:11:43 UTC 2009</pubDate>
    <dc:creator>tnozaki</dc:creator>
</item>

<item>
    <title>add some *.c specific CPPFLAGS.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.14</description>
    <pubDate>Fri Jan 02 22:16:14 UTC 2009</pubDate>
    <dc:creator>tnozaki</dc:creator>
</item>

<item>
    <title>1. fixes PR lib/40317, don't use libc's fparseln(3).<br/>it is non-portable function, toolchain should link it yourself.<br/><br/>2. fixes crossbuild breakage reported by Chiristoph Egger on current-user,<br/>FreeBSD and MacOS X still make Rune* as public API in their ctype.h.<br/>so added namespace protection NB* by including src/lib/libc/locale/rune.h<br/>instead of src/lib/libc/locale/runetype.h.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.13</description>
    <pubDate>Fri Jan 02 22:08:19 UTC 2009</pubDate>
    <dc:creator>tnozaki</dc:creator>
</item>

<item>
    <title>Fixes PR lib/39662, shortcomings in LC_{MONETARY,NUMERIC,TIME,MESSAGES} db format.<br/>ok'ed by core and releng.<br/>(thanks for agc@, snj@ and i'm sorry for long time patience).<br/><br/>[libc]<br/>- localeio.[ch] and lc*.[ch] in src/lib/libc/locale was replaced by<br/>  new locale-db implementation using citrus_db backend,<br/>  see src/lib/libc/citrus/citrus_lc_*.[ch].<br/>- add citrus_bcs_strtou?l.c. don't use strtou?l locale implementation<br/>  internally, because they're locale-aware function.<br/>- add some stubs for multi-locale issue, see {current,global}_locale.c.<br/>- remove some obsolete file, setrunelocale.c, ___runetype_mb.c.<br/>- remove __savectype() from ctypeio.[ch].<br/><br/>[tools]<br/>- mklocale(1): add new option ``-t'' that generates new style<br/>  LC_{MONETARY,NUMERIC,TIME,MESSAGES} locale-db format.<br/>- chrtbl(1): added ctypeio.[ch] for __savectype().<br/><br/>[locale-db]<br/>- added en_US.US-ASCII locale.<br/>- removed some shareable locale definition file:<br/>    en_US.US-ASCII -&gt; en_US.ISO8859-1, en_US.UTF-8<br/>    zh_CN.eucCN -&gt; zh_CN.GB18030<br/>    and more...see src/share/locale/*/Makefile.<br/>- remove obsoleted locale sr_YU, added new locale sr_ME, sr_RS.<br/>- change locale name ja_JP.ISO2022-JP* -&gt; ja_JP.ISO-2022-JP*<br/>  for X11's locale.alias file alignments.<br/>- fix regression test, wrong wcs?width(3), NAN/INF usage.<br/><br/>i tested release-build following arch:<br/>  i386, amd64, hpc{mips,arm,sh}, sparc64, vax.<br/><br/>citrus_lc_*.[ch] also can read old-plain-text style locale-db.<br/>so that backward compatibility is keeped, but lc*.[ch] can't read<br/>new citrus_db'ed locale-db and localeio.c never check sanity,<br/>so forward compatibility is broken ;-&lt;<br/><br/>old mklocale(1) doesn't know -t option, so you have to rebuild toolchain.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.12</description>
    <pubDate>Fri Jan 02 00:20:23 UTC 2009</pubDate>
    <dc:creator>tnozaki</dc:creator>
</item>

<item>
    <title>branches:  1.11.40;<br/>Rework how dependency generation is performed:<br/><br/>* DPSRCS contains extra dependencies, but is _NOT_ added to CLEANFILES.<br/>  This is a change of behaviour.  If a Makefile wants the clean semantics<br/>  it must specifically append to CLEANFILES.<br/>  Resolves PR toolchain/5204.<br/><br/>* To recap: .d (depend) files are generated for all files in SRCS and DPSRCS<br/>  that have a suffix of: .c .m .s .S .C .cc .cpp .cxx<br/><br/>* If YHEADER is set, automatically add the .y-&gt;.h to DPSRCS &amp; CLEANFILES<br/><br/>* Ensure that ${OBJS} ${POBJS} ${LOBJS} ${SOBJS} *.d  depend upon ${DPSRCS}<br/><br/>* Deprecate the (short lived) DEPENDSRCS<br/><br/><br/>Update the various Makefiles to these new semantics; generally either<br/>adding to CLEANFILES (because DPSRCS doesn't do that anymore), or replacing<br/>specific .o dependencies with DPSRCS entries.<br/><br/>Tested with "make -j 8 distribution" and "make distribution".</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.11</description>
    <pubDate>Fri Aug 01 17:04:04 UTC 2003</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>Now that &lt;bsd.prog.mk&gt; DTRT if HOSTPROG is defined (i.e, it is a no-op),<br/>there's no need to special-case .include-ing it.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.10</description>
    <pubDate>Sun May 18 07:57:36 UTC 2003</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>some changes around mklocale:<br/>- clean up cpp directives.<br/>- stop including rune.h from mklocale.<br/>- stop using _BSD_RUNE_T macro.  instead, use int32_t directly in runetype.h.<br/>- move _DEFAULT_INVALID_RUNE to runetype.h.<br/>These were for historical reason on porting rune from FreeBSD,<br/>but it seems that these are no longer reasonable but troublesome<br/>under the current NetBSD build system.<br/>additionally:<br/>- runetype.h -&gt; locale/runetype.h in mklocale, because this might conflict<br/>  to FreeBSD's one.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.9</description>
    <pubDate>Mon Mar 10 20:41:30 UTC 2003</pubDate>
    <dc:creator>tshiozak</dc:creator>
</item>

<item>
    <title>makefile delint. use NETBSDSRCDIR as appropriate</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.8</description>
    <pubDate>Wed Sep 18 14:00:39 UTC 2002</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>branches:  1.7.2;<br/>Clean up.  Use -I., not -I${.OBJDIR}.  Don't have to clean up y.tab.h.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.7</description>
    <pubDate>Mon Nov 12 20:23:26 UTC 2001</pubDate>
    <dc:creator>tv</dc:creator>
</item>

<item>
    <title>Add hooks to allow toolchain bits to be reachover-built at the top level.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.6</description>
    <pubDate>Tue Aug 14 10:18:28 UTC 2001</pubDate>
    <dc:creator>tv</dc:creator>
</item>

<item>
    <title>Make this build with WARNS=2.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.5</description>
    <pubDate>Sun Jan 28 00:28:01 UTC 2001</pubDate>
    <dc:creator>thorpej</dc:creator>
</item>

<item>
    <title>Make yacc.h before making lex.o.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.4</description>
    <pubDate>Thu Jan 11 14:20:18 UTC 2001</pubDate>
    <dc:creator>enami</dc:creator>
</item>

<item>
    <title>remove unnecessary -I to cpp</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.3</description>
    <pubDate>Fri Dec 22 07:02:49 UTC 2000</pubDate>
    <dc:creator>itojun</dc:creator>
</item>

<item>
    <title>populate citrus xpg4dl locale definitions into /usr/share.<br/>if there are any mistakes, please report (i only speak English/Japanese).<br/>currently, only singlebyte locales are usable.<br/><br/>TODO: enable multibyte handler in libc - there still are few design<br/>discussions, but we are almost ready.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.2</description>
    <pubDate>Fri Dec 22 01:31:48 UTC 2000</pubDate>
    <dc:creator>itojun</dc:creator>
</item>

<item>
    <title>branches:  1.1.2;<br/>file Makefile was initially added on branch minoura-xpg4dl.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.1</description>
    <pubDate>Sun May 28 22:41:26 UTC 2000</pubDate>
    <dc:creator>minoura</dc:creator>
</item>

<item>
    <title>Citrus Project XPG4DL, an implementation of I18N (locale) framework,<br/>is imported.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.1.2.1</description>
    <pubDate>Sun May 28 22:41:26 UTC 2000</pubDate>
    <dc:creator>minoura</dc:creator>
</item>

<item>
    <title>Apply patch (request by dbj in ticket 1723):<br/>Fix building the netbsd-1-6 branch under Darwin/MacOS.</title>
    <description>/src/usr.bin/mklocale/Makefile - 1.7.2.1</description>
    <pubDate>Fri Jul 23 14:33:14 UTC 2004</pubDate>
    <dc:creator>tron</dc:creator>
</item>
</channel></rss>

