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