Index: ossp-pkg/uuid/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v rcsdiff -q -kk '-r1.19' '-r1.20' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v' 2>/dev/null --- 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) Index: ossp-pkg/uuid/uuid.ac RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.ac,v rcsdiff -q -kk '-r1.8' '-r1.9' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.ac,v' 2>/dev/null --- 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 ])