Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Don't do anything special to prevent access to created files - honour | bde | 1998-09-05 | 1 | -1/+3 | |
| | | | | the default umask. World unreadable files broke installing over nfs. | |||||
* | Keep build-tools objects separate from `all' objects so that my | bde | 1998-09-02 | 1 | -3/+6 | |
| | | | | cross-builds work. | |||||
* | Split lines into one subdir per line. | gpalmer | 1998-08-30 | 1 | -5/+39 | |
| | ||||||
* | Make the build tools static to avoid trying to use the shared loader | jb | 1998-08-20 | 1 | -2/+2 | |
| | | | | | | | | | before it is installed. This upsets Bruce because the host boostrap build forces tools to be static anyway. He says I'm abusing NOTOOLS in src/Makefile by using it to do a aout->elf transition build. One day I'll find a place to install host tools like these to allow a true cross build. | |||||
* | Build the makedefs program static to avoid trying to use the shared | jb | 1998-08-15 | 1 | -1/+1 | |
| | | | | loader before it has been installed in an aout to elf transition build. | |||||
* | Build the setup program static so that we don't try to use the shared | jb | 1998-08-15 | 1 | -1/+1 | |
| | | | | loader before it has been installed in a transition build from aout to elf. | |||||
* | Revert the last commit, it made the Bruce filter flip: | phk | 1998-08-09 | 1 | -18/+13 | |
| | | | | | | | | | | | | | | | | PR7402 was even less suitable for committing almost verbatim than at first appearance. Rev.1.9 of primes.c has at least the following defects. - no update for man page. - no update for usage string. - blowing away of a previous commit to change EOF to -1 in getopt() test. - blowing away of a previous commit to fix printf format errors. - new printf format errors. - one gratuitous ANSIism. - two style bugs. - ... and a partition in a pear tree. PR: 7402 | |||||
* | Games primes and factor don't understand hexadecimals. | phk | 1998-08-07 | 1 | -13/+18 | |
| | | | | | | | | This would make these `games' somewhat useful tools. PR: 7402 Reviewed by: phk Submitted by: Timo J. Rinne <tri@iki.fi> | |||||
* | Wrong filename for dictionary in manpage. | phk | 1998-08-04 | 1 | -1/+1 | |
| | | | | | | PR: 7467 Reviewed by: phk Submitted by: Ben Walter <bwalter@itachi.swcp.com> | |||||
* | Remove comment relevant to 16bit integers only. | imp | 1998-07-26 | 1 | -2/+0 | |
| | ||||||
* | o Fix Y2K buffer overflow. | imp | 1998-07-26 | 1 | -4/+2 | |
| | | | | o Fix zero filling bug in all years % 100 < 10. | |||||
* | Y2K fix. Fix by jsm28@cam.ac.uk via OpenBSD | imp | 1998-07-26 | 1 | -1/+1 | |
| | ||||||
* | Fix discrepancy between sources and manual page for the 'c' command. | jkoshy | 1998-07-20 | 1 | -11/+1 | |
| | | | | PR: docs/6003 | |||||
* | Buffer overflow. | phk | 1998-07-09 | 1 | -1/+1 | |
| | | | | | | PR: 7195 Reviewed by: phk Submitted by: Anders Thulin <Anders.x.thulin@telia.se> | |||||
* | Use the installed versions of caesar and strfile. They are now | bde | 1998-07-07 | 1 | -19/+3 | |
| | | | | | | bootstrapped by `make world', and the installed versions are just as likely to work as the installed version of cc if `make' is run directly. | |||||
* | Added a `build-tools' target for internal tools. | bde | 1998-07-07 | 1 | -1/+3 | |
| | | | | Honor LDFLAGS for building internal tools. | |||||
* | Added a `build-tools' target for internal tools. | bde | 1998-07-07 | 1 | -5/+7 | |
| | | | | | | | | | Honor LDFLAGS for building internal tools. Always build intermediate object files explicitly so that binaries don't change when they are rebuilt. Fixed some style bugs. | |||||
* | Added a `build-tools' target for internal tools. | bde | 1998-07-07 | 1 | -0/+5 | |
| | | | | | | Restored a variant of explicit rule for `setup', with modifications to always build setup.o so that `setup' doesn't change every time it is rebuilt because it has a temporary file name in it. | |||||
* | Fixed printf format errors. | bde | 1998-06-30 | 8 | -21/+22 | |
| | ||||||
* | Fixed (1970's style) missing declaration of a function that doesn't | bde | 1998-06-30 | 1 | -0/+2 | |
| | | | | return int. | |||||
* | Fixed printf format errors. Didn't fix gross homemade varargs function | bde | 1998-06-30 | 1 | -1/+1 | |
| | | | | | Write(). Pointers are passed to it as longs, but it expects them to be passed as ints. The alpha non-fixes made this worse. | |||||
* | Fixed the type of yyerror() (1970's style). | bde | 1998-06-30 | 1 | -0/+1 | |
| | ||||||
* | Cast pointers to longs, not ints. | jb | 1998-05-09 | 1 | -3/+3 | |
| | | | | | Hopefully that's the last of the 64-bit cleaning of src/games. That is, without adding -Wall to the compiler flags. That's not a pretty sight. | |||||
* | Change long variable to time_t where it is passed to time() by reference. | jb | 1998-05-09 | 1 | -1/+1 | |
| | ||||||
* | Add #include string.h to get prototypes. | jb | 1998-05-09 | 2 | -0/+2 | |
| | ||||||
* | Add #include string.h to get prototypes and change variables from long | jb | 1998-05-09 | 2 | -3/+5 | |
| | | | | to time_t where they are passed to time() and localtime() by reference. | |||||
* | Remove bogus time() prototype and let the one in time.h rule. | jb | 1998-05-09 | 1 | -1/+0 | |
| | ||||||
* | Add #include string.h to get prototypes. | jb | 1998-05-09 | 3 | -0/+3 | |
| | ||||||
* | Cast pointers to long instead of int. | jb | 1998-05-09 | 4 | -9/+9 | |
| | ||||||
* | Add #include string.h to get prototypes. | jb | 1998-05-09 | 3 | -0/+3 | |
| | ||||||
* | Change casts of function pointers from int to long. This makes the | jb | 1998-05-09 | 6 | -7/+7 | |
| | | | | | | compiler warnings go away, but the compiler is throwing away 32-bits as the long value is silently truncated to an int on alpha. But the program works, so that must not matter. | |||||
* | Add #include string.h to get prototypes. | jb | 1998-05-09 | 3 | -0/+3 | |
| | ||||||
* | Change long variable to time_t because it passed to time() and ctime(). | jb | 1998-05-09 | 1 | -1/+1 | |
| | ||||||
* | Change long variables to time_t if they are passed to time() or localtime() | jb | 1998-05-09 | 1 | -3/+3 | |
| | | | | be reference. | |||||
* | Add #include string.h to get prototypes. | jb | 1998-05-09 | 2 | -0/+2 | |
| | ||||||
* | Change variable types from long to time_t if they are passed to time() | jb | 1998-05-09 | 4 | -6/+7 | |
| | | | | by reference. | |||||
* | Remove #define NULL because stdio.h does that. | jb | 1998-05-09 | 1 | -1/+0 | |
| | ||||||
* | Add #include string.h to get prototypes. | jb | 1998-05-09 | 1 | -0/+1 | |
| | ||||||
* | Add #include string.h to get prototypes. | jb | 1998-05-09 | 2 | -0/+2 | |
| | ||||||
* | tv_sec in timeval is a long, and a time_t is not necessarily a long. | jb | 1998-05-09 | 1 | -2/+4 | |
| | ||||||
* | Add #include string.h to get prototypes. | jb | 1998-05-09 | 3 | -0/+3 | |
| | ||||||
* | Add 'extern' to arrays that are declared and initialised elsewhere. | jb | 1998-05-09 | 1 | -5/+5 | |
| | ||||||
* | Add 'extern' to arrays that are declared and initialised in other files. | jb | 1998-05-09 | 1 | -12/+12 | |
| | ||||||
* | Add 'extern' to arrays that are declared and initialised in other files. | jb | 1998-05-09 | 1 | -2/+2 | |
| | | | | Who writes code like this?! | |||||
* | Add #include stdlib.h to get prototypes. | jb | 1998-05-09 | 1 | -0/+1 | |
| | ||||||
* | Change prototype for addbuf to make it compatible with tputs now that | jb | 1998-05-09 | 1 | -2/+3 | |
| | | | | there is a prototype to check it against. | |||||
* | Add #include string.h, stdlib.h and termcap.h to get prototypes. | jb | 1998-05-09 | 1 | -1/+4 | |
| | | | | | Change prototype for addbuf to make it compatible with tputs now that there is a prototype to check it against. | |||||
* | Add #include string to get prototypes. | jb | 1998-05-09 | 1 | -0/+1 | |
| | ||||||
* | Add 'extern' to those arrays that are declared and initialised | jb | 1998-05-09 | 1 | -3/+3 | |
| | | | | in other files. | |||||
* | Add #include string.h to get prototypes. | jb | 1998-05-09 | 6 | -0/+6 | |
| |