diff options
author | Paul Smith <psmith@gnu.org> | 1999-02-22 07:23:30 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-02-22 07:23:30 +0000 |
commit | a66668aabccfbae3e1f22eaeb897b9c7a1e02733 (patch) | |
tree | fd4454775a6dcb2d0222f3e65c04f2011547b4ea /ChangeLog | |
parent | 84f38c9c6f56c7056a1d1a5abf9151bf15760151 (diff) | |
download | gunmake-a66668aabccfbae3e1f22eaeb897b9c7a1e02733.tar.gz |
* New feature: .LIBPATTERNS controls the way -lfoo dependencies are expanded.
* 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.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -1,3 +1,34 @@ +1999-02-22 Paul D. Smith <psmith@gnu.org> + + * NEWS: Mention new .LIBPATTERNS feature. + + * make.texinfo (Libraries/Search): Describe the use and + ramifications of the new .LIBPATTERNS variable. + + * remake.c (library_search): Instead of searching only for the + hardcoded expansion "libX.a" for a library reference "-lX", we + obtain a list of patterns from the .LIBPATTERNS variable and + search those in order. + + * default.c: Added a new default variable .LIBPATTERNS. The + default for UNIX is "lib%.so lib%.a". Amiga and DOS values are + also provided. + + * read.c: Remove bogus HAVE_GLOB_H references; always include + vanilla glob.h. + +1999-02-21 Paul D. Smith <psmith@gnu.org> + + * function.c (expand_function): Set value to 0 to avoid freeing it. + * variable.c (pop_variable_scope): Free the value of the variable. + (try_variable_definition): For simple variables, use + allocated_variable_expand() to avoid stomping on the variable + buffer when we still need it for other things. + + * arscan.c: Modified to support AIX 4.3 big archives. The changes + are based on information provided by Phil Adams + <padams@austin.ibm.com>; thanks! + 1999-02-19 Paul D. Smith <psmith@gnu.org> * configure.in: Check to see if the GNU glob library is already |