The branch master has been updated
       via  7839b735d884cfa10d18c39c79fea48b97fcb634 (commit)
      from  dfbfd0677186173abd3a336899e3ed36913c9c1a (commit)


- Log -----------------------------------------------------------------
commit 7839b735d884cfa10d18c39c79fea48b97fcb634
Author: Mat <[email protected]>
Date:   Tue Feb 9 22:53:14 2016 +0100

    GH649: Fix: version32.rc was not created on Windows
    
    version32.rc was not created on Windows. The if condition has been 
corrected.
    
    Signed-off-by: Rich Salz <[email protected]>
    Reviewed-by: Tim Hudson <[email protected]>

-----------------------------------------------------------------------

Summary of changes:
 Configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Configure b/Configure
index c81a661..afd905c 100755
--- a/Configure
+++ b/Configure
@@ -1796,7 +1796,7 @@ EOF
        close(OUT);
 
        # create the ms/version32.rc file if needed
-       if ($platform eq "netware") {
+       if ($platform ne "netware") {
            my ($v1, $v2, $v3, $v4);
            if ($config{version_num} =~ 
/^0x([0-9a-f]{1})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{1})L$/i) {
                $v1=hex $1;
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to