50-djgpp.conf 554 B

123456789101112131415
  1. # We can't make any commitment to support the DJGPP platform,
  2. # and rely entirely on the OpenSSL community to help is fine
  3. # tune and test.
  4. %targets = (
  5. "DJGPP" => {
  6. inherit_from => [ asm("x86_asm") ],
  7. cc => "gcc",
  8. cflags => "-I/dev/env/WATT_ROOT/inc -DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O2 -Wall",
  9. sys_id => "MSDOS",
  10. ex_libs => add("-L/dev/env/WATT_ROOT/lib -lwatt"),
  11. bn_ops => "BN_LLONG",
  12. perlasm_scheme => "a.out",
  13. },
  14. );