summaryrefslogtreecommitdiff
path: root/vmsfunctions.c
Commit message (Collapse)AuthorAgeFilesLines
* Enhance/fix VMS setting of program name, MAKE/MAKE_COMMAND variablesHartmut Becker2014-09-071-121/+86
| | | | | | | | * default.c, main.c, makeint.h, vmsfunctions.c: prefix argv[0] with "mcr " for MAKE/MAKE_COMMAND and set the program name to the image filename (without the .exe;version) * vmsfunctions.c: remove obsolete code * vmsify: use xmalloc
* Update copyright for changes in 2013.Paul Smith2013-05-171-1/+1
|
* Rename the make.h file to makeint.h for internal use only.Paul Smith2013-01-201-1/+1
|
* Simplify copyrights using ranges of years.Paul Smith2012-03-051-2/+1
| | | | | The new GNU Maintainer's Manual allows the use of year ranges in certain situations; take advantage of this simplification.
* Update copyright notices.Paul Smith2012-01-161-1/+1
|
* Update copyrights for 2010.Paul Smith2010-07-131-1/+1
|
* Add VMS enhancements from Hartmut Becker.Paul Smith2009-11-161-0/+5
|
* Update copyright years.Paul Smith2009-10-251-1/+1
|
* - Add xcalloc() and call itPaul Smith2009-09-161-4/+2
| | | | | | | | | - Fix memory errors found by valgrind - Remove multi_glob() and empower parse_file_seq() to do its job: the goal here is to remove the confusing reverse/re-reverse we do on the file lists: needed for future fixes. - Add a prefix arg to parse_file_seq() - Make concat() variadic so it can take arbitrary #'s of strings
* - Fix Savannah bug #18124Paul Smith2009-06-091-1/+1
| | | | | | | - Fix Savannah bug #17521 - Fix Savannah bug #16401 - Fix Savannah bug #16469 - Fix Savannah bug #16473
* * Update to GPLv3Paul Smith2007-07-041-5/+5
| | | | | * Update copyright to 2007 * Fix download URL for translation files (thanks to Thiemo Seufer)
* Fix Savannah bug #19656: rationalize our use of case-insensitive stringPaul Smith2007-05-091-12/+0
| | | | | | | comparison functions to always use POSIX strcasecmp(). For non-POSIX systems that use other functions (strcmpi or stricmp) use a macro to alias strcasecmp to those. If we can't find any of them (VMS, plus whatever UNIX doesn't have them) then define our own version in misc.c.
* Another round of cleanups:Paul Smith2006-04-091-1/+1
| | | | | | | | - Add more warnings. - Rename variables that mask out-scope vars with the same name. - Remove all casts of return values from xmalloc, xrealloc, and alloca. - Remove casts of the first argument to xrealloc. - Convert all bcopy/bzero/bcmp invocations to use memcp/memmove/memset/memcmp.
* Last of the copyright updates.Paul Smith2006-02-111-2/+2
|
* Update copyright and license notices on all files.Paul Smith2006-02-111-1/+16
| | | | Added new file strcache.c to various non-UNIX makefiles and build scripts.
* Various changes getting ready for the release of 3.81.Paul Smith2006-01-041-0/+3
| | | | | | - Updates to make.texi and make.1 and other documentation - Some VMS patches - Fix minor bugs reported on the mailing list and from Debian.
* Fix problems with losing tokens in the jobserver, reported by GrantPaul Smith2005-05-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Taylor. There are two forms of this: first, it was possible to lose tokens when using -j and -l at the same time, because waiting jobs were not checked when determining whether any jobs were outstanding. Second, if you had an exported recursive variable that contained a $(shell ...) function there is a possibility to lose tokens, since a token was taken but the child list was not updated until after the shell function was complete. To resolve this I introduced a new variable that counted the number of tokens we have obtained, rather than checking whether there were any children on the list. I also added some sanity checks to make sure we weren't writing back too many or not enough tokens. And, the master make will drain the token pipe before exiting and compare the count of tokens at the end to what was written there at the beginning. Also: * Ensure a bug in the environment (missing "=") doesn't cause make to core. * Rename the .DEFAULT_TARGET variable to .DEFAULT_GOAL, to match the terminology in the documentation and other variables like MAKECMDGOALS. * Add documentation of the .DEFAULT_GOAL special variable. Still need to document the secondary expansion stuff...
* Convert the source code to use ANSI C style function definitions andPaul Smith2002-10-141-16/+7
| | | | | | | | enable the automake ansi2knr capability. Right now this doesn't quite build using a K&R compiler because of a problem with the loadavg test program, but the rest of the code works. I'm asking the automake list about this problem.
* * Updates for VMS, Windows, and DOS ports.Paul Smith2000-02-051-20/+2
| | | | * Clean up some warnings.
* * More fixes to VMS by Hartmut Becker.Paul Smith2000-01-221-1/+1
|
* * Merge VMS patches by Hartmut Becker.Paul Smith2000-01-221-68/+70
|
* * Add new debugging output level selection feature.Paul Smith1999-11-221-6/+4
|
* * Fix PR/1394.Paul Smith1999-10-151-2/+2
| | | | | * Apply changes from Paul Eggert. * Many other cleanups (index/rindex --> strchr/strrchr, etc.)
* GNU make release 3.77.Paul Smith1998-07-301-107/+151
|
* Thu Jul 25 19:53:31 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>Roland McGrath1996-07-261-0/+1
| | | | * vmsfunctions.c (vms_stat): `sys$dassgn (DevChan);' added by kkaempf.
* Tue Mar 19 20:21:34 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>Roland McGrath1996-03-201-0/+234
Merged VMS port from Klaus Kaempf <kkaempf@didymus.rmi.de>. * make.h (PARAMS): New macro. * config.h-vms: New file. * makefile.com: New file. * makefile.vms: New file. * readme.vms: New file. * vmsdir.h: New file. * vmsfunctions.c: New file. * vmsify.c: New file. * file.h: Renamed to filedef.h to avoid conflict with VMS system hdr. * ar.c: Added prototypes and changes for VMS. * commands.c: Likewise. * commands.h: Likewise. * default.c: Likewise. * dep.h: Likewise. * dir.c: Likewise. * expand.c: Likewise. * file.c: Likewise. * function.c: Likewise. * implicit.c: Likewise. * job.c: Likewise. * job.h: Likewise. * main.c: Likewise. * make.h: Likewise. * misc.c: Likewise. * read.c: Likewise. * remake.c: Likewise. * remote-stub.c: Likewise. * rule.c: Likewise. * rule.h: Likewise. * variable.c: Likewise. * variable.h: Likewise. * vpath.c: Likewise. * compatMakefile (srcs): Rename file.h to filedef.h.