Build on MacOS.
[openssl.git] / util / pl / unix.pl
index 40e361b2f98ea661c10093a27f0b2f00f10fbb61..dbe8fc2ed28e9193a3b47639742a58d97b812424 100644 (file)
@@ -72,6 +72,11 @@ $bf_enc_src="";
          'ghash-x86_64' => 'crypto/modes',
          'aesni-gcm-x86_64' => 'crypto/modes',
          'aesni-sha256-x86_64' => 'crypto/aes',
+          'rsaz-x86_64' => 'crypto/bn',
+          'rsaz-avx2' => 'crypto/bn',
+         'aesni-mb-x86_64' => 'crypto/aes',
+         'sha1-mb-x86_64' => 'crypto/sha',
+         'sha256-mb-x86_64' => 'crypto/sha',
          );
 
 # If I were feeling more clever, these could probably be extracted
@@ -82,6 +87,9 @@ sub platform_perlasm_compile_target
 
        for $p (keys %perl1)
                {
+# FIXME: export CC so rsaz-avx2 can test for it, since BSD make does
+# not export variables, unlike GNU make. But this also requires fixing
+# the .s.o rule to use CC!
                if ($target eq "\$(OBJ_D)/$p.o")
                        {
                        return << "EOF";
@@ -130,7 +138,7 @@ sub special_compile_target
                {
                return << "EOF";
 \$(TMP_D)/x86_64-gcc.o:        crypto/bn/asm/x86_64-gcc.c
-       \$(CC) \$(CFLAGS) -c -o \$@ crypto/bn/asm/x86_64-gcc.c
+       \$(CC) \$(LIB_CFLAGS) -c -o \$@ crypto/bn/asm/x86_64-gcc.c
 EOF
                }
        return undef;
@@ -396,6 +404,7 @@ sub get_tests
                 'testss',
                 'testssl',
                 'testsslproxy',
+                'serverinfo.pem',
               );
   my $copies = copy_scripts(1, 'test', @copies);
   $copies .= copy_scripts(0, 'test', ('smcont.txt'));