summaryrefslogtreecommitdiff
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
2012-10-29Implement new "load" directive.Paul Smith1-6/+57
Provides support for dynamically loadable objects in GNU make, as a "technology preview".
2012-09-30Update the required version of gettext to get new bugfix macros.Paul Smith1-1/+1
2012-09-10Define _GNU_SOURCE before testing for bsd_signal.Paul Smith1-1/+2
Fixes Savannah bug #32247
2012-03-05Simplify copyrights using ranges of years.Paul Smith1-3/+1
The new GNU Maintainer's Manual allows the use of year ranges in certain situations; take advantage of this simplification.
2012-03-04Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines.Paul Smith1-1/+1
Fixes Savannah bug #34530.
2012-01-29Create a new function $(file ...)Paul Smith1-2/+1
2012-01-16Update copyright notices.Paul Smith1-1/+2
2012-01-15Add GNU Guile as an optional embedded scripting language for make.Paul Smith1-214/+213
On configure-enabled systems, configure will detect Guile installed (using pkg-config, which is how GNU Guile is distributed) and enable it if so. On all non-configure-enabled systems, currently, the default is for Guile support to be disabled.
2011-11-15Allow os2 and mingw to disable jobserver with a configure option.Paul Smith1-6/+8
2011-11-15Enable jobserver on W32 when using configure.Paul Smith1-8/+11
Some W32 cleanups: see Savannah bug #34830 Forgot to modify the config.h.W32.template file for jobserver support.
2010-08-29Bump the version to 3.82.90.Paul Smith1-1/+1
Fix some doc bugs. Implement the --trace flag. Show filename/linenumber on error.
2010-07-28Release GNU make 3.823.82Paul Smith1-1/+1
- Update tests for Solaris bizarre-ness - Update files for release
2010-07-19- Many fixup patches from Savannah.Paul Smith1-2/+7
- Fix the test suite on Solaris (from Boris) - Update the manual for .ONESHELL
2010-07-13Update copyrights for 2010.Paul Smith1-1/+1
2010-07-12Add the beginning of the .ONESHELL special feature.Paul Smith1-1/+1
Original patch by David Boyce. Modified by Paul Smith.
2009-10-25Update copyright years.Paul Smith1-1/+1
2009-08-01Changes from Ralf Wildenhues.Paul Smith1-3/+7
2009-06-04- Modify access of config and gnulib Savannah modules to use GITPaul Smith1-1/+1
- Fix Savannah bug #24655. - Fix Savannah bug #24588. - Fix Savannah bug #24277. - Fix Savannah bug #25697. - Fix Savannah bug #25694. - Fix Savannah bug #25460. - Fix Savannah bug #26207. - Fix Savannah bug #25712. - Fix Savannah bug #26593. - Fix various doc issues.
2009-05-24Found this change in an old CVS workspace: rewrite savestring() to thePaul Smith1-1/+1
more standard xstrndup().
2007-07-04* Update to GPLv3Paul Smith1-8/+9
* Update copyright to 2007 * Fix download URL for translation files (thanks to Thiemo Seufer)
2007-05-09Fix Savannah bug #19656: rationalize our use of case-insensitive stringPaul Smith1-10/+15
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.
2007-03-21Fix Savannah bug #19348: if the user specifiedPaul Smith1-3/+4
--disable-case-insensitive-file-system, don't turn it on.
2006-10-01Fixed a number of documentation bugs, plus some build/install issues:Paul Smith1-1/+3
16304, 16468, 16577, 17701, 17880, 16051, 16652, 16698 Plus some from the mailing list. Imported a patch from Eli to allow Cygwin builds to support DOS-style pathnames.
2006-04-09Another round of cleanups:Paul Smith1-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.
2006-04-07Code cleanup: Remove all references to PARAMS() & ansi2knr.Paul Smith1-4/+1
2006-04-01Release GNU make 3.81.Paul Smith1-2/+2
Update NEWS docs. Enhance the manual to use automake version.texi, and use the canonical FSF copyright features and statement. Some $(realpath ...) tests won't work on Windows; leave them out The jobserver filedescriptor test might fail if some FDs are reserved, so for now comment out that check.
2006-03-10Numerous updates to tests for issues found on Cygwin and Windows.Paul Smith1-1/+1
Revert a fix for $? including non-existent files as it shows a bug in the Linux kernel build. Give them a release to fix this. Add some changes from Eli Z. for Windows changes.
2006-02-11Last of the copyright updates.Paul Smith1-2/+2
2006-02-11Update copyright and license notices on all files.Paul Smith1-3/+19
Added new file strcache.c to various non-UNIX makefiles and build scripts.
2005-12-13Update the make.1 man page.Paul Smith1-1/+1
Use rm -f instead of rm in the test scripts. Fixes bug #15085.
2005-07-12Various minor updates and code cleanups.Paul Smith1-2/+3
2005-06-12Fix Savannah bug # 1328: if stdout is redirected to a full filesystem, wePaul Smith1-1/+1
check for this and exit with an error. The closeout.c version from gnulib pulls in too much other stuff, and gnulib requires an ANSI C 89 compliant compiler, while GNU make (so far) still wants to work on K&R.
2005-05-10Fixes to allow "make dist" etc. to work again.Paul Smith1-7/+2
2005-03-04- Missing docs for $|Paul Smith1-2/+8
- Update NEWS and AUTHORS files. - Fix support request #103195. - Apply patch #3679 - Fix handling of sys_siglist in autoconf/etc.
2005-02-28* New feature: -L optionPaul Smith1-2/+11
* 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)
2005-02-26Add configure operations to support MINGW on Windows.Paul Smith1-0/+26
2005-02-16Add a patch from Paul Eggert that's been lying around in my directory forPaul Smith1-3/+3
a long time, disabling stack size limits where possible. Update version to beta2.
2004-12-06Handle build.sh in a better way (recommendation from the automake mailingPaul Smith1-6/+6
list).
2004-11-30Fix problems with README and build.shPaul Smith1-6/+4
Apply an old patch from Paul Eggert.
2004-11-30Implemented `realpath' and `abspath' built-in functions.Boris Kolpackov1-3/+3
2004-05-16Various enhancementsPaul Smith1-1/+2
- OS/2 Patches - OpenVMS updates - Sanitize the handling of -include/sinclude with and without -k - Fix the setting of $< for order-only rules.
2004-03-22Numerous updates and bug fixes.Paul Smith1-5/+5
A number of W32 cleanups from J.Grant. A number of OS/2 cleanups from Andreas Buening. Various random bug fixes.
2004-03-06Don't use __STDC__; some compilers don't set it properly.Paul Smith1-1/+7
Use autoconf's test to set HAVE_ANSI_COMPILER and check that instead.
2004-03-04Updates to automate generation of GNU upload artifacts.Paul Smith1-4/+4
Fix a problem compiling on old, pre-ANSI systems. getloadavg test is still broken, but make builds. Document a breakage on SunOS 4.x systems.
2004-02-24Many compiler warning cleanups.Paul Smith1-0/+3
Small fixes for W32 (from Jonathan Grant <jg-make@jguk.org>) Maintainer enhancements to clean up the tree.
2004-02-23Numerous fixes: patches for OS/2; core for -f ''; makefile updates.Paul Smith1-0/+9
2004-01-21Many bug fixes etc.Paul Smith1-3/+2
- Apply a fix for the "thundering herd" problem when using "-j -l". This also fixes bug #4693. - Fix bug #7257: allow functions as ifdef arguments - Fix bug #4518: make sure we print all double-colon rules with -p. - Upgrade to autconf 2.58/automake 1.8/gettext 0.13.1 - Various doc cleanups, etc.
2003-07-31Updated for autoconf 2.57, automake 1.7.6, and gettext 0.12.1.Paul Smith1-4/+3
Fixed problems with the dist target (adding missing files). Workaround for a bug in gettext 0.12.1 po/Makefile.in.in where distclean wasn't cleaning everything, which caused distcheck to fail.
2003-05-02- Fix bug #1405: allow multiple pattern-specific variables to match a target.Paul Smith1-0/+9
- Fix some uncleanliness about the implementation of patterns-specific vars. - Some enhancements to the OS/2 port.
2003-03-25Fix bug #2892.Paul Smith1-2/+2
More OS/2 updates from Andreas Buening. Upgrade build system to autoconf 2.57 and automake 1.7.3.