Age | Commit message (Collapse) | Author |
|
Replace ugly target macros with function calls (gmcgarry).
|
|
Remove function arg conversions from clocal().
|
|
|
|
the page already does this in detail, and this list just goes out of date.
problem spotted by Mark Lumsden
|
|
On the basis that:
- .depend is a bsd extension anyways, changing its semantics doesn't
affect posix compliance.
- it may allow regenerating broken .depend files without needing to
remove them.
approved by miod@, millert@, deraadt@.
|
|
|
|
|
|
|
|
|
|
- Change some function names to conform with Core Duo names.
- Correct hadnling of the functions that need non-zero Unit Mast specification.
- Some other random cleanup.
|
|
|
|
|
|
some changes in the mi parts that are not yet committed
|
|
Bring MIPS support fully up-to-date. Includes the following changes:
Support use of different assemblers.
Handle big-endian and little-endian code generation.
Start support for n32/n64
PIC code generation
Update to arguments-in-registers infrastructure.
Cleanup handling of branches.
Fix register coloring
Fix structure assignment.
Add longlong instructions
Remove unused functions.
Indentation fixes.
Tested on NetBSD/pmax (little endian).
|
|
|
|
|
|
discussed with jmc and otto
ok jmc
|
|
for (...) {
if (something) {
...
}
}
into
for (...) {
if (!something)
continue;
...
}
All other lines which were still too long have been splitted up.
No functional change (beside of if-statement).
|
|
|
|
current directory has subdirectories, there is no need to apply another
'D' line. Sticks at GNU cvs behaviour.
|
|
enough for OpenBSD's src/.
|
|
reapply umask as done with unmodified files. Sticks at GNU cvs behaviour.
|
|
and should therefore be handled.
|
|
++ and -- are not allowed in preprocessor expressions. Based on a
diff by Jan Kryl.
ok ragge@, otto@
|
|
Get rid of ifdef'd out code. Replace nodup() call with equivalent code
at its only invocation.
ok ragge@, otto@
|
|
|
|
|
|
to make them easier to find in source files.
|
|
Include string.h. ok ragge@, otto@
|
|
If field skipping is active, don't skip beyond the last non-blank
of a field, and use isblank() instead of isspace() -- POSIX states
that the longest string matching [[:blank:]]*[^[:blank:]]* makes
up a field.
Don't skip over trailing newlines.
Help, testing and ok millert@
|
|
|
|
cvs checkout src/sbin/swapon
cvs checkout -rHEAD src/sbin/swapon
If no date or revision has been supplied, swapon.8 won't be checked out,
but if a revision (even if it is HEAD) or a date (-D) has been supplied,
swapon.8 will be checked out due to modifications in Attic/ after it has
been removed from tree.
|
|
parse it due to base 10. Instead strtol() with base 8 must be used.
|
|
OK niallo@
|
|
newer revisions are available (for example multiple imports).
Reported by ckuethe@, OK niallo@
|
|
when we cannot find any suffix.
This allows Makefiles like:
.SUFFIXES: .in .sh
all: truc.sh
truc.sh.in:
echo "bonjour" >$@
.in:
sed -e 's/a/b/' <$< >$@
to work (before that, the empty suffix would not be tried, since truc.sh
matches the .sh suffix, even though there is NO transformation).
|
|
Having an `iParents' field is actually backwards, it's ways simpler to
store the pointer in the child, as an impliedsrc, and to set the variable
just in time along with all the rest in DoAllVar.
This is simpler, and it should allow us to call SuffFindDeps much later.
|
|
functions.
Restore a big more debug: if DEBUG(JOB), print commands (unexpanded).
|
|
|
|
Fix defalign(). ok otto@, gmcgarry
|
|
with help from jmc@ for wording and nroff magic
|
|
problem spotted by, and ok, jsing
|
|
|
|
> Work in progress: PIC code for i386.
> Still missing: ebx as argument to functions.
|
|
> Print string identifier in case OREG has a relocatable offset.
|
|
> kflag exists in both passes.
|
|
Lumsden
|
|
> Remove some unused prototypes.
|
|
line argument is wrong. Just display the message in the message area.
ok deraadt@ sobrado@ simon@ henning@
|
|
|