<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/lib/csu, branch release/2.0</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>This commit was manufactured by cvs2svn to create branch 'ALPHA_2_0'.</title>
<updated>1994-11-08T19:51:51+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>1994-11-08T19:51:51+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f4856526c75b2c41c79507c179357bc902687282'/>
<id>f4856526c75b2c41c79507c179357bc902687282</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Call reduced (8-bit only) startup_setlocale()</title>
<updated>1994-09-24T16:01:30+00:00</updated>
<author>
<name>Andrey A. Chernov</name>
<email>ache@FreeBSD.org</email>
</author>
<published>1994-09-24T16:01:30+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=662bfb666054b5bcbb76167aebcf3824d772fea1'/>
<id>662bfb666054b5bcbb76167aebcf3824d772fea1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change level of setlocale hack enabling from compile option STARTUP_LOCALE</title>
<updated>1994-09-19T02:00:21+00:00</updated>
<author>
<name>Andrey A. Chernov</name>
<email>ache@FreeBSD.org</email>
</author>
<published>1994-09-19T02:00:21+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=54335ac34979427cba6a949204b1fb819520f88e'/>
<id>54335ac34979427cba6a949204b1fb819520f88e</id>
<content type='text'>
to check (via getenv) environment variable "ENABLE_STARTUP_LOCALE" at
runtime.
Submitted by: me per Bruce suggestion
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
to check (via getenv) environment variable "ENABLE_STARTUP_LOCALE" at
runtime.
Submitted by: me per Bruce suggestion
</pre>
</div>
</content>
</entry>
<entry>
<title>Add (#ifdef'ed by STARTUP_LOCALE) following line to crt0.c</title>
<updated>1994-09-18T22:21:04+00:00</updated>
<author>
<name>Andrey A. Chernov</name>
<email>ache@FreeBSD.org</email>
</author>
<published>1994-09-18T22:21:04+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f32a3475424274f71b73023a4ad9e3bc320cbab8'/>
<id>f32a3475424274f71b73023a4ad9e3bc320cbab8</id>
<content type='text'>
	(void) setlocale(LC_ALL, "");

It will be easiest way now to make national chars available
for all ctype-oriented programs at once by simple:

setenv LANG Your_National_Charset

Default case (without "LANG" environment
variable) will be fully ANSI compatible (got "C" locale).

If "LANG" variable present, extention becomes active.

Effect of this extention is great: in one time all ctype
oriented programs can accept/print national characters
without any touching source/binary code, it is big win, IMHO.

This method is fully compatible with ISO8859-* and russian koi8-r
too (in general -- with all 8-bit character sets). I think
it is very useful.
I got this idea from Xenix locale implementation.

This extention is even never compiled in, unless you set
	setenv STARTUP_LOCALE
before rebuilding crt0.c or corresponding variable in /etc/make.conf
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	(void) setlocale(LC_ALL, "");

It will be easiest way now to make national chars available
for all ctype-oriented programs at once by simple:

setenv LANG Your_National_Charset

Default case (without "LANG" environment
variable) will be fully ANSI compatible (got "C" locale).

If "LANG" variable present, extention becomes active.

Effect of this extention is great: in one time all ctype
oriented programs can accept/print national characters
without any touching source/binary code, it is big win, IMHO.

This method is fully compatible with ISO8859-* and russian koi8-r
too (in general -- with all 8-bit character sets). I think
it is very useful.
I got this idea from Xenix locale implementation.

This extention is even never compiled in, unless you set
	setenv STARTUP_LOCALE
before rebuilding crt0.c or corresponding variable in /etc/make.conf
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove dead code.  gmon stuff is now done better in libc/gmon an</title>
<updated>1994-08-22T15:13:41+00:00</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1994-08-22T15:13:41+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=459e429caba45207cfb44aa9302651fd1627049f'/>
<id>459e429caba45207cfb44aa9302651fd1627049f</id>
<content type='text'>
&lt;machine/profile.h&gt;.  The old version was writing an incomplete
header without the profrate field that is necessary to handle the
current faster profiling clock.  The counters that are where the
the profrate should be are usually 0 and gprof converts a profrate
of 0 to hz so the old version gave times too large by a factor of
profhz/hz = 10.24.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
&lt;machine/profile.h&gt;.  The old version was writing an incomplete
header without the profrate field that is necessary to handle the
current faster profiling clock.  The counters that are where the
the profrate should be are usually 0 and gprof converts a profrate
of 0 to hz so the old version gave times too large by a factor of
profhz/hz = 10.24.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make it work with new mmap syscall.</title>
<updated>1994-08-05T17:53:07+00:00</updated>
<author>
<name>Garrett Wollman</name>
<email>wollman@FreeBSD.org</email>
</author>
<published>1994-08-05T17:53:07+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=b4162996d56ca3394816f639ed24219e8d41c65e'/>
<id>b4162996d56ca3394816f639ed24219e8d41c65e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAP_FILE is the default on mmap now, and is no longer defined just</title>
<updated>1994-05-28T13:59:16+00:00</updated>
<author>
<name>Rodney W. Grimes</name>
<email>rgrimes@FreeBSD.org</email>
</author>
<published>1994-05-28T13:59:16+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f46145aa789a6b016fadf110cada55c1d2965594'/>
<id>f46145aa789a6b016fadf110cada55c1d2965594</id>
<content type='text'>
like on a sun, so #define it to be 0 if we are running BSD &gt;=199306.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
like on a sun, so #define it to be 0 if we are running BSD &gt;=199306.
</pre>
</div>
</content>
</entry>
<entry>
<title>From Jordan via. Paul K.</title>
<updated>1994-03-09T17:12:59+00:00</updated>
<author>
<name>Nate Williams</name>
<email>nate@FreeBSD.org</email>
</author>
<published>1994-03-09T17:12:59+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f2523a7e729a4a9c7014b553a60cac90916563a6'/>
<id>f2523a7e729a4a9c7014b553a60cac90916563a6</id>
<content type='text'>
This fixes the problems Warner's having with ctors not being called
again with the latest round of ld changes and updates the file-names to what
Paul is using now.

The name change will not affect anything as we are not (yet) using it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes the problems Warner's having with ctors not being called
again with the latest round of ld changes and updates the file-names to what
Paul is using now.

The name change will not affect anything as we are not (yet) using it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow NetBSD (old style) shared binaries to work.  Probably not the</title>
<updated>1994-02-16T19:26:39+00:00</updated>
<author>
<name>Nate Williams</name>
<email>nate@FreeBSD.org</email>
</author>
<published>1994-02-16T19:26:39+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=17682d01994894f05392b1ce05d0e7dfd08a2cb9'/>
<id>17682d01994894f05392b1ce05d0e7dfd08a2cb9</id>
<content type='text'>
final solution but at least this gets folks running -current up again.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
final solution but at least this gets folks running -current up again.
</pre>
</div>
</content>
</entry>
<entry>
<title>New dlopen, dlclose, etc al.  For the new ld changes.</title>
<updated>1994-02-13T20:53:11+00:00</updated>
<author>
<name>Jordan K. Hubbard</name>
<email>jkh@FreeBSD.org</email>
</author>
<published>1994-02-13T20:53:11+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=14a24404ef973dace757ebdb648992989e00ba28'/>
<id>14a24404ef973dace757ebdb648992989e00ba28</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
