Check-in Number:
|
4355 | |
Date: |
2004-Jan-16 16:35:37 (local)
2004-Jan-16 15:35:37 (UTC) |
User: | rse |
Branch: | |
Comment: |
Fix syntax error in uuid.ac |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/uuid/ChangeLog 1.19 -> 1.20
--- ChangeLog 2004/01/15 20:26:18 1.19
+++ ChangeLog 2004/01/16 15:35:37 1.20
@@ -13,7 +13,8 @@
Changes between 0.9.2 and 0.9.3 (15-Jan-2004 to xx-Jan-2004)
- o ...
+ o Fix syntax error in uuid.ac.
+ [Ralf S. Engelschall]
Changes between 0.9.1 and 0.9.2 (13-Jan-2004 to 15-Jan-2004)
|
|
ossp-pkg/uuid/uuid.ac 1.8 -> 1.9
--- uuid.ac 2004/01/15 16:22:09 1.8
+++ uuid.ac 2004/01/16 15:35:37 1.9
@@ -74,7 +74,7 @@
AC_ARG_WITH(rfc2518,
AC_HELP_STRING([--with-rfc2518], [use incorrect generation of IEEE 802 multicast addresses according to RFC2518]),
[ac_cv_with_rfc2518=$withval], [ac_cv_with_rfc2518=no])
- if test ".$ac_cv_with_rfc2518" == .yes; then
+ if test ".$ac_cv_with_rfc2518" = ".yes"; then
AC_DEFINE(WITH_RFC2518, 1, [whether to use incorrect generation of IEEE 802 multicast addresses according to RFC2518])
fi
])
|
|