execvpe: New module.
[gnulib.git] / m4 / execvpe.m4
blobbfce90999968608ae7f8ec34bd26eb676540b83f
1 # execvpe.m4 serial 1
2 dnl Copyright (C) 2020 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.
7 AC_DEFUN([gl_FUNC_EXECVPE],
9   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
10   AC_REQUIRE([AC_CANONICAL_HOST])
12   dnl Persuade glibc <unistd.h> to declare execvpe().
13   AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
15   case "$host_os" in
16     mingw*) REPLACE_EXECVPE=1 ;;
17     *)
18       AC_CHECK_FUNCS([execvpe])
19       if test $ac_cv_func_execvpe != yes; then
20         HAVE_EXECVPE=0
21       fi
22       ;;
23   esac