gnulib: import module mkstemps
* lib/mkstemps.c, m4/mkstemps.m4: New files. * lib/Makefile.am, m4/gnulib-cache.m4, m4/gnulib-comp.m4: Update.
This commit is contained in:
parent
16b7206dd9
commit
c0e7f9de58
5 changed files with 93 additions and 2 deletions
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
|
||||
# Specification in the form of a command-line invocation:
|
||||
# gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=tools --no-conditional-dependencies --libtool --macro-prefix=gl --no-vc-files argmatch argp error gethrxtime isatty mkstemp progname stpcpy sys_wait
|
||||
# gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=tools --no-conditional-dependencies --libtool --macro-prefix=gl --no-vc-files argmatch argp error gethrxtime isatty mkstemp mkstemps progname stpcpy sys_wait
|
||||
|
||||
# Specification in the form of a few gnulib-tool.m4 macro invocations:
|
||||
gl_LOCAL_DIR([])
|
||||
|
|
@ -38,6 +38,7 @@ gl_MODULES([
|
|||
gethrxtime
|
||||
isatty
|
||||
mkstemp
|
||||
mkstemps
|
||||
progname
|
||||
stpcpy
|
||||
sys_wait
|
||||
|
|
|
|||
|
|
@ -78,6 +78,7 @@ AC_DEFUN([gl_EARLY],
|
|||
# Code from module memchr:
|
||||
# Code from module mempcpy:
|
||||
# Code from module mkstemp:
|
||||
# Code from module mkstemps:
|
||||
# Code from module msvc-inval:
|
||||
# Code from module msvc-nothrow:
|
||||
# Code from module multiarch:
|
||||
|
|
@ -263,6 +264,12 @@ AC_SUBST([LTALLOCA])
|
|||
gl_PREREQ_MKSTEMP
|
||||
fi
|
||||
gl_STDLIB_MODULE_INDICATOR([mkstemp])
|
||||
gl_FUNC_MKSTEMPS
|
||||
if test $HAVE_MKSTEMPS = 0; then
|
||||
AC_LIBOBJ([mkstemps])
|
||||
fi
|
||||
gl_MODULE_INDICATOR([mkstemps])
|
||||
gl_STDLIB_MODULE_INDICATOR([mkstemps])
|
||||
gl_MSVC_INVAL
|
||||
if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then
|
||||
AC_LIBOBJ([msvc-inval])
|
||||
|
|
@ -574,6 +581,7 @@ AC_DEFUN([gl_FILE_LIST], [
|
|||
lib/memchr.valgrind
|
||||
lib/mempcpy.c
|
||||
lib/mkstemp.c
|
||||
lib/mkstemps.c
|
||||
lib/msvc-inval.c
|
||||
lib/msvc-inval.h
|
||||
lib/msvc-nothrow.c
|
||||
|
|
@ -684,6 +692,7 @@ AC_DEFUN([gl_FILE_LIST], [
|
|||
m4/memchr.m4
|
||||
m4/mempcpy.m4
|
||||
m4/mkstemp.m4
|
||||
m4/mkstemps.m4
|
||||
m4/mmap-anon.m4
|
||||
m4/msvc-inval.m4
|
||||
m4/msvc-nothrow.m4
|
||||
|
|
|
|||
18
m4/mkstemps.m4
Normal file
18
m4/mkstemps.m4
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# mkstemps.m4 serial 2
|
||||
dnl Copyright (C) 2009-2013 Free Software Foundation, Inc.
|
||||
dnl This file is free software; the Free Software Foundation
|
||||
dnl gives unlimited permission to copy and/or distribute it,
|
||||
dnl with or without modifications, as long as this notice is preserved.
|
||||
|
||||
AC_DEFUN([gl_FUNC_MKSTEMPS],
|
||||
[
|
||||
AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
|
||||
|
||||
dnl Persuade glibc <stdlib.h> to declare mkstemps().
|
||||
AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
|
||||
|
||||
AC_CHECK_FUNCS_ONCE([mkstemps])
|
||||
if test $ac_cv_func_mkstemps != yes; then
|
||||
HAVE_MKSTEMPS=0
|
||||
fi
|
||||
])
|
||||
Loading…
Add table
Add a link
Reference in a new issue