Build dlopenable modules with `-module'.
[bpt/guile.git] / m4 / putenv.m4
CommitLineData
f240aacb 1# putenv.m4 serial 16
61cd9dc9 2dnl Copyright (C) 2002-2010 Free Software Foundation, Inc.
f240aacb
LC
3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved.
6
7dnl From Jim Meyering.
8dnl
9dnl Check whether putenv ("FOO") removes FOO from the environment.
10dnl The putenv in libc on at least SunOS 4.1.4 does *not* do that.
11
12AC_DEFUN([gl_FUNC_PUTENV],
13[
14 AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
15 AC_CACHE_CHECK([for putenv compatible with GNU and SVID],
16 [gl_cv_func_svid_putenv],
17 [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],[[
18 /* Put it in env. */
19 if (putenv ("CONFTEST_putenv=val"))
20 return 1;
21
22 /* Try to remove it. */
23 if (putenv ("CONFTEST_putenv"))
24 return 1;
25
26 /* Make sure it was deleted. */
27 if (getenv ("CONFTEST_putenv") != 0)
28 return 1;
29
30 return 0;
1cd4fffc
LC
31 ]])],
32 gl_cv_func_svid_putenv=yes,
33 gl_cv_func_svid_putenv=no,
34 dnl When crosscompiling, assume putenv is broken.
35 gl_cv_func_svid_putenv=no)
f240aacb
LC
36 ])
37 if test $gl_cv_func_svid_putenv = no; then
38 REPLACE_PUTENV=1
39 AC_LIBOBJ([putenv])
40 fi
41])