Home | History | Annotate | Line # | Download | only in Configurations
      1  1.1  christos # We can't make any commitment to support the DJGPP platform,
      2  1.1  christos # and rely entirely on the OpenSSL community to help is fine
      3  1.1  christos # tune and test.
      4  1.1  christos 
      5  1.1  christos my %targets = (
      6  1.1  christos     "DJGPP" => {
      7  1.1  christos         inherit_from     => [ "BASE_unix" ],
      8  1.1  christos         CC               => "gcc",
      9  1.1  christos         CFLAGS           => "-fomit-frame-pointer -O2 -Wall",
     10  1.1  christos         cflags           => "-I/dev/env/WATT_ROOT/inc -DTERMIOS -DL_ENDIAN",
     11  1.1  christos         sys_id           => "MSDOS",
     12  1.1  christos         lflags           => add("-L/dev/env/WATT_ROOT/lib"),
     13  1.1  christos         ex_libs          => add("-lwatt"),
     14  1.1  christos         bn_ops           => "BN_LLONG",
     15  1.1  christos         asm_arch         => 'x86',
     16  1.1  christos         perlasm_scheme   => "a.out",
     17  1.1  christos     },
     18  1.1  christos );
     19