[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug-gnulib] typo in extensions.m4
From: |
Jim Meyering |
Subject: |
[bug-gnulib] typo in extensions.m4 |
Date: |
Tue, 22 Feb 2005 15:29:24 +0100 |
I've just checked this in:
2005-02-22 Jim Meyering <address@hidden>
* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo: s/ifndef/ifdef/.
Index: extensions.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/extensions.m4,v
retrieving revision 1.4
diff -u -p -r1.4 extensions.m4
--- extensions.m4 23 Jan 2005 08:06:57 -0000 1.4
+++ extensions.m4 22 Feb 2005 14:24:39 -0000
@@ -1,6 +1,6 @@
# Enable extensions on systems that normally disable them.
-# Copyright (C) 2003 Free Software Foundation, Inc.
+# Copyright (C) 2003, 2005 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -19,7 +19,7 @@ AC_DEFUN([gl_USE_SYSTEM_EXTENSIONS], [
AH_VERBATIM([__EXTENSIONS__],
[/* Enable extensions on Solaris. */
-#ifndef __EXTENSIONS__
+#ifdef __EXTENSIONS__
# undef __EXTENSIONS__
#endif])
AC_DEFINE([__EXTENSIONS__])
- [bug-gnulib] typo in extensions.m4,
Jim Meyering <=