diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2017-05-09 21:33:31 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2017-05-09 21:33:31 (GMT) |
commit | 423af0cc5eaf12162c1b934e34d3d489027e498d (patch) | |
tree | 48731f586c4bb4ed7bcd05ae2b062bcd108df272 /openssl | |
parent | 1bbcadbbf51acf6737841266505cb3a230ca690f (diff) | |
download | blt-423af0cc5eaf12162c1b934e34d3d489027e498d.zip blt-423af0cc5eaf12162c1b934e34d3d489027e498d.tar.gz blt-423af0cc5eaf12162c1b934e34d3d489027e498d.tar.bz2 |
minor tweak of windows install
Diffstat (limited to 'openssl')
-rw-r--r-- | openssl/apps/CA.pl | 2 | ||||
-rw-r--r-- | openssl/crypto/opensslconf.h | 26 | ||||
-rw-r--r-- | openssl/tools/c_rehash | 6 |
3 files changed, 22 insertions, 12 deletions
diff --git a/openssl/apps/CA.pl b/openssl/apps/CA.pl index 43c20b2..d13c368 100644 --- a/openssl/apps/CA.pl +++ b/openssl/apps/CA.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/perl.exe # # CA - wrapper around ca to make it easier to use ... basically ca requires # some setup stuff to be done before you can use it and this makes diff --git a/openssl/crypto/opensslconf.h b/openssl/crypto/opensslconf.h index f533508..335c6d5 100644 --- a/openssl/crypto/opensslconf.h +++ b/openssl/crypto/opensslconf.h @@ -5,6 +5,9 @@ extern "C" { #endif /* OpenSSL was configured with the following options: */ +#ifndef OPENSSL_SYSNAME_MINGW64 +# define OPENSSL_SYSNAME_MINGW64 +#endif #ifndef OPENSSL_DOING_MAKEDEPEND @@ -53,8 +56,14 @@ extern "C" { #endif /* OPENSSL_DOING_MAKEDEPEND */ -#ifndef OPENSSL_NO_DYNAMIC_ENGINE -# define OPENSSL_NO_DYNAMIC_ENGINE +#ifndef OPENSSL_THREADS +# define OPENSSL_THREADS +#endif +#ifndef OPENSSL_NO_ASM +# define OPENSSL_NO_ASM +#endif +#ifndef OPENSSL_NO_STATIC_ENGINE +# define OPENSSL_NO_STATIC_ENGINE #endif /* The OPENSSL_NO_* macros are also defined as NO_* if the application @@ -113,8 +122,8 @@ extern "C" { #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) -#define ENGINESDIR "/usr/local/ssl/lib/engines" -#define OPENSSLDIR "/usr/local/ssl" +#define ENGINESDIR "/home/joye/SAOImageDS9/lib/engines" +#define OPENSSLDIR "/home/joye/SAOImageDS9/ssl" #endif #endif @@ -122,6 +131,7 @@ extern "C" { #define OPENSSL_UNISTD <unistd.h> #undef OPENSSL_EXPORT_VAR_AS_FUNCTION +#define OPENSSL_EXPORT_VAR_AS_FUNCTION #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) #define IDEA_INT unsigned int @@ -152,7 +162,7 @@ extern "C" { * This enables code handling data aligned at natural CPU word * boundary. See crypto/rc4/rc4_enc.c for further details. */ -#undef RC4_CHUNK +#define RC4_CHUNK unsigned long long #endif #endif @@ -160,7 +170,7 @@ extern "C" { /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a * %20 speed up (longs are 8 bytes, int's are 4). */ #ifndef DES_LONG -#define DES_LONG unsigned long +#define DES_LONG unsigned int #endif #endif @@ -172,8 +182,8 @@ extern "C" { /* Only one for the following should be defined */ #undef SIXTY_FOUR_BIT_LONG -#undef SIXTY_FOUR_BIT -#define THIRTY_TWO_BIT +#define SIXTY_FOUR_BIT +#undef THIRTY_TWO_BIT #endif #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) diff --git a/openssl/tools/c_rehash b/openssl/tools/c_rehash index 6a27c02..7941491 100644 --- a/openssl/tools/c_rehash +++ b/openssl/tools/c_rehash @@ -1,10 +1,10 @@ -#!/usr/bin/perl +#!/usr/bin/perl.exe # Perl c_rehash script, scan all files in a directory # and add symbolic links to their hash values. -my $dir = "/usr/local/ssl"; -my $prefix = "/usr/local/ssl"; +my $dir = "/home/joye/SAOImageDS9/ssl"; +my $prefix = "/home/joye/SAOImageDS9"; my $openssl = $ENV{OPENSSL} || "openssl"; my $pwd; |