summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2007-10-14 02:12:53 +0100
committerColin Watson <cjwatson@debian.org>2007-10-14 02:12:53 +0100
commita5cf845ad838de9884698c557261b374069849f2 (patch)
tree6711c3d02c344d0ae76c0ea411a768e0700684af /m4
parent04fe8cae1807d4c351299aa4fff3ea6cec51a01a (diff)
import gnulib mkdtemp and mkstemp modules
Diffstat (limited to 'm4')
-rw-r--r--m4/tempname.m423
1 files changed, 0 insertions, 23 deletions
diff --git a/m4/tempname.m4 b/m4/tempname.m4
deleted file mode 100644
index 289200f8..00000000
--- a/m4/tempname.m4
+++ /dev/null
@@ -1,23 +0,0 @@
-#serial 2
-
-# Copyright (C) 2006 Free Software Foundation, Inc.
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# glibc provides __gen_tempname as a wrapper for mk[ds]temp. Expose
-# it as a public API, and provide it on systems that are lacking.
-AC_DEFUN([gl_FUNC_GEN_TEMPNAME],
-[
- AC_REQUIRE([AC_SYS_LARGEFILE])
-
- AC_LIBOBJ([tempname])
- gl_PREREQ_TEMPNAME
-])
-
-# Prerequisites of lib/tempname.c.
-AC_DEFUN([gl_PREREQ_TEMPNAME],
-[
- AC_CHECK_HEADERS_ONCE([sys/time.h])
- AC_CHECK_FUNCS_ONCE([gettimeofday])
-])