diff options
author | Richard Levitte <levitte@openssl.org> | 2001-02-22 15:45:02 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2001-02-22 15:45:02 +0100 |
commit | 41d2a336eee7fcf7beda0ce38e0ef7fc16bbfdb1 (patch) | |
tree | dcad6fa950b6c4403a3ede282062c3c24ce75b0d /apps/makeapps.com | |
parent | Since RAND_file_name() uses strlen, make sure the number that's (diff) | |
download | openssl-41d2a336eee7fcf7beda0ce38e0ef7fc16bbfdb1.tar.xz openssl-41d2a336eee7fcf7beda0ce38e0ef7fc16bbfdb1.zip |
e_os.h does not belong with the exported headers. Do not put it there
and make all files the depend on it include it without prefixing it
with openssl/.
This means that all Makefiles will have $(TOP) as one of the include
directories.
Diffstat (limited to 'apps/makeapps.com')
-rw-r--r-- | apps/makeapps.com | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/makeapps.com b/apps/makeapps.com index ce6f1a2d11..d6651433dd 100644 --- a/apps/makeapps.com +++ b/apps/makeapps.com @@ -838,7 +838,8 @@ $ CC = "CC" $ IF ARCH.EQS."VAX" .AND. F$TRNLNM("DECC$CC_DEFAULT").NES."/DECC" - THEN CC = "CC/DECC" $ CC = CC + "/''CC_OPTIMIZE'/''DEBUGGER'/STANDARD=ANSI89" + - - "/NOLIST/PREFIX=ALL" + CCEXTRAFLAGS + "/NOLIST/PREFIX=ALL" + - + "/INCLUDE=(SYS$DISK:[-])" + CCEXTRAFLAGS $! $! Define The Linker Options File Name. $! @@ -869,7 +870,8 @@ $ WRITE SYS$OUTPUT "There is no VAX C on Alpha!" $ EXIT $ ENDIF $ IF F$TRNLNM("DECC$CC_DEFAULT").EQS."/DECC" THEN CC = "CC/VAXC" -$ CC = CC + "/''CC_OPTIMIZE'/''DEBUGGER'/NOLIST" + CCEXTRAFLAGS +$ CC = CC + "/''CC_OPTIMIZE'/''DEBUGGER'/NOLIST" + - + "/INCLUDE=(SYS$DISK:[-])" + CCEXTRAFLAGS $ CCDEFS = CCDEFS + ",""VAXC""" $! $! Define <sys> As SYS$COMMON:[SYSLIB] @@ -900,7 +902,8 @@ $! $! Use GNU C... $! $ IF F$TYPE(GCC) .EQS. "" THEN GCC := GCC -$ CC = GCC+"/NOCASE_HACK/''GCC_OPTIMIZE'/''DEBUGGER'/NOLIST" + CCEXTRAFLAGS +$ CC = GCC+"/NOCASE_HACK/''GCC_OPTIMIZE'/''DEBUGGER'/NOLIST" + - + "/INCLUDE=(SYS$DISK:[-])" + CCEXTRAFLAGS $! $! Define The Linker Options File Name. $! |