2000-07-02 20:58:27 +08:00
|
|
|
#serial 4
|
1997-06-17 00:45:15 +08:00
|
|
|
|
|
|
|
dnl From Jim Meyering.
|
1997-06-17 01:50:23 +08:00
|
|
|
dnl
|
|
|
|
dnl Check whether putenv ("FOO") removes FOO from the environment.
|
|
|
|
dnl The putenv in libc on at least SunOS 4.1.4 does *not* do that.
|
|
|
|
dnl
|
1997-06-17 00:45:15 +08:00
|
|
|
|
|
|
|
AC_DEFUN(jm_FUNC_PUTENV,
|
|
|
|
[AC_CACHE_CHECK([for SVID conformant putenv], jm_cv_func_svid_putenv,
|
|
|
|
[AC_TRY_RUN([
|
|
|
|
int
|
|
|
|
main ()
|
|
|
|
{
|
|
|
|
/* Put it in env. */
|
|
|
|
if (putenv ("CONFTEST_putenv=val"))
|
|
|
|
exit (1);
|
|
|
|
|
|
|
|
/* Try to remove it. */
|
|
|
|
if (putenv ("CONFTEST_putenv"))
|
|
|
|
exit (1);
|
|
|
|
|
|
|
|
/* Make sure it was deleted. */
|
|
|
|
if (getenv ("CONFTEST_putenv") != 0)
|
|
|
|
exit (1);
|
|
|
|
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
],
|
|
|
|
jm_cv_func_svid_putenv=yes,
|
|
|
|
jm_cv_func_svid_putenv=no,
|
|
|
|
dnl When crosscompiling, assume putenv is broken.
|
|
|
|
jm_cv_func_svid_putenv=no)
|
|
|
|
])
|
|
|
|
if test $jm_cv_func_svid_putenv = no; then
|
2000-07-02 23:14:04 +08:00
|
|
|
AC_LIBOBJ(putenv)
|
1999-01-29 13:05:56 +08:00
|
|
|
AC_DEFINE_UNQUOTED(putenv, rpl_putenv,
|
1999-05-12 00:29:56 +08:00
|
|
|
[Define to rpl_putenv if the replacement function should be used.])
|
1997-06-17 00:45:15 +08:00
|
|
|
fi
|
|
|
|
])
|