Because the contents of openssl.pc may have to change when a configuration
[openssl.git] / crypto / perlasm / x86asm.pl
index bbbc1cb91a298f48e25f6f1c36248407ddbc0b74..9a3d85b0984b2e3448154c97e0f081e76db06c9a 100644 (file)
@@ -18,17 +18,21 @@ sub main'asm_init
        ($type,$fn,$i386)=@_;
        $filename=$fn;
 
-       $cpp=$sol=$aout=$win32=0;
+       $cpp=$sol=$aout=$win32=$gaswin=0;
        if (    ($type eq "elf"))
                { require "x86unix.pl"; }
        elsif ( ($type eq "a.out"))
                { $aout=1; require "x86unix.pl"; }
+       elsif ( ($type eq "gaswin"))
+               { $gaswin=1; $aout=1; require "x86unix.pl"; }
        elsif ( ($type eq "sol"))
                { $sol=1; require "x86unix.pl"; }
        elsif ( ($type eq "cpp"))
                { $cpp=1; require "x86unix.pl"; }
        elsif ( ($type eq "win32"))
                { $win32=1; require "x86ms.pl"; }
+       elsif ( ($type eq "win32n"))
+               { $win32=1; require "x86nasm.pl"; }
        else
                {
                print STDERR <<"EOF";
@@ -38,6 +42,7 @@ Pick one target type from
        sol     - x86 solaris
        cpp     - format so x86unix.cpp can be used
        win32   - Windows 95/Windows NT
+       win32n  - Windows 95/Windows NT NASM format
 EOF
                exit(1);
                }
@@ -47,7 +52,7 @@ EOF
 &comment("Don't even think of reading this code");
 &comment("It was automatically generated by $filename");
 &comment("Which is a perl program used to generate the x86 assember for");
-&comment("any of elf, a.out, BSDI,Win32, or Solaris");
+&comment("any of elf, a.out, BSDI, Win32, gaswin (for GNU as on Win32) or Solaris");
 &comment("eric <eay\@cryptsoft.com>");
 &comment("");
 
@@ -82,6 +87,12 @@ $tmp
 #ifdef OUT
 #define OK     1
 #define ALIGN  4
+#if defined(__CYGWIN__) || defined(__DJGPP__)
+#undef SIZE
+#undef TYPE
+#define SIZE(a,b)
+#define TYPE(a,b)
+#endif /* __CYGWIN || __DJGPP */
 #endif
 
 #if defined(BSDI) && !defined(ELF)