secure_getenv.m4 852 B

123456789101112131415161718192021222324252627
  1. # Look up an environment variable more securely.
  2. dnl Copyright 2013-2017 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. AC_DEFUN([gl_FUNC_SECURE_GETENV],
  7. [
  8. dnl Persuade glibc <stdlib.h> to declare secure_getenv().
  9. AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
  10. AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
  11. AC_CHECK_FUNCS_ONCE([secure_getenv])
  12. if test $ac_cv_func_secure_getenv = no; then
  13. HAVE_SECURE_GETENV=0
  14. fi
  15. ])
  16. # Prerequisites of lib/secure_getenv.c.
  17. AC_DEFUN([gl_PREREQ_SECURE_GETENV], [
  18. AC_CHECK_FUNCS([__secure_getenv])
  19. if test $ac_cv_func___secure_getenv = no; then
  20. AC_CHECK_FUNCS([issetugid])
  21. fi
  22. AC_CHECK_FUNCS_ONCE([getuid geteuid getgid getegid])
  23. ])