mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-16 01:22:18 +03:00
Especially since setenv is also LGPLv2+, and it makes sense for the two modules to stay in sync, rather than one to be usable only in LPGLv3+ projects. * modules/unsetenv (License): Match setenv license. Signed-off-by: Eric Blake <eblake@redhat.com>
31 lines
518 B
Plaintext
31 lines
518 B
Plaintext
Description:
|
|
unsetenv() function: remove an environment variable.
|
|
|
|
Files:
|
|
lib/unsetenv.c
|
|
m4/setenv.m4
|
|
|
|
Depends-on:
|
|
stdlib
|
|
unistd [test $HAVE_UNSETENV = 0 || test $REPLACE_UNSETENV = 1]
|
|
environ [test $HAVE_UNSETENV = 0 || test $REPLACE_UNSETENV = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_UNSETENV
|
|
if test $HAVE_UNSETENV = 0 || test $REPLACE_UNSETENV = 1; then
|
|
AC_LIBOBJ([unsetenv])
|
|
gl_PREREQ_UNSETENV
|
|
fi
|
|
gl_STDLIB_MODULE_INDICATOR([unsetenv])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<stdlib.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
all
|