summaryrefslogtreecommitdiff
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
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.
2003-03-25Commit fix for bug #1418.Paul Smith1-41/+49
Upgrade to require autoconf 2.56. Fix a pathological performance hit substituting in large values with lots of words.
2003-01-30Portability fix for glob.h building in FreeBSD ports system.Paul Smith1-15/+0
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-14Convert the source code to use ANSI C style function definitions andPaul Smith1-1/+4
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-03Some updates for automake 1.7 and prep for releasing 3.80.Paul Smith1-3/+3
2002-09-10Add support for broken SA_RESTART on PTX.Paul Smith1-0/+15
Fix bug #103: allow ifdef, export, and unexport to expand their arguments.
2002-09-09Whoops; configure wasn't looking for memmove.Paul Smith1-1/+1
2002-09-04Fix for complex situations where directories are declared as prerequisites.Paul Smith1-1/+1
Info on this fix from barkalow@reputation.com: thanks! Some updates/cleanups of some of the tests; added a forgotten -t test, etc.
2002-08-08Change the version.Paul Smith1-2/+2
Update to require new gettext. Change hash.c to by K&R. Redo some strings to make i18n simpler.
2002-07-08Major updates in preparation for 3.80.Paul Smith1-4/+5
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.
2002-05-10Fix Debian bug #144306: pass target-specific variables into the environmentPaul Smith1-14/+34
properly. Fix configure: allow cross-compilation; fix getloadavg (still needs _lots_ of work!) Let $(call ...) functions to be self-referencing. Lets us do transitive closures, for example.
2002-04-22Updates for new tools. Everything works now building on Linux,Paul Smith1-15/+20
including creating make packages. I'll try some other systems tomorrow. Also added a new translation: Croatian. Thanks!
2002-04-21Update GNU make to use Autoconf 2.53, Automake 1.6.1, Gettext 0.11.1.Paul Smith1-93/+99
We're using Gettext's "external" feature to avoid including the intl code in the GNU make distribution.
2001-07-05New/updated translations; minor update to the index of the manual.Paul Smith1-1/+1
2001-06-01Fix for EINTR problems when using jobserver.Paul Smith1-7/+19
New translation files. Fix for @+ inside define macros being applied too widely. Various other bug fixes.
2000-10-05* Various bug fixes.Paul Smith1-1/+1
* New Galician translation.
2000-07-30* Various fixes; see the ChangeLog.Paul Smith1-20/+31