changeset 16980:426baed51787

getopt: Simplify after Emacs changed. * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX): Inline gl_GETOPT_IFELSE. (gl_GETOPT_IFELSE): Remove macro.
author Bruno Haible <bruno@clisp.org>
date Mon, 09 Jul 2012 21:56:56 +0200
parents 1346cf3efb4d
children 65491a7bf362
files ChangeLog m4/getopt.m4
diffstat 2 files changed, 10 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Jul 09 16:24:00 2012 +0200
+++ b/ChangeLog	Mon Jul 09 21:56:56 2012 +0200
@@ -1,3 +1,9 @@
+2012-07-09  Bruno Haible  <bruno@clisp.org>
+
+	getopt: Simplify after Emacs changed.
+	* m4/getopt.m4 (gl_FUNC_GETOPT_POSIX): Inline gl_GETOPT_IFELSE.
+	(gl_GETOPT_IFELSE): Remove macro.
+
 2012-07-09  Jim Meyering  <meyering@redhat.com>
 
 	maint.mk: add sc_vulnerable_makefile_CVE-2012-3386
--- a/m4/getopt.m4	Mon Jul 09 16:24:00 2012 +0200
+++ b/m4/getopt.m4	Mon Jul 09 21:56:56 2012 +0200
@@ -1,4 +1,4 @@
-# getopt.m4 serial 43
+# getopt.m4 serial 44
 dnl Copyright (C) 2002-2006, 2008-2012 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -9,18 +9,17 @@
 [
   m4_divert_text([DEFAULTS], [gl_getopt_required=POSIX])
   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+  AC_REQUIRE([gl_GETOPT_CHECK_HEADERS])
   dnl Other modules can request the gnulib implementation of the getopt
   dnl functions unconditionally, by defining gl_REPLACE_GETOPT_ALWAYS.
   dnl argp.m4 does this.
   m4_ifdef([gl_REPLACE_GETOPT_ALWAYS], [
-    gl_GETOPT_IFELSE([], [])
     REPLACE_GETOPT=1
   ], [
     REPLACE_GETOPT=0
-    gl_GETOPT_IFELSE([
+    if test -n "$gl_replace_getopt"; then
       REPLACE_GETOPT=1
-    ],
-    [])
+    fi
   ])
   if test $REPLACE_GETOPT = 1; then
     dnl Arrange for getopt.h to be created.
@@ -38,12 +37,6 @@
   AC_REQUIRE([gl_FUNC_GETOPT_POSIX])
 ])
 
-AC_DEFUN([gl_GETOPT_IFELSE],
-[
-  AC_REQUIRE([gl_GETOPT_CHECK_HEADERS])
-  AS_IF([test -n "$gl_replace_getopt"], [$1], [$2])
-])
-
 # Determine whether to replace the entire getopt facility.
 AC_DEFUN([gl_GETOPT_CHECK_HEADERS],
 [