~ubuntu-branches/ubuntu/precise/parted/precise

« back to all changes in this revision

Viewing changes to gnulib/m4/stdlib_h.m4

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2010-02-06 16:39:19 UTC
  • mfrom: (1.1.5 upstream)
  • mto: (7.3.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 48.
  • Revision ID: james.westby@ubuntu.com-20100206163919-nsxr2vtchk0ecabf
Tags: upstream-2.1
ImportĀ upstreamĀ versionĀ 2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# stdlib_h.m4 serial 2
2
 
dnl Copyright (C) 2007 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
 
 
7
 
AC_DEFUN([gl_STDLIB_H],
8
 
[
9
 
  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
10
 
  gl_CHECK_NEXT_HEADERS([stdlib.h])
11
 
])
12
 
 
13
 
AC_DEFUN([gl_STDLIB_MODULE_INDICATOR],
14
 
[
15
 
  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
16
 
  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
17
 
  GNULIB_[]m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./-],[ABCDEFGHIJKLMNOPQRSTUVWXYZ___])=1
18
 
])
19
 
 
20
 
AC_DEFUN([gl_STDLIB_H_DEFAULTS],
21
 
[
22
 
  GNULIB_GETSUBOPT=0; AC_SUBST([GNULIB_GETSUBOPT])
23
 
  GNULIB_MKDTEMP=0;   AC_SUBST([GNULIB_MKDTEMP])
24
 
  GNULIB_MKSTEMP=0;   AC_SUBST([GNULIB_MKSTEMP])
25
 
  dnl Assume proper GNU behavior unless another module says otherwise.
26
 
  HAVE_GETSUBOPT=1;   AC_SUBST([HAVE_GETSUBOPT])
27
 
  HAVE_MKDTEMP=1;     AC_SUBST([HAVE_MKDTEMP])
28
 
  REPLACE_MKSTEMP=0;  AC_SUBST([REPLACE_MKSTEMP])
29
 
])