summaryrefslogtreecommitdiff
path: root/dir.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix VMS implicit rules and UNIX paths.John Malmberg2014-10-201-57/+142
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes VMS implicit rules and UNIX style pathname handling. It also fixes some of the VMS style pathname handling, more work there will be needed later. TODO: There are other case insensitive platforms besides VMS. We need to find out why there is extra VMS code for this. This indicates either the extra VMS code is not needed, or the case insensitive support may not be complete on the other case insensitive platforms. * default.c: Add missing definitions to default_suffix_rules[] and default_variables[]. TODO: As it is important that VMS DCL mode definitions must always be a superset of UNIX definitions, a better way of maintaining the VMS DCL mode definitions should be devised. * dir.c (downcase_inplace): Add a reentrant downcase() routine. Add future support for VMS 8.2+ _USE_STD_STAT macro which will disable a lot of VMS specific code from compiling. (dir_file_exists_p): vmsify filename only if directory name has VMS directory delimiters. (file_exists_p): Handle both VMS and UNIX directories. (file_impossible): Handle both VMS and Unix directories. Track whether a VMS format path is needed for the return value. * file.c (lookup_file): Check if vmsify is needed; handle UNIX paths. * implicit.c (pattern_search): Enable UNIX paths. * read.c (parse_file_seq): Enable UNIX paths. * remake.c (f_mtime): Fix gpath_search call for VMS paths. * rule.c (count_implicit_rule): Enable UNIX paths, Fix VMS paths. * vpath.c (selective_vpath_search): Enable UNIX paths.
* Update Copyright statements for 2014.Paul Smith2014-09-301-1/+1
|
* * various: Assume ISO C89-compliant free() implementation.Paul Smith2014-07-071-8/+1
|
* [SV 40361] Don't use vsnprintf(), which is an ISO C99 function.Paul Smith2013-11-231-1/+1
| | | | | | | | | | * output.c (error, fatal, message): Take an extra argument specifying how many bytes are used by the formatted arguments. (get_buffer): New function that allocates the requested buffer size. Remove msc_vsnprintf(), vfmtconcat(), and fmtconcat() as unneeded. * makeint.h: Declare various helper macros for generating output. * *.c: Change all error(), fatal(), message() calls to use the macros, or pass the extra length argument directly.
* Add VMS port updates from Hartmut Becker.Paul Smith2013-09-221-0/+1
|
* [Bug #39158] Source cleanups suggested by cppcheck utility.Paul Smith2013-07-211-27/+23
|
* Create a character map to use for locating stop-points in strings.Paul Smith2013-06-221-4/+5
| | | | | | | | | In various places we were passing flags and characters to compare, then using complex conditionals to see where to stop in string searches. Performance numbers reveal that we were spending as much as 23% of our processing time in these functions, most of it in the comparison lines. Instead create a character map and use a single bitwise comparison to determine if this is any one of the stop characters.
* Update source file format: remove TABs, use GNU coding styles.Paul Smith2013-05-171-223/+222
|
* Update copyright for changes in 2013.Paul Smith2013-05-171-1/+1
|
* Fix Savannah bug #37065 with $(wildcard foo/*/.) returning non-directories.Eli Zaretskii2013-04-281-1/+21
| | | | | | dir.c (local_stat) [WINDOWS32]: Use the wrapper on MS-Windows. If the argument ends in "dir/.", make sure the parent dir exists and is indeed a directory. Fixes Savannah bug #37065.
* Cleanup some source and fix autoconf warnings.Paul Smith2013-04-161-2/+0
|
* 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-3/+1
| | | | | The new GNU Maintainer's Manual allows the use of year ranges in certain situations; take advantage of this simplification.
* Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines.Paul Smith2012-03-041-6/+6
| | | | Fixes Savannah bug #34530.
* Update copyright notices.Paul Smith2012-01-161-3/+3
|
* Update copyrights for 2010.Paul Smith2010-07-131-2/+2
|
* Fixups for warnings on Windows (esp 64bit).Paul Smith2010-07-051-3/+0
|
* - Rename strieq() to patheq() for clarity.Paul Smith2010-07-011-7/+4
| | | | - Convert xmalloc/memset pairs to xcalloc.
* Add VMS enhancements from Hartmut Becker.Paul Smith2009-11-161-5/+18
|
* Update copyright years.Paul Smith2009-10-251-2/+2
|
* Some Windows fixes to allow builds to succeed.Paul Smith2007-10-101-14/+17
|
* * Update to GPLv3Paul Smith2007-07-041-4/+4
| | | | | * Update copyright to 2007 * Fix download URL for translation files (thanks to Thiemo Seufer)
* This is a major update, which switches virtually every allocated-but-not-freedPaul Smith2007-03-201-12/+10
| | | | | | | | | | | | | | | string into the strcache. As a side-effect, many more structure members and function arguments can/should be declared const. As mentioned in the changelog, unfortunately measurement shows that this change does not yet reduce memory. The problem is with secondary expansion: because of this we store all the prerequisites in the string cache twice. First we store the prerequisite string after initial expansion but before secondary expansion, then we store each individual file after secondary expansion and expand_deps(). I plan to change expand_deps() to be callable in either context (eval or snap_deps) then have non-second-expansion targets call expand_deps() during eval, so that we only need to store that dependency list once.
* Fix from Eli for incorrect value of $(MAKE) on Cygwin.Paul Smith2006-11-181-108/+112
| | | | | | | | | | | | | | | | A few changes from char* to void* where appropriate, and removing of unnecessary casts. Much more work on const-ifying the codebase. This round involves some code changes to make it correct. NOTE!! There will almost certainly be problems on the non-POSIX ports that will need to be addressed after the const changes are finished: they will need to be const-ified properly and there may need to be some changes to allocate memory, etc. as well. The next (last?) big push for this, still to come, is const-ifying the filenames in struct file, struct dep, etc. This will allow us to store file names in the string cache and finally resolve Savannah bug #15182 (make uses too much memory), among other advantages.
* Another round of cleanups:Paul Smith2006-04-091-15/+15
| | | | | | | | - 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.
* Code cleanup: Remove all references to PARAMS() & ansi2knr.Paul Smith2006-04-071-6/+6
|
* Last of the copyright updates.Paul Smith2006-02-111-1/+2
|
* Update copyright and license notices on all files.Paul Smith2006-02-111-25/+29
| | | | Added new file strcache.c to various non-UNIX makefiles and build scripts.
* Fix Savannah bugs # 15341, 15534, and 15533.Paul Smith2006-02-061-6/+17
| | | | | Rewrite large chunks of the "Commands" section of the manual to better describe then backslash-newline handling, the SHELL variable, etc.
* Fix a bug where a variable could be used without being initialized in W32.Paul Smith2006-02-011-6/+6
|
* Various changes getting ready for the release of 3.81.Paul Smith2006-01-041-0/+4
| | | | | | - Updates to make.texi and make.1 and other documentation - Some VMS patches - Fix minor bugs reported on the mailing list and from Debian.
* Fixes for some Windows/MSC compile issues.Paul Smith2005-06-271-3/+3
| | | | wget command line option seems to have changed?
* * New feature: -L optionPaul Smith2005-02-281-8/+4
| | | | | | | | * New function: $(info ...) * Disallow $(eval ...) to create prereq relationships inside command scripts (caused core dumps) * Try to allow more tests to succeed in Windows/DOS by sanitizing CRLF and \ * Various bug fixes and code cleanups (see the ChangeLog entry)
* Flush stdout after printing directory info.Paul Smith2005-02-101-2/+2
| | | | | | | | Fix references to MINGW #define constants. Remove WINDOWS32 ifdef from sub_proc.h. Only add variables to the command line for recursion once. New features in run_make_test: #PWD# and #MAKEPATH# replacements. Test the multi-variable fix in the recursion regression test.
* Added MINGW32 changes.Paul Smith2003-11-031-0/+6
| | | | | | | | | | This commits a number of changes from Earnie Boyd that allows GNU make to build for MINGW32 systems. Only missing from this commit are the changes to configure.in etc.; I'm waiting for Earnie to sign papers for those new files. Also not here is any README.mingw32 etc. which would explain how to use this port.
* Minor updates for Windows and OS/2.Paul Smith2003-07-191-1/+3
|
* - Fix bug #1405: allow multiple pattern-specific variables to match a target.Paul Smith2003-05-021-3/+3
| | | | | - Fix some uncleanliness about the implementation of patterns-specific vars. - Some enhancements to the OS/2 port.
* Add support for OS/2, contributed by Andreas Buening <andreas.buening@nexgo.de>Paul Smith2003-03-241-0/+4
| | | | Also a small patch from Hartmut Becker <Hartmut.Becker@compaq.com> for VMS.
* Portability fix for glob.h building in FreeBSD ports system.Paul Smith2003-01-301-4/+11
| | | | | | | | | Implement a fix for bug # 2169: too many OSs, even major OSs like Solaris, don't properly implement SA_RESTART: important system calls like stat() can still fail when SA_RESTART is set. So, forget the BROKEN_RESTART config check and get rid of atomic_stat() and atomic_readdir(), and implement permanent wrappers for EINTR checking on various system calls (stat(), fstat(), opendir(), and readdir() so far).
* Convert the source code to use ANSI C style function definitions andPaul Smith2002-10-141-60/+29
| | | | | | | | 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.
* Fix K&R-isms found on SunOS 4.1.4 builds.Paul Smith2002-10-041-9/+21
|
* Update to a new version of automake and gettext.Paul Smith2002-08-101-9/+9
| | | | | | | | | | Invent a new macro HAVE_DOS_PATHS and change various instances of: #if defined(WINDOWS) || defined(__MSDOS__) to use the new macro instead. This should help make the OS/2 port cleaner, as well. Invent a cvs-clean maintainer target that tries to get the workspace back to the state it was in after a CVS checkout. New language.
* Incorporate some VMS fixes.Paul Smith2002-08-081-1/+1
| | | | | | | Add -B option docs. Add .VARIABLES variable. Add a few new tests. Add a new translation: Swedish
* Install Greg McGary's patches to port the id-utils hashing functions toPaul Smith2002-07-111-255/+330
| | | | | | | GNU make. Also he provides some other performance fixups after doing some profiling of make on large makefiles. Modify the test suite to allow the use of Valgrind to find memory problems.
* Fix for EINTR problems when using jobserver.Paul Smith2001-06-011-5/+5
| | | | | | New translation files. Fix for @+ inside define macros being applied too widely. Various other bug fixes.
* * Various fixes; see the ChangeLog.Paul Smith2000-07-301-1/+2
|
* * Lots of bug fixes and cleanup; new i18n files, etc.Paul Smith2000-06-071-8/+18
|
* * Fix for dir.c from Andreas Schwab.filedef-cleanup-basePaul Smith2000-02-071-5/+22
| | | | | | * Fix += target-specific variables: if your direct parent doesn't have a setting for the variable but his parent does, you'll get recursive expansion errors.
* * Updates for VMS, Windows, and DOS ports.Paul Smith2000-02-051-1/+1
| | | | * Clean up some warnings.
* * Merge VMS patches by Hartmut Becker.Paul Smith2000-01-221-30/+45
|