<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.bin/bc, branch releng/10.0</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>Work around build breakages with GCC 4.2.</title>
<updated>2013-05-23T05:42:35+00:00</updated>
<author>
<name>Jung-uk Kim</name>
<email>jkim@FreeBSD.org</email>
</author>
<published>2013-05-23T05:42:35+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=9c5a52cf888a7c1588fb406803f1defa03533a46'/>
<id>9c5a52cf888a7c1588fb406803f1defa03533a46</id>
<content type='text'>
Reported by:	tinderbox
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reported by:	tinderbox
</pre>
</div>
</content>
</entry>
<entry>
<title>Add the Clang specific -Wmissing-variable-declarations to WARNS=6.</title>
<updated>2013-04-19T19:45:00+00:00</updated>
<author>
<name>Ed Schouten</name>
<email>ed@FreeBSD.org</email>
</author>
<published>2013-04-19T19:45:00+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=7e659f9491705cacb49bd0154b1c23704f55ed0d'/>
<id>7e659f9491705cacb49bd0154b1c23704f55ed0d</id>
<content type='text'>
This compiler flag enforces that that people either mark variables
static or use an external declarations for the variable, similar to how
-Wmissing-prototypes works for functions.

Due to the fact that Yacc/Lex generate code that cannot trivially be
changed to not warn because of this (lots of yy* variables), add a
NO_WMISSING_VARIABLE_DECLARATIONS that can be used to turn off this
specific compiler warning.

Announced on:	toolchain@
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This compiler flag enforces that that people either mark variables
static or use an external declarations for the variable, similar to how
-Wmissing-prototypes works for functions.

Due to the fact that Yacc/Lex generate code that cannot trivially be
changed to not warn because of this (lots of yy* variables), add a
NO_WMISSING_VARIABLE_DECLARATIONS that can be used to turn off this
specific compiler warning.

Announced on:	toolchain@
</pre>
</div>
</content>
</entry>
<entry>
<title>Make definition match declaration</title>
<updated>2012-11-15T15:06:00+00:00</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2012-11-15T15:06:00+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=ac1e7ba236ae7e211a27a93e6d9c013b76da32c4'/>
<id>ac1e7ba236ae7e211a27a93e6d9c013b76da32c4</id>
<content type='text'>
Approved by:	cperciva
MFC after:	3 days
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Approved by:	cperciva
MFC after:	3 days
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix world after byacc import:</title>
<updated>2012-05-22T16:33:10+00:00</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2012-05-22T16:33:10+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=5e2a209a27a8b25d6fc3f36267af4b20eb92ad16'/>
<id>5e2a209a27a8b25d6fc3f36267af4b20eb92ad16</id>
<content type='text'>
- old yacc(1) use to magicially append stdlib.h, while new one don't
- new yacc(1) do declare yyparse by itself, fix redundant declaration of
  'yyparse'

Approved by:	des (mentor)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- old yacc(1) use to magicially append stdlib.h, while new one don't
- new yacc(1) do declare yyparse by itself, fix redundant declaration of
  'yyparse'

Approved by:	des (mentor)
</pre>
</div>
</content>
</entry>
<entry>
<title>Repair function when used with large scales</title>
<updated>2012-03-18T15:34:39+00:00</updated>
<author>
<name>Kevin Lo</name>
<email>kevlo@FreeBSD.org</email>
</author>
<published>2012-03-18T15:34:39+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=8e30a6b447ce0cea8d65b941496193cc6ca1d3c8'/>
<id>8e30a6b447ce0cea8d65b941496193cc6ca1d3c8</id>
<content type='text'>
Submitted by:	AIDA Shinra &lt;shinra at j10n dot org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Submitted by:	AIDA Shinra &lt;shinra at j10n dot org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fix an erroneous invocation of the editline.</title>
<updated>2012-03-15T01:43:44+00:00</updated>
<author>
<name>Kevin Lo</name>
<email>kevlo@FreeBSD.org</email>
</author>
<published>2012-03-15T01:43:44+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=741e1faf5c5c5f7699b65af53ddd717721769e17'/>
<id>741e1faf5c5c5f7699b65af53ddd717721769e17</id>
<content type='text'>
- Fix wrong scaling in the bc.library.
- Let length(0.000) conform to what gnu bc does.

PR:	bin/159227
Submitted by:	AIDA Shinra &lt;shinra at j10n dot org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Fix wrong scaling in the bc.library.
- Let length(0.000) conform to what gnu bc does.

PR:	bin/159227
Submitted by:	AIDA Shinra &lt;shinra at j10n dot org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove extra sentence, a leftover from r202845.</title>
<updated>2012-01-25T18:49:11+00:00</updated>
<author>
<name>Stefan Farfeleder</name>
<email>stefanf@FreeBSD.org</email>
</author>
<published>2012-01-25T18:49:11+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=07dbb387633186ee8350bf69e627492838f2d763'/>
<id>07dbb387633186ee8350bf69e627492838f2d763</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move most of the remaining USD/PSD/SMM papers into share/doc</title>
<updated>2010-12-04T10:11:20+00:00</updated>
<author>
<name>Ulrich Spörlein</name>
<email>uqs@FreeBSD.org</email>
</author>
<published>2010-12-04T10:11:20+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=cded07a8783dedbb0634ebde78764f935f26467d'/>
<id>cded07a8783dedbb0634ebde78764f935f26467d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some more warnings found by clang.</title>
<updated>2010-11-22T20:10:48+00:00</updated>
<author>
<name>Rebecca Cran</name>
<email>brucec@FreeBSD.org</email>
</author>
<published>2010-11-22T20:10:48+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=1161d4202c3c938b634bd14435ec9ba96755a5d2'/>
<id>1161d4202c3c938b634bd14435ec9ba96755a5d2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fix signal handling in bc/dc.  Now Ctrl-C terminates the execution.</title>
<updated>2010-06-06T11:36:08+00:00</updated>
<author>
<name>Gabor Kovesdan</name>
<email>gabor@FreeBSD.org</email>
</author>
<published>2010-06-06T11:36:08+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=85bf7ec797fb3549c13b8954683be136ba531f94'/>
<id>85bf7ec797fb3549c13b8954683be136ba531f94</id>
<content type='text'>
Requested by:	gk (via private mail)
Approved by:	delphij (mentor)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Requested by:	gk (via private mail)
Approved by:	delphij (mentor)
</pre>
</div>
</content>
</entry>
</feed>
