Merge commit 'stable/20110609'
[gnulib.git] / m4 / setenv.m4
1 # setenv.m4 serial 22
2 dnl Copyright (C) 2001-2004, 2006-2011 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 AC_DEFUN([gl_FUNC_SETENV],
8 [
9   AC_REQUIRE([gl_FUNC_SETENV_SEPARATE])
10   if test $ac_cv_func_setenv = no; then
11     HAVE_SETENV=0
12   else
13     AC_CACHE_CHECK([whether setenv validates arguments],
14       [gl_cv_func_setenv_works],
15       [AC_RUN_IFELSE([AC_LANG_PROGRAM([[
16        #include <stdlib.h>
17        #include <errno.h>
18        #include <string.h>
19       ]], [[
20        int result = 0;
21        {
22          if (setenv ("", "", 0) != -1)
23            result |= 1;
24          else if (errno != EINVAL)
25            result |= 2;
26        }
27        {
28          if (setenv ("a", "=", 1) != 0)
29            result |= 4;
30          else if (strcmp (getenv ("a"), "=") != 0)
31            result |= 8;
32        }
33        return result;
34       ]])],
35       [gl_cv_func_setenv_works=yes], [gl_cv_func_setenv_works=no],
36       [gl_cv_func_setenv_works="guessing no"])])
37     if test "$gl_cv_func_setenv_works" != yes; then
38       REPLACE_SETENV=1
39     fi
40   fi
41   if test $HAVE_SETENV$REPLACE_SETENV != 10; then
42     AC_LIBOBJ([setenv])
43   fi
44 ])
45
46 # Like gl_FUNC_SETENV, except prepare for separate compilation
47 # (no REPLACE_SETENV, no AC_LIBOBJ).
48 AC_DEFUN([gl_FUNC_SETENV_SEPARATE],
49 [
50   AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
51   AC_CHECK_DECLS_ONCE([setenv])
52   if test $ac_cv_have_decl_setenv = no; then
53     HAVE_DECL_SETENV=0
54   fi
55   AC_CHECK_FUNCS_ONCE([setenv])
56   gl_PREREQ_SETENV
57 ])
58
59 AC_DEFUN([gl_FUNC_UNSETENV],
60 [
61   AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
62   AC_CHECK_DECLS_ONCE([unsetenv])
63   if test $ac_cv_have_decl_unsetenv = no; then
64     HAVE_DECL_UNSETENV=0
65   fi
66   AC_CHECK_FUNCS([unsetenv])
67   if test $ac_cv_func_unsetenv = no; then
68     AC_LIBOBJ([unsetenv])
69     gl_PREREQ_UNSETENV
70   else
71     dnl Some BSDs return void, failing to do error checking.
72     AC_CACHE_CHECK([for unsetenv() return type], [gt_cv_func_unsetenv_ret],
73       [AC_COMPILE_IFELSE(
74          [AC_LANG_PROGRAM(
75             [[
76 #undef _BSD
77 #define _BSD 1 /* unhide unsetenv declaration in OSF/1 5.1 <stdlib.h> */
78 #include <stdlib.h>
79 extern
80 #ifdef __cplusplus
81 "C"
82 #endif
83 #if defined(__STDC__) || defined(__cplusplus)
84 int unsetenv (const char *name);
85 #else
86 int unsetenv();
87 #endif
88             ]],
89             [[]])],
90          [gt_cv_func_unsetenv_ret='int'],
91          [gt_cv_func_unsetenv_ret='void'])])
92     if test $gt_cv_func_unsetenv_ret = 'void'; then
93       AC_DEFINE([VOID_UNSETENV], [1], [Define to 1 if unsetenv returns void
94        instead of int.])
95       REPLACE_UNSETENV=1
96       AC_LIBOBJ([unsetenv])
97     fi
98
99     dnl Solaris 10 unsetenv does not remove all copies of a name.
100     dnl Haiku alpha 2 unsetenv gets confused by assignment to environ.
101     dnl OpenBSD 4.7 unsetenv("") does not fail.
102     AC_CACHE_CHECK([whether unsetenv obeys POSIX],
103       [gl_cv_func_unsetenv_works],
104       [AC_RUN_IFELSE([AC_LANG_PROGRAM([[
105        #include <stdlib.h>
106        #include <errno.h>
107        extern char **environ;
108       ]], [[
109        char entry1[] = "a=1";
110        char entry2[] = "b=2";
111        char *env[] = { entry1, entry2, NULL };
112        if (putenv ((char *) "a=1")) return 1;
113        if (putenv (entry2)) return 2;
114        entry2[0] = 'a';
115        unsetenv ("a");
116        if (getenv ("a")) return 3;
117        if (!unsetenv ("") || errno != EINVAL) return 4;
118        entry2[0] = 'b';
119        environ = env;
120        if (!getenv ("a")) return 5;
121        entry2[0] = 'a';
122        unsetenv ("a");
123        if (getenv ("a")) return 6;
124       ]])],
125       [gl_cv_func_unsetenv_works=yes], [gl_cv_func_unsetenv_works=no],
126       [gl_cv_func_unsetenv_works="guessing no"])])
127     if test "$gl_cv_func_unsetenv_works" != yes; then
128       REPLACE_UNSETENV=1
129       AC_LIBOBJ([unsetenv])
130     fi
131   fi
132 ])
133
134 # Prerequisites of lib/setenv.c.
135 AC_DEFUN([gl_PREREQ_SETENV],
136 [
137   AC_REQUIRE([AC_FUNC_ALLOCA])
138   AC_REQUIRE([gl_ENVIRON])
139   AC_CHECK_HEADERS_ONCE([unistd.h])
140   AC_CHECK_HEADERS([search.h])
141   AC_CHECK_FUNCS([tsearch])
142 ])
143
144 # Prerequisites of lib/unsetenv.c.
145 AC_DEFUN([gl_PREREQ_UNSETENV],
146 [
147   AC_REQUIRE([gl_ENVIRON])
148   AC_CHECK_HEADERS_ONCE([unistd.h])
149 ])