summaryrefslogtreecommitdiffstats
path: root/m4/getopt.m4
blob: af8bfd4cb1b8bdc789d56091ac0807035fe2104e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
dnl SPDX-License-Identifier: FSFULLR

# getopt.m4 serial 49 (modified version)
dnl Copyright (C) 2002-2006, 2008-2023 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.

# This version has been modified to reduce complexity since we only need
# GNU getopt_long and do not care about replacing getopt.

# Check for a POSIX compliant getopt function with GNU extensions (such as
# options with optional arguments) and the functions getopt_long,
# getopt_long_only.
AC_DEFUN([gl_FUNC_GETOPT_GNU],
[
  AC_REQUIRE([gl_GETOPT_CHECK_HEADERS])

  if test -n "$gl_replace_getopt"; then
    gl_GETOPT_SUBSTITUTE
  fi
])

AC_DEFUN([gl_GETOPT_CHECK_HEADERS],
[
  gl_replace_getopt=

  if test -z "$gl_replace_getopt"; then
    AC_CHECK_HEADERS([getopt.h], [], [gl_replace_getopt=yes])
  fi

  if test -z "$gl_replace_getopt"; then
    AC_CHECK_FUNCS([getopt_long], [], [gl_replace_getopt=yes])
  fi

  dnl BSD getopt_long uses a way to reset option processing, that is different
  dnl from GNU and Solaris (which copied the GNU behavior). We support both
  dnl GNU and BSD style resetting of getopt_long(), so there's no need to use
  dnl GNU getopt_long() on BSD due to different resetting style.
  if test -z "$gl_replace_getopt"; then
    AC_CHECK_DECL([optreset],
      [AC_DEFINE([HAVE_OPTRESET], 1,
        [Define to 1 if getopt.h declares extern int optreset.])],
      [], [#include <getopt.h>])
  fi

  dnl POSIX 2008 does not specify leading '+' behavior, but see
  dnl http://austingroupbugs.net/view.php?id=191 for a recommendation on
  dnl the next version of POSIX.  We don't use that feature, so this
  dnl is not a problem for us. Thus, the respective test was removed here.

  dnl Checks for getopt handling '-' as a leading character in an option
  dnl string were removed, since we also don't use that feature.

])

AC_DEFUN([gl_GETOPT_SUBSTITUTE],
[
  AC_LIBOBJ([getopt])
  AC_LIBOBJ([getopt1])

  AC_CHECK_HEADERS_ONCE([sys/cdefs.h])

  AC_DEFINE([__GETOPT_PREFIX], [[rpl_]],
    [Define to rpl_ if the getopt replacement functions and variables
     should be used.])

  GETOPT_H=getopt.h
  AC_SUBST([GETOPT_H])
])

AC_DEFUN([gl_GETOPT], [gl_FUNC_GETOPT_GNU])