* getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
[gnulib.git] / m4 / getopt.m4
1 # getopt.m4 serial 8
2 dnl Copyright (C) 2002, 2003, 2004, 2005 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 # The getopt module assume you want GNU getopt, with getopt_long etc,
8 # rather than vanilla POSIX getopt.  This means your your code should
9 # always include <getopt.h> for the getopt prototypes.
10
11 AC_DEFUN([gl_GETOPT_SUBSTITUTE],
12 [
13   GETOPT_H=getopt.h
14   AC_LIBOBJ([getopt])
15   AC_LIBOBJ([getopt1])
16   AC_DEFINE([__GETOPT_PREFIX], [[rpl_]],
17     [Define to rpl_ if the getopt replacement functions and variables
18      should be used.])
19   AC_SUBST([GETOPT_H])
20 ])
21
22 AC_DEFUN([gl_GETOPT],
23 [
24   gl_PREREQ_GETOPT
25
26   if test -z "$GETOPT_H"; then
27     GETOPT_H=
28     AC_CHECK_HEADERS([getopt.h], [], [GETOPT_H=getopt.h])
29     if test -z "$GETOPT_H"; then
30       AC_CHECK_FUNCS([getopt_long_only], [], [GETOPT_H=getopt.h])
31     fi
32
33     dnl BSD getopt_long uses an incompatible method to reset option processing,
34     dnl and (as of 2004-10-15) mishandles optional option-arguments.
35     if test -z "$GETOPT_H"; then
36       AC_CHECK_DECL([optreset], [GETOPT_H=getopt.h], [], [#include <getopt.h>])
37     fi
38
39     dnl Solaris 10 getopt doesn't handle `+' as a leading character in an
40     dnl option string (as of 2005-05-05).
41     if test -z "$GETOPT_H"; then
42       AC_CHECK_DECL([getopt_clip], [GETOPT_H=getopt.h], [],
43         [#include <getopt.h>])
44     fi
45
46     if test -n "$GETOPT_H"; then
47       gl_GETOPT_SUBSTITUTE
48     fi
49   fi
50 ])
51
52 # Prerequisites of lib/getopt*.
53 AC_DEFUN([gl_PREREQ_GETOPT], [:])