<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/usr.bin/make/parse.h, branch release/7.1.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F7.1.0_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F7.1.0_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2008-12-31T22:57:14Z</updated>
<entry>
<title>Copy releng/7.1 to release/7.1.0 for the 7.1-RELEASE.</title>
<updated>2008-12-31T22:57:14Z</updated>
<author>
<name>Ken Smith</name>
<email>kensmith@FreeBSD.org</email>
</author>
<published>2008-12-31T22:57:14Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=8d4eb975d2e49f56d057a19aac09bcb92b3e71f7'/>
<id>urn:sha1:8d4eb975d2e49f56d057a19aac09bcb92b3e71f7</id>
<content type='text'>
Approved by:	re (implicit)

This commit was manufactured to restore the state of the 7.1-RELEASE image.
</content>
</entry>
<entry>
<title>Move the Boolean and ReturnStatus stuff from sprite.h to util.h and</title>
<updated>2005-05-13T08:53:00Z</updated>
<author>
<name>Hartmut Brandt</name>
<email>harti@FreeBSD.org</email>
</author>
<published>2005-05-13T08:53:00Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=38147431602891e0d069d4f8bb9cb2690314cc20'/>
<id>urn:sha1:38147431602891e0d069d4f8bb9cb2690314cc20</id>
<content type='text'>
get rid of sprite.h.

Obtained from:	DragonFlyBSD
</content>
</entry>
<entry>
<title>Move the definitions of the OP_* constants from make.h into GNode.h</title>
<updated>2005-05-10T14:27:04Z</updated>
<author>
<name>Hartmut Brandt</name>
<email>harti@FreeBSD.org</email>
</author>
<published>2005-05-10T14:27:04Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=4aa6beaf6030be0d763801191627ad39882e161e'/>
<id>urn:sha1:4aa6beaf6030be0d763801191627ad39882e161e</id>
<content type='text'>
where they actually belong to. Move the definitions of the strings
for special macros like "$*" from make.h to parse.h - they're used
only in the parser.

Submitted by:	Max Okumoto &lt;okumoto@ucsd.edu&gt; (7.211)
</content>
</entry>
<entry>
<title>Make shellPath and shellName static - they're used in job.c only.</title>
<updated>2005-05-10T14:06:19Z</updated>
<author>
<name>Hartmut Brandt</name>
<email>harti@FreeBSD.org</email>
</author>
<published>2005-05-10T14:06:19Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=9a910e11d167b41985e5be40680c6ce758b1acd9'/>
<id>urn:sha1:9a910e11d167b41985e5be40680c6ce758b1acd9</id>
<content type='text'>
Move definition of parsing error levels from make.h into parse.h.

Patches:	7.202,7.203
Submitted by:	Max Okumoto &lt;okumoto@ucsd.edu&gt;
</content>
</entry>
<entry>
<title>Rework the directive parsing code. Instead of using a lot of strcmp()s</title>
<updated>2005-04-11T07:20:10Z</updated>
<author>
<name>Hartmut Brandt</name>
<email>harti@FreeBSD.org</email>
</author>
<published>2005-04-11T07:20:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=f520690c2c6018ff252b661d6c7e11886d6d22b6'/>
<id>urn:sha1:f520690c2c6018ff252b661d6c7e11886d6d22b6</id>
<content type='text'>
on every line that starts with a dot use a minimal perfect hash
function and a single strcmp() on the first word after the dot
to find out whether it is really a directive call and, if yes, which
one. Then directly dispatch to a handler function for that directive
(or fall through to the dependency handling code). This makes the
directive parse a little bit more strict about the syntax: the directive
word must be followed by a character that is not alphanumerical and not
an underline (making .undefFOO illegal); .endif and .else can only be
followed by comments.
</content>
</entry>
<entry>
<title>Make the structure for handling the input stack local to the parse</title>
<updated>2005-03-30T15:18:58Z</updated>
<author>
<name>Hartmut Brandt</name>
<email>harti@FreeBSD.org</email>
</author>
<published>2005-03-30T15:18:58Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=ba467ce430c7b108c7f83cd8413a134207451c06'/>
<id>urn:sha1:ba467ce430c7b108c7f83cd8413a134207451c06</id>
<content type='text'>
module. The only module accessing it (the current line number) was the
condition module, so pass the current line number as a function argument.
Centralize the pushing of new input sources into one function
ParsePushInput() and rename the function handling the popping from ParseEOF()
to ParsePopInput(). Make the entire thing a little bit clearer, by holding
the current input source in the top element of the stack instead of
using extra variables for this. Use a type-safe intrusive list for the
input stack.
</content>
</entry>
<entry>
<title>Clean up include files and file including. Split nonints.h into pieces</title>
<updated>2005-02-01T10:50:37Z</updated>
<author>
<name>Hartmut Brandt</name>
<email>harti@FreeBSD.org</email>
</author>
<published>2005-02-01T10:50:37Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=7a2029bac2130f8d12b0c3bfa5fca898e12e29a9'/>
<id>urn:sha1:7a2029bac2130f8d12b0c3bfa5fca898e12e29a9</id>
<content type='text'>
that get included just where they are needed. All headers include the
headers that they need to compile (just with an empty .c file). Sort
includes alphabetically where apropriate and fix some duplicate commenting
for struct Job, struct GNode and struct Shell by removing one version and
inlining the comments into the structure declaration (the comments have been
somewhat outdated).

This patch does not contain functional changes (checked with md5).

Submitted by:	Max Okumoto &lt;okumoto@ucsd.edu&gt;
</content>
</entry>
</feed>
