From 6b10d29c1ac7dd4054cdb72e881d3e0213fb7ef0 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Thu, 20 Jun 2019 17:07:25 -0400 Subject: Remove NextStep support Because of that we can remove OPENSSL_UNISTD and some other macros from e_os2.h and opensslconf.h Reviewed-by: Tim Hudson Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/9204) --- CHANGES | 3 +++ Configurations/10-main.conf | 17 ----------------- Configure | 1 - apps/opt.c | 2 +- apps/s_time.c | 2 +- apps/speed.c | 2 +- config | 11 ----------- crypto/rand/rand_egd.c | 2 +- crypto/ui/ui_openssl.c | 6 +----- crypto/uid.c | 4 ++-- e_os.h | 6 +----- include/openssl/e_os2.h | 9 --------- include/openssl/opensslconf.h.in | 3 --- test/ssltest_old.c | 2 +- 14 files changed, 12 insertions(+), 58 deletions(-) diff --git a/CHANGES b/CHANGES index 8b70fa3dc4..f23e9b2feb 100644 --- a/CHANGES +++ b/CHANGES @@ -9,6 +9,9 @@ Changes between 1.1.1 and 3.0.0 [xx XXX xxxx] + *) Removed NextStep support and the macro OPENSSL_UNISTD + [Rich Salz] + *) RC5_32_set_key has been changed to return an int type, with 0 indicating an error and 1 indicating success. In previous versions of OpenSSL this was a void type. If a key was set longer than the maximum possible this diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf index 4f5e3636f4..ad85990287 100644 --- a/Configurations/10-main.conf +++ b/Configurations/10-main.conf @@ -1051,23 +1051,6 @@ my %targets = ( shared_cflag => "-fPIC", }, - "nextstep" => { - inherit_from => [ "BASE_unix" ], - CC => "cc", - CFLAGS => "-O -Wall", - unistd => "", - bn_ops => "BN_LLONG", - thread_scheme => "(unknown)", - }, - "nextstep3.3" => { - inherit_from => [ "BASE_unix" ], - CC => "cc", - CFLAGS => "-O3 -Wall", - unistd => "", - bn_ops => "BN_LLONG", - thread_scheme => "(unknown)", - }, - #### SCO/Caldera targets. # # Originally we had like unixware-*, unixware-*-pentium, unixware-*-p6, etc. diff --git a/Configure b/Configure index 6d9451efcd..987eb748be 100755 --- a/Configure +++ b/Configure @@ -3314,7 +3314,6 @@ sub print_table_entry "includes", "cc", "cflags", - "unistd", "ld", "lflags", "loutflag", diff --git a/apps/opt.c b/apps/opt.c index f4a4e12581..c2a5878ef6 100644 --- a/apps/opt.c +++ b/apps/opt.c @@ -15,7 +15,7 @@ #include "internal/nelem.h" #include #if !defined(OPENSSL_SYS_MSDOS) -# include OPENSSL_UNISTD +# include #endif #include diff --git a/apps/s_time.c b/apps/s_time.c index e436b57ad0..39e3d4bb48 100644 --- a/apps/s_time.c +++ b/apps/s_time.c @@ -24,7 +24,7 @@ #include #include #if !defined(OPENSSL_SYS_MSDOS) -# include OPENSSL_UNISTD +# include #endif #define SSL_CONNECT_NAME "localhost:4433" diff --git a/apps/speed.c b/apps/speed.c index 0f3ca9ca76..b0cbdf43bb 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -29,7 +29,7 @@ #include #include #if !defined(OPENSSL_SYS_MSDOS) -# include OPENSSL_UNISTD +# include #endif #if defined(_WIN32) diff --git a/config b/config index 0755961ec6..755d5387ff 100755 --- a/config +++ b/config @@ -349,17 +349,6 @@ if [ -d /usr/apollo ]; then exit 0 fi -# Now NeXT -ISNEXT=`hostinfo 2>/dev/null` -case "$ISNEXT" in - *'NeXT Mach 3.3'*) - echo "whatever-next-nextstep3.3"; exit 0 - ;; - *NeXT*) - echo "whatever-next-nextstep"; exit 0 - ;; -esac - # At this point we gone through all the one's # we know of: Punt diff --git a/crypto/rand/rand_egd.c b/crypto/rand/rand_egd.c index ef552119b8..bac8d609c4 100644 --- a/crypto/rand/rand_egd.c +++ b/crypto/rand/rand_egd.c @@ -38,7 +38,7 @@ int RAND_egd_bytes(const char *path, int bytes) # else -# include OPENSSL_UNISTD +# include # include # include # include diff --git a/crypto/ui/ui_openssl.c b/crypto/ui/ui_openssl.c index 2b5e5c1f02..4c1ec554ba 100644 --- a/crypto/ui/ui_openssl.c +++ b/crypto/ui/ui_openssl.c @@ -34,11 +34,7 @@ # include # if !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VMS) -# ifdef OPENSSL_UNISTD -# include OPENSSL_UNISTD -# else -# include -# endif +# include /* * If unistd.h defines _POSIX_VERSION, we conclude that we are on a POSIX * system and have sigaction and termios. diff --git a/crypto/uid.c b/crypto/uid.c index 3ae93f6b47..55e276dfe4 100644 --- a/crypto/uid.c +++ b/crypto/uid.c @@ -19,7 +19,7 @@ int OPENSSL_issetugid(void) #elif defined(__OpenBSD__) || (defined(__FreeBSD__) && __FreeBSD__ > 2) || defined(__DragonFly__) -# include OPENSSL_UNISTD +# include int OPENSSL_issetugid(void) { @@ -28,7 +28,7 @@ int OPENSSL_issetugid(void) #else -# include OPENSSL_UNISTD +# include # include # if defined(__GLIBC__) && defined(__GLIBC_PREREQ) diff --git a/e_os.h b/e_os.h index 95ec0d6976..5c887d4279 100644 --- a/e_os.h +++ b/e_os.h @@ -257,11 +257,7 @@ extern FILE *_imp___iob; # else /* !defined VMS */ -# ifdef OPENSSL_UNISTD -# include OPENSSL_UNISTD -# else -# include -# endif +# include # include # ifdef OPENSSL_SYS_WIN32_CYGWIN # include diff --git a/include/openssl/e_os2.h b/include/openssl/e_os2.h index 50ce937fd1..250b3e2471 100644 --- a/include/openssl/e_os2.h +++ b/include/openssl/e_os2.h @@ -136,15 +136,6 @@ extern "C" { * That's it for OS-specific stuff *****************************************************************************/ -/* Specials for I/O an exit */ -# ifdef OPENSSL_SYS_MSDOS -# define OPENSSL_UNISTD_IO -# define OPENSSL_DECLARE_EXIT extern void exit(int); -# else -# define OPENSSL_UNISTD_IO OPENSSL_UNISTD -# define OPENSSL_DECLARE_EXIT /* declared in unistd.h */ -# endif - /*- * OPENSSL_EXTERN is normally used to declare a symbol with possible extra * attributes to handle its presence in a shared library. diff --git a/include/openssl/opensslconf.h.in b/include/openssl/opensslconf.h.in index ca680bc388..0f99079c5c 100644 --- a/include/openssl/opensslconf.h.in +++ b/include/openssl/opensslconf.h.in @@ -165,9 +165,6 @@ extern "C" { /* Generate 80386 code? */ {- $config{processor} eq "386" ? "# define" : "# undef" -} I386_ONLY -# undef OPENSSL_UNISTD -# define OPENSSL_UNISTD {- $target{unistd} -} - {- $config{export_var_as_fn} ? "# define" : "# undef" -} OPENSSL_EXPORT_VAR_AS_FUNCTION /* diff --git a/test/ssltest_old.c b/test/ssltest_old.c index 390ca88bb7..971015c6e6 100644 --- a/test/ssltest_old.c +++ b/test/ssltest_old.c @@ -71,7 +71,7 @@ #ifdef OPENSSL_SYS_WINDOWS # include #else -# include OPENSSL_UNISTD +# include #endif static SSL_CTX *s_ctx = NULL; -- cgit v1.2.1