Check-in Number:
|
5224 | |
Date: |
2005-Oct-03 10:50:28 (local)
2005-Oct-03 08:50:28 (UTC) |
User: | rse |
Branch: | |
Comment: |
Fixed va_copy detection. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/al/ChangeLog 1.5 -> 1.6
--- ChangeLog 2005/10/03 08:43:03 1.5
+++ ChangeLog 2005/10/03 08:50:28 1.6
@@ -11,7 +11,12 @@
This is a list of all changes to OSSP al.
For a more brief summary please have a look at the NEWS file.
- Changes between 0.9.1 and 0.9.2 (16-Dec-2002 to 02-Oct-2005)
+ Changes between 0.9.2 and 0.9.3 (03-Oct-2002 to 03-Oct-2005)
+
+ o Fixed va_copy detection.
+ [Ralf S. Engelschall <rse@engelschall.com>]
+
+ Changes between 0.9.1 and 0.9.2 (16-Dec-2002 to 03-Oct-2005)
o Upgraded build environment to GNU autoconf 2.59,
GNU libtool 1.5.20 and GNU shtool 2.0.3
|
|
ossp-pkg/al/aclocal.m4 1.3 -> 1.4
--- aclocal.m4 2005/10/03 08:43:03 1.3
+++ aclocal.m4 2005/10/03 08:50:28 1.4
@@ -232,7 +232,7 @@
dnl ## (and provide fallback implementation if neccessary)
dnl ##
dnl ## configure.in:
-dnl ## CHECK_VA_COPY
+dnl ## AC_CHECK_VA_COPY
dnl ## foo.c:
dnl ## #include "config.h"
dnl ## [...]
@@ -288,7 +288,7 @@
])
dnl # Autoconf check for va_copy() implementation checking
-AC_DEFUN(CHECK_VA_COPY,[
+AC_DEFUN(AC_CHECK_VA_COPY,[
dnl # provide Autoconf display check message
AC_MSG_CHECKING(for va_copy() function)
dnl # check for various implementations in priorized sequence
|
|
ossp-pkg/al/configure.ac 1.5 -> 1.6
--- configure.ac 2005/10/03 08:43:04 1.5
+++ configure.ac 2005/10/03 08:50:28 1.6
@@ -39,6 +39,7 @@
AC_PROG_MAKE_SET
AC_PROG_CC
AC_CHECK_DEBUGGING
+AC_CHECK_VA_COPY
sinclude(libtool.m4)
AC_PROG_LIBTOOL
|
|