Add and change modules to make it easier for coreutils to use
[gnulib.git] / m4 / posixver.m4
1 # posixver.m4 serial 8
2 dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 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_POSIXVER],
8 [
9   AC_LIBSOURCES([posixver.c, posixver.h])
10   AC_LIBOBJ([posixver])
11
12   AC_REQUIRE([gl_DEFAULT_POSIX2_VERSION])
13 ])
14
15 # Set the default level of POSIX conformance at configure-time.
16 # Build with `./configure DEFAULT_POSIX2_VERSION=199209 ...' to
17 # support the older version, thus preserving portability with
18 # scripts that use sort +1, tail +32, etc.
19 # Note however, that this breaks tools that might run commands
20 # like `sort +some-file' that conform with the newer standard.
21 AC_DEFUN([gl_DEFAULT_POSIX2_VERSION],
22 [
23   AC_MSG_CHECKING([for desired default level of POSIX conformance])
24   gl_default_posix2_version=none-specified
25   if test -n "$ac_cv_env_DEFAULT_POSIX2_VERSION_set"; then
26     gl_default_posix2_version=$ac_cv_env_DEFAULT_POSIX2_VERSION_value
27     AC_DEFINE_UNQUOTED(DEFAULT_POSIX2_VERSION,
28       $gl_default_posix2_version,
29       [Define the default level of POSIX conformance. The value is of
30        the form YYYYMM, specifying the year and month the standard was
31        adopted. If not defined here, it defaults to the value of
32        _POSIX2_VERSION in <unistd.h>. Define to 199209 to default to
33        POSIX 1003.2-1992, which makes standard programs like `head',
34        `tail', and `sort' accept obsolete options like `+10' and
35        `-10'. Define to 200112 to default to POSIX 1003.1-2001, which
36        makes these standard programs treat leading-`+' operands as
37        file names and require modern usages like `-n 10' instead of
38        `-10'. Whether defined here or not, the default can be
39        overridden at run time via the _POSIX2_VERSION environment
40        variable.])
41   fi
42   AC_MSG_RESULT($gl_default_posix2_version)
43   AC_ARG_VAR(
44     [DEFAULT_POSIX2_VERSION],
45     [POSIX version to default to; see 'config.hin'.])
46 ])