summaryrefslogtreecommitdiff
path: root/config.ami.template
AgeCommit message (Collapse)AuthorFilesLines
2012-01-16Update copyright notices.Paul Smith1-2/+2
2012-01-15Add GNU Guile as an optional embedded scripting language for make.Paul Smith1-0/+3
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.
2010-07-13Update copyrights for 2010.Paul Smith1-1/+1
2009-10-25Update copyright years.Paul Smith1-1/+1
2007-07-04* Update to GPLv3Paul Smith1-4/+4
* 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-1/+7
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.
2006-02-11Last of the copyright updates.Paul Smith1-2/+2
2006-02-11More copyright/license updates.Paul Smith1-1/+16
2004-03-06Don't use __STDC__; some compilers don't set it properly.Paul Smith1-0/+3
Use autoconf's test to set HAVE_ANSI_COMPILER and check that instead.
2004-02-25Add in HAVE_STDARG_H to the various port config files.Paul Smith1-0/+3
2000-06-20* More updates and fixes.Paul Smith1-0/+4
1999-09-01* A bugfix on MAKEFLAGS options creation that broke jobserver.Paul Smith1-0/+3
* Put the host info in the --version output. * Don't croak if the user forces -jN on submakes.
1999-04-25* Add new jobserver feature.Paul Smith1-0/+7
* Small updates to the manual * E.Zaretskii fix for new DJGPP version.
1998-10-03Checkpoint changes. Bug fixes, mostly.Paul Smith1-84/+104
1998-07-30GNU make release 3.77.Paul Smith1-0/+3
1997-08-27Updated for GNU make 3.75.92.Paul Smith1-0/+6
1997-04-07Changes for make 3.75.1Paul Smith1-0/+3
1996-05-09Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>Roland McGrath1-0/+271
* GNUmakefile (globfiles): Add AmigaDOS support files. (distfiles): Add $(amigafiles). (amigafiles): New variable. Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de> * Added Amiga support in commands.c, dir.c, function.c, job.c, main.c, make.h, read.c, remake.c * commands.c: Amiga has neither SIGHUP nor SIGQUIT * dir.c: Amiga has filenames with Upper- and Lowercase, but "FileName" is the same as "filename". Added strieq() which is use to compare filenames. This is like streq() on all other systems. Also there is no such thing as "." under AmigaDOS. * function.c: On Amiga, the environment is not passed as envp, there are no pipes and Amiga can't fork. Use my own function to create a new child. * job.c: default_shell is "" (The system automatically chooses a shell for me). Have to use the same workaround as MSDOS for running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't known on Amiga. Cloned code to run children from MSDOS. Own version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga. * main.c: Force stack to 20000 bytes. Read environment from ENV: device. On Amiga, exec_command() does return, so I exit() afterwards. * make.h: Added strieq() to compare filenames. * read.c: Amiga needs special extension to have passwd. Only one include-dir. "Makefile" and "makefile" are the same. Added "SMakefile". Added special code to handle device names (xxx:) and "./" in rules. * remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib" instead of "lib%s.a". * main.c, rule.c, variable.c: Avoid floats at all costs. * vpath.c: Get rid of as many alloca()s as possible.