diff options
author | Fred Fish <fnf@specifix.com> | 1992-03-15 02:16:01 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-03-15 02:16:01 +0000 |
commit | 63abb1e790d634cba4162c2997f2ae330d63b703 (patch) | |
tree | e95a308c52d1b1693bc29e74cf3073330edec0a7 /mmalloc/configure.in | |
parent | 009898fddb9210e230163940ac173ec681574ccc (diff) | |
download | gdb-63abb1e790d634cba4162c2997f2ae330d63b703.zip gdb-63abb1e790d634cba4162c2997f2ae330d63b703.tar.gz gdb-63abb1e790d634cba4162c2997f2ae330d63b703.tar.bz2 |
New memory malloc malloc library, based on GNU malloc.
Diffstat (limited to 'mmalloc/configure.in')
-rw-r--r-- | mmalloc/configure.in | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/mmalloc/configure.in b/mmalloc/configure.in new file mode 100644 index 0000000..af44b74 --- /dev/null +++ b/mmalloc/configure.in @@ -0,0 +1,33 @@ +# This file is a shell script that supplies the information necessary +# to tailor a template configure script into the configure script +# appropriate for this directory. For more information, check any +# existing configure script. + +srctrigger=mmalloc.c +srcname="mmalloc library" +configdirs="" + +# per-host: + +case "${host_os}" in + +sysv4) + host_makefile_frag=config/mh-sysv4 + ;; + +sunos4*) + host_makefile_frag=config/mh-sunos4 + ;; + +*) + ;; + +esac + +# per-target: + +# +# Local Variables: +# fill-column: 131 +# End: +# |