Ultrix compatibility.
Submitted by: Bernhard Simon <simon@zid.tuwien.ac.at>
This commit is contained in:
parent
ff6a143b37
commit
9d07a3c9a5
2 changed files with 6 additions and 1 deletions
|
@ -179,7 +179,7 @@ my %table=(
|
|||
|
||||
# IBM's AIX.
|
||||
"aix-cc", "cc:-O -DAIX -DB_ENDIAN::BN_LLONG RC4_CHAR:::",
|
||||
"aix-gcc", "gcc:-O2 -DAIX -DB_ENDIAN::BN_LLONG RC4_CHAR:::",
|
||||
"aix-gcc", "gcc:-O3 -DAIX -DB_ENDIAN::BN_LLONG RC4_CHAR:::",
|
||||
|
||||
#
|
||||
# Cray T90 (SDSC)
|
||||
|
@ -234,6 +234,7 @@ my %table=(
|
|||
|
||||
# Ultrix from Bernhard Simon <simon@zid.tuwien.ac.at>
|
||||
"ultrix","cc:-std1 -O -Olimit 1000 -DL_ENDIAN::::::",
|
||||
"ultrix-gcc","cc:-O3 -DL_ENDIAN::::::",
|
||||
# K&R C is no longer supported; you need gcc on old Ultrix installations
|
||||
##"ultrix","cc:-O2 -DNOPROTO -DNOCONST -DL_ENDIAN::::::",
|
||||
|
||||
|
|
|
@ -67,8 +67,12 @@
|
|||
#include <errno.h>
|
||||
|
||||
#ifndef WIN32
|
||||
#ifdef __ultrix
|
||||
#include <sys/sylog.h>
|
||||
#else
|
||||
#include <syslog.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include "cryptlib.h"
|
||||
#include "buffer.h"
|
||||
|
|
Loading…
Reference in a new issue