From: Guenter Date: Thu, 27 Nov 2014 13:33:47 +0000 (+0000) Subject: NetWare compilation fix. X-Git-Tag: OpenSSL_1_0_1k~82 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=51c5ab5d3a6a71618e364c5c73492f87fc7ed661;p=oweals%2Fopenssl.git NetWare compilation fix. Workaround for NetWare CodeWarrior compiler which doesn't properly lookup includes when in same directory as the C file which includes it. PR#3569 Reviewed-by: Stephen Henson Reviewed-by: Richard Levitte (cherry picked from commit 333fad9f2de1dea99552fcb424b312ca1a390f85) --- diff --git a/util/pl/netware.pl b/util/pl/netware.pl index c78bcfc874..fe80a9bb89 100644 --- a/util/pl/netware.pl +++ b/util/pl/netware.pl @@ -212,7 +212,7 @@ else # Turned off the "possible" warnings ( -w nopossible ). Metrowerks # complained a lot about various stuff. May want to turn back # on for further development. - $cflags.=" -nostdinc -ir crypto -ir engines -ir apps -I$include_path \\ + $cflags.=" -nostdinc -ir crypto -ir ssl -ir engines -ir apps -I$include_path \\ -msgstyle gcc -align 4 -processor pentium -char unsigned \\ -w on -w nolargeargs -w nopossible -w nounusedarg -w nounusedexpr \\ -w noimplicitconv -relax_pointers -nosyspath -maxerrors 20";