summaryrefslogtreecommitdiff
path: root/read.c
AgeCommit message (Collapse)AuthorFilesLines
2003-01-30Portability fix for glob.h building in FreeBSD ports system.Paul Smith1-4/+10
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).
2002-10-25Fix eval bugs 1516 and 1517.Paul Smith1-17/+38
2002-10-14Convert the source code to use ANSI C style function definitions andPaul Smith1-75/+27
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.
2002-10-13Fix bug#1379: don't use alloca() where it could overrun the stack size.Paul Smith1-9/+22
Implemented enhancement #1391: allow "export" in target-specific variable definitions. Change the Info name of the "Automatic" node to "Automatic Variables". Add text clarifying the scope of automatic variables to that section.
2002-10-05Fix core dump on malformed variable line (Debian bug #81656)Paul Smith1-10/+13
Allow SysV-style variable references to use {} in addition to (). Add variable.h to the POTFILES.in since it has a translatable string.
2002-10-04Fix K&R-isms found on SunOS 4.1.4 builds.Paul Smith1-4/+8
2002-09-23Fix a bug handling target/prerequisite names containing commentPaul Smith1-7/+1
characters.
2002-09-18Fix a bug exporting/unexporting multiple variables in one command.Paul Smith1-25/+20
Update the text about reporting bugs.
2002-09-17Fix bug #940 (from the Savannah bug tracker): make sure that target-Paul Smith1-2/+10
specific variables work correctly in conjunction with double-colon targets.
2002-09-10Add support for broken SA_RESTART on PTX.Paul Smith1-6/+37
Fix bug #103: allow ifdef, export, and unexport to expand their arguments.
2002-08-10Update to a new version of automake and gettext.Paul Smith1-20/+20
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.
2002-08-08Incorporate some VMS fixes.Paul Smith1-2/+9
Add -B option docs. Add .VARIABLES variable. Add a few new tests. Add a new translation: Swedish
2002-07-11Install Greg McGary's patches to port the id-utils hashing functions toPaul Smith1-77/+113
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.
2002-07-10Implement SysV-style $$@ support. I looked at E.Parmelan's patch butPaul Smith1-7/+122
decided to implement this a different way, and didn't use it.
2002-07-09Documentation and tests for order-only prerequisites.Paul Smith1-2/+9
Add a new test suite for automatic variables.
2002-07-08Various cleanups reported by people using the alpha release.Paul Smith1-4/+29
Incorporate "order-only" prerequisites patch. Wrote a test for it. The test shows what might be a bug in the code; I need to look at it more closely (anyway it doesn't behave as I expected). Also I haven't done the docs yet.
2002-07-08Major updates in preparation for 3.80.Paul Smith1-579/+739
New version of the manual, put into the doc subdir. Enhancements: $(eval ...) and $(value ...) functions, various bug fixes, etc. See the ChangeLog. More to come.
2001-06-01Fix for EINTR problems when using jobserver.Paul Smith1-2/+5
New translation files. Fix for @+ inside define macros being applied too widely. Various other bug fixes.
2000-11-17* Fix FAT handling on Windows to match the DJGPP port's FAT handling.Paul Smith1-22/+14
* Fix a potential hole in readline if lines end in ^M (CRLF).
2000-06-22* Fix PR/1709.Paul Smith1-1/+10
2000-06-07* Lots of bug fixes and cleanup; new i18n files, etc.Paul Smith1-16/+16
2000-04-05* Some final cleanups, and release 3.79.3.79Paul Smith1-2/+1
2000-03-27* Handle case of empty static pattern rule prerequisites.Paul Smith1-6/+19
* Fix linenumbers in error messages for rule definitions.
2000-02-09* Fix backslash-escape in targets.3.78.91Paul Smith1-1/+1
* Release 3.78.91.
2000-02-05* Fix PR/1407.Paul Smith1-5/+6
* Keep filename/lineno information for variables, for debugging.
1999-11-27* Update debugging to use string flags instead of integers.Paul Smith1-1/+1
1999-11-22* Add new debugging output level selection feature.Paul Smith1-3/+3
1999-11-17* Many cleanups and bugfixes.Paul Smith1-4/+7
* New handling of += in target-specific variables.
1999-10-15* Fix PR/1394.Paul Smith1-29/+31
* Apply changes from Paul Eggert. * Many other cleanups (index/rindex --> strchr/strrchr, etc.)
1999-09-03* Removed a memory stomp (reading freed memory).Paul Smith1-26/+41
* Fixed some infinite recursion on rebuilt makefiles bugs.
1999-09-02* A few W32 fixes for backslash support.Paul Smith1-2/+4
1999-08-01* Applied some DOS updates.Paul Smith1-8/+6
* Started reworking the jobserver algorithm; not complete yet.
1999-07-28* Add gettext macros to start i18n support.Paul Smith1-42/+40
1999-07-21* Add configure option to enable dmalloc library.Paul Smith1-11/+10
* Various code cleanups.
1999-07-20* Fix memory leaks, fd leaks, and some long-standing bugs recognizing whenPaul Smith1-2/+2
targets need to have their modtimes rechecked (-n, etc.)
1999-07-16* Fix some memory and file descriptor leaks.Paul Smith1-0/+1
1999-07-16* Various bug fixes.Paul Smith1-2/+8
1999-06-14* Various bug fixes.Paul Smith1-34/+40
1999-03-31* Ignore CR in CRLF line terminators for compatibility with DOSsyPaul Smith1-0/+11
makefiles.
1999-03-05* Update FSF address info in copyright notices.Paul Smith1-1/+2
* Update maintainers build process; remove GNUmakefile. Require builders to run automake && autoreconf by hand. * Use AC_SUBST_FILE to get the maintMakefile included, rather than GNU make's include directive, which conflicts with automake 1.4's include directive.
1999-02-22* New feature: .LIBPATTERNS controls the way -lfoo dependencies are expanded.Paul Smith1-9/+3
* A few tweaks to the system glob test, after trying it on a system where it's true. * Installed patches to archive handling for AIX 4.3 big archives. * Fix a memory stomp in target-specific variables. * Fix a memory leak in foreach functions.
1999-02-19* Updates for automake 1.4 and autoconf 2.13Paul Smith1-12/+7
* Check for a libc version of GNU glob and, if found, don't use the local glob headers. * Fix a bug in OpenVMS archive handling. * Fix a bug in VMS siglist processing.
1998-10-13Ignore non-empty lines which become empty after variable expansion.Paul Smith1-13/+20
Don't choke on invalid pattern rules if we fail during makefile parsing. Don't dump core if a non-empty command becomes empty after expansion.
1998-10-03Checkpoint changes. Bug fixes, mostly.Paul Smith1-111/+108
1998-07-30GNU make release 3.77.Paul Smith1-91/+513
1997-08-27Updates for GNU make 3.75.92.Paul Smith1-4/+7
1997-08-18Bug fixes and automake changes.Paul Smith1-2/+2
1997-04-07Changes for make 3.75.1Paul Smith1-45/+84
1996-06-22Sat Jun 22 14:56:05 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>Roland McGrath1-1/+10
* read.c (conditional_line): Strip ws in `ifeq (a , b)' so it is the same as `ifeq (a, b)'.
1996-06-22Sat Jun 15 20:30:01 1996 Andreas Schwab ↵Roland McGrath1-1/+4
<schwab@issan.informatik.uni-dortmund.de> * read.c (find_char_unquote): Avoid calling strlen on every call just to throw away the value most of the time.