Mercurial > hg > minc-tools
changeset 1529:d2ffce2e3b0c
Added checks for mkstemp, tempnam(), and tmpnam()
author | bert <bert> |
---|---|
date | Mon, 17 Mar 2003 16:19:28 +0000 |
parents | 010f0aaadbd3 |
children | 3ef611fe1c55 |
files | configure.in |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure.in +++ b/configure.in @@ -6,7 +6,7 @@ AM_INIT_AUTOMAKE(minc, 1.1-1) AM_CONFIG_HEADER([config.h]) -AC_REVISION($Revision: 6.8 $) +AC_REVISION($Revision: 6.9 $) AC_PROG_INSTALL AC_PROG_LN_S @@ -33,6 +33,9 @@ dnl need ac 2.57 for this? AC_CONFIG_LIBOBJ_DIR(libsrc) AC_REPLACE_FUNCS(strdup) +dnl Verify existence of mkstemp, tempnam, and tmpnam +AC_CHECK_FUNCS(mkstemp tempnam tmpnam) + dnl This link is needed to allow <volume_io/foo.h> style includes. AC_CONFIG_LINKS(volume_io/Include/volume_io:volume_io/Include)