Check-in Number:
|
5028 | |
Date: |
2005-Feb-18 21:36:48 (local)
2005-Feb-18 20:36:48 (UTC) |
User: | rse |
Branch: | |
Comment: |
Add quotes around function names for AC_DEFUN in pth.m4 to avoid
warnings about "underquoted definitions". |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/pth/ChangeLog 1.634 -> 1.635
--- ChangeLog 2004/12/31 19:34:44 1.634
+++ ChangeLog 2005/02/18 20:36:48 1.635
@@ -21,6 +21,10 @@
Changes between 2.0.3 and 2.0.4 (03-Dec-2004 to xx-Jan-2005)
+ *) Add quotes around function names for AC_DEFUN in pth.m4 to avoid
+ warnings about "underquoted definitions".
+ [Stephane Loeuillet <stephane.loeuillet@cegetel.net>]
+
*) Adjusted all copyright messages for new year 2005.
[Ralf S. Engelschall]
|
|
ossp-pkg/pth/THANKS 1.99 -> 1.100
--- THANKS 2004/12/06 19:47:38 1.99
+++ THANKS 2005/02/18 20:36:48 1.100
@@ -57,6 +57,7 @@
o Barnett Hsu <barnett@cs.ucr.edu>
o Nick Hudson <skrll@netbsd.org>
o Andrew Hunter <esvce@dcs.warwick.ac.uk>
+ o Stephane Loeuillet <stephane.loeuillet@cegetel.net>
o Takashi Ishihara <tishihara@ucdavis.edu>
o Jim Jagielski <jim@jaguNET.com>
o Jeremie <jeremie@jabber.org>
|
|
ossp-pkg/pth/pth.m4 1.15 -> 1.16
--- pth.m4 2004/12/31 19:34:44 1.15
+++ pth.m4 2005/02/18 20:36:48 1.16
@@ -40,7 +40,7 @@
dnl ##
dnl
dnl # auxilliary macros
-AC_DEFUN(_AC_PTH_ERROR, [dnl
+AC_DEFUN([_AC_PTH_ERROR], [dnl
AC_MSG_RESULT([*FAILED*])
m4_define(_ac_pth_line,dnl
"+------------------------------------------------------------------------+")
@@ -51,13 +51,13 @@
echo " _ac_pth_line" 1>&2
exit 1
])
-AC_DEFUN(_AC_PTH_VERBOSE, [dnl
+AC_DEFUN([_AC_PTH_VERBOSE], [dnl
if test ".$verbose" = .yes; then
AC_MSG_RESULT([ $1])
fi
])
dnl # the user macro
-AC_DEFUN(AC_CHECK_PTH, [dnl
+AC_DEFUN([AC_CHECK_PTH], [dnl
dnl
dnl # prerequisites
AC_REQUIRE([AC_PROG_CC])dnl
|
|