Fossil SCM
Merge updates from trunk.
Commit
0e4247f92f1d31479ab5b80bc1a6d7b1df54dc65
Parent
a02d847edb8c2d1…
6 files changed
+2
-2
+5
-3
+1
-1
+1
-1
+1
-1
+1
-1
+2
-2
| --- src/makemake.tcl | ||
| +++ src/makemake.tcl | ||
| @@ -597,11 +597,11 @@ | ||
| 597 | 597 | #### The directories where the OpenSSL include and library files are located. |
| 598 | 598 | # The recommended usage here is to use the Sysinternals junction tool |
| 599 | 599 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 600 | 600 | # Fossil source code directory and the target OpenSSL source directory. |
| 601 | 601 | # |
| 602 | -OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2c | |
| 602 | +OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2d | |
| 603 | 603 | OPENSSLINCDIR = $(OPENSSLDIR)/include |
| 604 | 604 | OPENSSLLIBDIR = $(OPENSSLDIR) |
| 605 | 605 | |
| 606 | 606 | #### Either the directory where the Tcl library is installed or the Tcl |
| 607 | 607 | # source code directory resides (depending on the value of the macro |
| @@ -1373,11 +1373,11 @@ | ||
| 1373 | 1373 | !ifndef FOSSIL_ENABLE_WINXP |
| 1374 | 1374 | FOSSIL_ENABLE_WINXP = 0 |
| 1375 | 1375 | !endif |
| 1376 | 1376 | |
| 1377 | 1377 | !if $(FOSSIL_ENABLE_SSL)!=0 |
| 1378 | -SSLDIR = $(B)\compat\openssl-1.0.2c | |
| 1378 | +SSLDIR = $(B)\compat\openssl-1.0.2d | |
| 1379 | 1379 | SSLINCDIR = $(SSLDIR)\inc32 |
| 1380 | 1380 | !if $(FOSSIL_DYNAMIC_BUILD)!=0 |
| 1381 | 1381 | SSLLIBDIR = $(SSLDIR)\out32dll |
| 1382 | 1382 | !else |
| 1383 | 1383 | SSLLIBDIR = $(SSLDIR)\out32 |
| 1384 | 1384 |
| --- src/makemake.tcl | |
| +++ src/makemake.tcl | |
| @@ -597,11 +597,11 @@ | |
| 597 | #### The directories where the OpenSSL include and library files are located. |
| 598 | # The recommended usage here is to use the Sysinternals junction tool |
| 599 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 600 | # Fossil source code directory and the target OpenSSL source directory. |
| 601 | # |
| 602 | OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2c |
| 603 | OPENSSLINCDIR = $(OPENSSLDIR)/include |
| 604 | OPENSSLLIBDIR = $(OPENSSLDIR) |
| 605 | |
| 606 | #### Either the directory where the Tcl library is installed or the Tcl |
| 607 | # source code directory resides (depending on the value of the macro |
| @@ -1373,11 +1373,11 @@ | |
| 1373 | !ifndef FOSSIL_ENABLE_WINXP |
| 1374 | FOSSIL_ENABLE_WINXP = 0 |
| 1375 | !endif |
| 1376 | |
| 1377 | !if $(FOSSIL_ENABLE_SSL)!=0 |
| 1378 | SSLDIR = $(B)\compat\openssl-1.0.2c |
| 1379 | SSLINCDIR = $(SSLDIR)\inc32 |
| 1380 | !if $(FOSSIL_DYNAMIC_BUILD)!=0 |
| 1381 | SSLLIBDIR = $(SSLDIR)\out32dll |
| 1382 | !else |
| 1383 | SSLLIBDIR = $(SSLDIR)\out32 |
| 1384 |
| --- src/makemake.tcl | |
| +++ src/makemake.tcl | |
| @@ -597,11 +597,11 @@ | |
| 597 | #### The directories where the OpenSSL include and library files are located. |
| 598 | # The recommended usage here is to use the Sysinternals junction tool |
| 599 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 600 | # Fossil source code directory and the target OpenSSL source directory. |
| 601 | # |
| 602 | OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2d |
| 603 | OPENSSLINCDIR = $(OPENSSLDIR)/include |
| 604 | OPENSSLLIBDIR = $(OPENSSLDIR) |
| 605 | |
| 606 | #### Either the directory where the Tcl library is installed or the Tcl |
| 607 | # source code directory resides (depending on the value of the macro |
| @@ -1373,11 +1373,11 @@ | |
| 1373 | !ifndef FOSSIL_ENABLE_WINXP |
| 1374 | FOSSIL_ENABLE_WINXP = 0 |
| 1375 | !endif |
| 1376 | |
| 1377 | !if $(FOSSIL_ENABLE_SSL)!=0 |
| 1378 | SSLDIR = $(B)\compat\openssl-1.0.2d |
| 1379 | SSLINCDIR = $(SSLDIR)\inc32 |
| 1380 | !if $(FOSSIL_DYNAMIC_BUILD)!=0 |
| 1381 | SSLLIBDIR = $(SSLDIR)\out32dll |
| 1382 | !else |
| 1383 | SSLLIBDIR = $(SSLDIR)\out32 |
| 1384 |
+5
-3
| --- src/th_tcl.c | ||
| +++ src/th_tcl.c | ||
| @@ -82,10 +82,11 @@ | ||
| 82 | 82 | # if defined(_WIN32) |
| 83 | 83 | # if !defined(WIN32_LEAN_AND_MEAN) |
| 84 | 84 | # define WIN32_LEAN_AND_MEAN |
| 85 | 85 | # endif |
| 86 | 86 | # if !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0502) |
| 87 | +# undef _WIN32_WINNT | |
| 87 | 88 | # define _WIN32_WINNT 0x0502 /* SetDllDirectory, Windows XP SP2 */ |
| 88 | 89 | # endif |
| 89 | 90 | # include <windows.h> |
| 90 | 91 | # ifndef TCL_DIRECTORY_SEP |
| 91 | 92 | # define TCL_DIRECTORY_SEP '\\' |
| @@ -342,11 +343,11 @@ | ||
| 342 | 343 | */ |
| 343 | 344 | static const char *getTclReturnCodeName( |
| 344 | 345 | int rc, |
| 345 | 346 | int nullIfOk |
| 346 | 347 | ){ |
| 347 | - static char zRc[32]; | |
| 348 | + static char zRc[TCL_INTEGER_SPACE + 17]; /* "Tcl return code\0" */ | |
| 348 | 349 | |
| 349 | 350 | switch( rc ){ |
| 350 | 351 | case TCL_OK: return nullIfOk ? 0 : "TCL_OK"; |
| 351 | 352 | case TCL_ERROR: return "TCL_ERROR"; |
| 352 | 353 | case TCL_RETURN: return "TCL_RETURN"; |
| @@ -395,11 +396,11 @@ | ||
| 395 | 396 | tcl_DeleteInterpProc *xDeleteInterp; /* Tcl_DeleteInterp() pointer. */ |
| 396 | 397 | tcl_FinalizeProc *xFinalize; /* Tcl_Finalize() pointer. */ |
| 397 | 398 | Tcl_Interp *interp; /* The on-demand created Tcl interpreter. */ |
| 398 | 399 | int useObjProc; /* Non-zero if an objProc can be called directly. */ |
| 399 | 400 | int useTip285; /* Non-zero if TIP #285 is available. */ |
| 400 | - char *setup; /* The optional Tcl setup script. */ | |
| 401 | + const char *setup; /* The optional Tcl setup script. */ | |
| 401 | 402 | tcl_NotifyProc *xPreEval; /* Optional, called before Tcl_Eval*(). */ |
| 402 | 403 | void *pPreContext; /* Optional, provided to xPreEval(). */ |
| 403 | 404 | tcl_NotifyProc *xPostEval; /* Optional, called after Tcl_Eval*(). */ |
| 404 | 405 | void *pPostContext; /* Optional, provided to xPostEval(). */ |
| 405 | 406 | }; |
| @@ -791,10 +792,11 @@ | ||
| 791 | 792 | if( zDirName ){ |
| 792 | 793 | fossil_free(zDirName); zDirName = 0; |
| 793 | 794 | } |
| 794 | 795 | #endif /* TCL_USE_SET_DLL_DIRECTORY */ |
| 795 | 796 | } |
| 797 | + if( !zFileName ) break; | |
| 796 | 798 | hLibrary = dlopen(zFileName, RTLD_NOW | RTLD_GLOBAL); |
| 797 | 799 | /* NOTE: If the file name was allocated, free it now. */ |
| 798 | 800 | if( zFileName!=aFileName ){ |
| 799 | 801 | sqlite3_free(zFileName); zFileName = 0; |
| 800 | 802 | } |
| @@ -991,11 +993,11 @@ | ||
| 991 | 993 | struct TclContext *tclContext = (struct TclContext *)pContext; |
| 992 | 994 | int argc; |
| 993 | 995 | char **argv; |
| 994 | 996 | char *argv0 = 0; |
| 995 | 997 | Tcl_Interp *tclInterp; |
| 996 | - char *setup; | |
| 998 | + const char *setup; | |
| 997 | 999 | |
| 998 | 1000 | if( !tclContext ){ |
| 999 | 1001 | Th_ErrorMessage(interp, |
| 1000 | 1002 | "invalid Tcl context", (const char *)"", 0); |
| 1001 | 1003 | return TH_ERROR; |
| 1002 | 1004 |
| --- src/th_tcl.c | |
| +++ src/th_tcl.c | |
| @@ -82,10 +82,11 @@ | |
| 82 | # if defined(_WIN32) |
| 83 | # if !defined(WIN32_LEAN_AND_MEAN) |
| 84 | # define WIN32_LEAN_AND_MEAN |
| 85 | # endif |
| 86 | # if !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0502) |
| 87 | # define _WIN32_WINNT 0x0502 /* SetDllDirectory, Windows XP SP2 */ |
| 88 | # endif |
| 89 | # include <windows.h> |
| 90 | # ifndef TCL_DIRECTORY_SEP |
| 91 | # define TCL_DIRECTORY_SEP '\\' |
| @@ -342,11 +343,11 @@ | |
| 342 | */ |
| 343 | static const char *getTclReturnCodeName( |
| 344 | int rc, |
| 345 | int nullIfOk |
| 346 | ){ |
| 347 | static char zRc[32]; |
| 348 | |
| 349 | switch( rc ){ |
| 350 | case TCL_OK: return nullIfOk ? 0 : "TCL_OK"; |
| 351 | case TCL_ERROR: return "TCL_ERROR"; |
| 352 | case TCL_RETURN: return "TCL_RETURN"; |
| @@ -395,11 +396,11 @@ | |
| 395 | tcl_DeleteInterpProc *xDeleteInterp; /* Tcl_DeleteInterp() pointer. */ |
| 396 | tcl_FinalizeProc *xFinalize; /* Tcl_Finalize() pointer. */ |
| 397 | Tcl_Interp *interp; /* The on-demand created Tcl interpreter. */ |
| 398 | int useObjProc; /* Non-zero if an objProc can be called directly. */ |
| 399 | int useTip285; /* Non-zero if TIP #285 is available. */ |
| 400 | char *setup; /* The optional Tcl setup script. */ |
| 401 | tcl_NotifyProc *xPreEval; /* Optional, called before Tcl_Eval*(). */ |
| 402 | void *pPreContext; /* Optional, provided to xPreEval(). */ |
| 403 | tcl_NotifyProc *xPostEval; /* Optional, called after Tcl_Eval*(). */ |
| 404 | void *pPostContext; /* Optional, provided to xPostEval(). */ |
| 405 | }; |
| @@ -791,10 +792,11 @@ | |
| 791 | if( zDirName ){ |
| 792 | fossil_free(zDirName); zDirName = 0; |
| 793 | } |
| 794 | #endif /* TCL_USE_SET_DLL_DIRECTORY */ |
| 795 | } |
| 796 | hLibrary = dlopen(zFileName, RTLD_NOW | RTLD_GLOBAL); |
| 797 | /* NOTE: If the file name was allocated, free it now. */ |
| 798 | if( zFileName!=aFileName ){ |
| 799 | sqlite3_free(zFileName); zFileName = 0; |
| 800 | } |
| @@ -991,11 +993,11 @@ | |
| 991 | struct TclContext *tclContext = (struct TclContext *)pContext; |
| 992 | int argc; |
| 993 | char **argv; |
| 994 | char *argv0 = 0; |
| 995 | Tcl_Interp *tclInterp; |
| 996 | char *setup; |
| 997 | |
| 998 | if( !tclContext ){ |
| 999 | Th_ErrorMessage(interp, |
| 1000 | "invalid Tcl context", (const char *)"", 0); |
| 1001 | return TH_ERROR; |
| 1002 |
| --- src/th_tcl.c | |
| +++ src/th_tcl.c | |
| @@ -82,10 +82,11 @@ | |
| 82 | # if defined(_WIN32) |
| 83 | # if !defined(WIN32_LEAN_AND_MEAN) |
| 84 | # define WIN32_LEAN_AND_MEAN |
| 85 | # endif |
| 86 | # if !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0502) |
| 87 | # undef _WIN32_WINNT |
| 88 | # define _WIN32_WINNT 0x0502 /* SetDllDirectory, Windows XP SP2 */ |
| 89 | # endif |
| 90 | # include <windows.h> |
| 91 | # ifndef TCL_DIRECTORY_SEP |
| 92 | # define TCL_DIRECTORY_SEP '\\' |
| @@ -342,11 +343,11 @@ | |
| 343 | */ |
| 344 | static const char *getTclReturnCodeName( |
| 345 | int rc, |
| 346 | int nullIfOk |
| 347 | ){ |
| 348 | static char zRc[TCL_INTEGER_SPACE + 17]; /* "Tcl return code\0" */ |
| 349 | |
| 350 | switch( rc ){ |
| 351 | case TCL_OK: return nullIfOk ? 0 : "TCL_OK"; |
| 352 | case TCL_ERROR: return "TCL_ERROR"; |
| 353 | case TCL_RETURN: return "TCL_RETURN"; |
| @@ -395,11 +396,11 @@ | |
| 396 | tcl_DeleteInterpProc *xDeleteInterp; /* Tcl_DeleteInterp() pointer. */ |
| 397 | tcl_FinalizeProc *xFinalize; /* Tcl_Finalize() pointer. */ |
| 398 | Tcl_Interp *interp; /* The on-demand created Tcl interpreter. */ |
| 399 | int useObjProc; /* Non-zero if an objProc can be called directly. */ |
| 400 | int useTip285; /* Non-zero if TIP #285 is available. */ |
| 401 | const char *setup; /* The optional Tcl setup script. */ |
| 402 | tcl_NotifyProc *xPreEval; /* Optional, called before Tcl_Eval*(). */ |
| 403 | void *pPreContext; /* Optional, provided to xPreEval(). */ |
| 404 | tcl_NotifyProc *xPostEval; /* Optional, called after Tcl_Eval*(). */ |
| 405 | void *pPostContext; /* Optional, provided to xPostEval(). */ |
| 406 | }; |
| @@ -791,10 +792,11 @@ | |
| 792 | if( zDirName ){ |
| 793 | fossil_free(zDirName); zDirName = 0; |
| 794 | } |
| 795 | #endif /* TCL_USE_SET_DLL_DIRECTORY */ |
| 796 | } |
| 797 | if( !zFileName ) break; |
| 798 | hLibrary = dlopen(zFileName, RTLD_NOW | RTLD_GLOBAL); |
| 799 | /* NOTE: If the file name was allocated, free it now. */ |
| 800 | if( zFileName!=aFileName ){ |
| 801 | sqlite3_free(zFileName); zFileName = 0; |
| 802 | } |
| @@ -991,11 +993,11 @@ | |
| 993 | struct TclContext *tclContext = (struct TclContext *)pContext; |
| 994 | int argc; |
| 995 | char **argv; |
| 996 | char *argv0 = 0; |
| 997 | Tcl_Interp *tclInterp; |
| 998 | const char *setup; |
| 999 | |
| 1000 | if( !tclContext ){ |
| 1001 | Th_ErrorMessage(interp, |
| 1002 | "invalid Tcl context", (const char *)"", 0); |
| 1003 | return TH_ERROR; |
| 1004 |
+1
-1
| --- win/Makefile.mingw | ||
| +++ win/Makefile.mingw | ||
| @@ -150,11 +150,11 @@ | ||
| 150 | 150 | #### The directories where the OpenSSL include and library files are located. |
| 151 | 151 | # The recommended usage here is to use the Sysinternals junction tool |
| 152 | 152 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 153 | 153 | # Fossil source code directory and the target OpenSSL source directory. |
| 154 | 154 | # |
| 155 | -OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2c | |
| 155 | +OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2d | |
| 156 | 156 | OPENSSLINCDIR = $(OPENSSLDIR)/include |
| 157 | 157 | OPENSSLLIBDIR = $(OPENSSLDIR) |
| 158 | 158 | |
| 159 | 159 | #### Either the directory where the Tcl library is installed or the Tcl |
| 160 | 160 | # source code directory resides (depending on the value of the macro |
| 161 | 161 |
| --- win/Makefile.mingw | |
| +++ win/Makefile.mingw | |
| @@ -150,11 +150,11 @@ | |
| 150 | #### The directories where the OpenSSL include and library files are located. |
| 151 | # The recommended usage here is to use the Sysinternals junction tool |
| 152 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 153 | # Fossil source code directory and the target OpenSSL source directory. |
| 154 | # |
| 155 | OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2c |
| 156 | OPENSSLINCDIR = $(OPENSSLDIR)/include |
| 157 | OPENSSLLIBDIR = $(OPENSSLDIR) |
| 158 | |
| 159 | #### Either the directory where the Tcl library is installed or the Tcl |
| 160 | # source code directory resides (depending on the value of the macro |
| 161 |
| --- win/Makefile.mingw | |
| +++ win/Makefile.mingw | |
| @@ -150,11 +150,11 @@ | |
| 150 | #### The directories where the OpenSSL include and library files are located. |
| 151 | # The recommended usage here is to use the Sysinternals junction tool |
| 152 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 153 | # Fossil source code directory and the target OpenSSL source directory. |
| 154 | # |
| 155 | OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2d |
| 156 | OPENSSLINCDIR = $(OPENSSLDIR)/include |
| 157 | OPENSSLLIBDIR = $(OPENSSLDIR) |
| 158 | |
| 159 | #### Either the directory where the Tcl library is installed or the Tcl |
| 160 | # source code directory resides (depending on the value of the macro |
| 161 |
+1
-1
| --- win/Makefile.mingw.mistachkin | ||
| +++ win/Makefile.mingw.mistachkin | ||
| @@ -150,11 +150,11 @@ | ||
| 150 | 150 | #### The directories where the OpenSSL include and library files are located. |
| 151 | 151 | # The recommended usage here is to use the Sysinternals junction tool |
| 152 | 152 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 153 | 153 | # Fossil source code directory and the target OpenSSL source directory. |
| 154 | 154 | # |
| 155 | -OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2c | |
| 155 | +OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2d | |
| 156 | 156 | OPENSSLINCDIR = $(OPENSSLDIR)/include |
| 157 | 157 | OPENSSLLIBDIR = $(OPENSSLDIR) |
| 158 | 158 | |
| 159 | 159 | #### Either the directory where the Tcl library is installed or the Tcl |
| 160 | 160 | # source code directory resides (depending on the value of the macro |
| 161 | 161 |
| --- win/Makefile.mingw.mistachkin | |
| +++ win/Makefile.mingw.mistachkin | |
| @@ -150,11 +150,11 @@ | |
| 150 | #### The directories where the OpenSSL include and library files are located. |
| 151 | # The recommended usage here is to use the Sysinternals junction tool |
| 152 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 153 | # Fossil source code directory and the target OpenSSL source directory. |
| 154 | # |
| 155 | OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2c |
| 156 | OPENSSLINCDIR = $(OPENSSLDIR)/include |
| 157 | OPENSSLLIBDIR = $(OPENSSLDIR) |
| 158 | |
| 159 | #### Either the directory where the Tcl library is installed or the Tcl |
| 160 | # source code directory resides (depending on the value of the macro |
| 161 |
| --- win/Makefile.mingw.mistachkin | |
| +++ win/Makefile.mingw.mistachkin | |
| @@ -150,11 +150,11 @@ | |
| 150 | #### The directories where the OpenSSL include and library files are located. |
| 151 | # The recommended usage here is to use the Sysinternals junction tool |
| 152 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 153 | # Fossil source code directory and the target OpenSSL source directory. |
| 154 | # |
| 155 | OPENSSLDIR = $(SRCDIR)/../compat/openssl-1.0.2d |
| 156 | OPENSSLINCDIR = $(OPENSSLDIR)/include |
| 157 | OPENSSLLIBDIR = $(OPENSSLDIR) |
| 158 | |
| 159 | #### Either the directory where the Tcl library is installed or the Tcl |
| 160 | # source code directory resides (depending on the value of the macro |
| 161 |
+1
-1
| --- win/Makefile.msc | ||
| +++ win/Makefile.msc | ||
| @@ -88,11 +88,11 @@ | ||
| 88 | 88 | !ifndef FOSSIL_ENABLE_WINXP |
| 89 | 89 | FOSSIL_ENABLE_WINXP = 0 |
| 90 | 90 | !endif |
| 91 | 91 | |
| 92 | 92 | !if $(FOSSIL_ENABLE_SSL)!=0 |
| 93 | -SSLDIR = $(B)\compat\openssl-1.0.2c | |
| 93 | +SSLDIR = $(B)\compat\openssl-1.0.2d | |
| 94 | 94 | SSLINCDIR = $(SSLDIR)\inc32 |
| 95 | 95 | !if $(FOSSIL_DYNAMIC_BUILD)!=0 |
| 96 | 96 | SSLLIBDIR = $(SSLDIR)\out32dll |
| 97 | 97 | !else |
| 98 | 98 | SSLLIBDIR = $(SSLDIR)\out32 |
| 99 | 99 |
| --- win/Makefile.msc | |
| +++ win/Makefile.msc | |
| @@ -88,11 +88,11 @@ | |
| 88 | !ifndef FOSSIL_ENABLE_WINXP |
| 89 | FOSSIL_ENABLE_WINXP = 0 |
| 90 | !endif |
| 91 | |
| 92 | !if $(FOSSIL_ENABLE_SSL)!=0 |
| 93 | SSLDIR = $(B)\compat\openssl-1.0.2c |
| 94 | SSLINCDIR = $(SSLDIR)\inc32 |
| 95 | !if $(FOSSIL_DYNAMIC_BUILD)!=0 |
| 96 | SSLLIBDIR = $(SSLDIR)\out32dll |
| 97 | !else |
| 98 | SSLLIBDIR = $(SSLDIR)\out32 |
| 99 |
| --- win/Makefile.msc | |
| +++ win/Makefile.msc | |
| @@ -88,11 +88,11 @@ | |
| 88 | !ifndef FOSSIL_ENABLE_WINXP |
| 89 | FOSSIL_ENABLE_WINXP = 0 |
| 90 | !endif |
| 91 | |
| 92 | !if $(FOSSIL_ENABLE_SSL)!=0 |
| 93 | SSLDIR = $(B)\compat\openssl-1.0.2d |
| 94 | SSLINCDIR = $(SSLDIR)\inc32 |
| 95 | !if $(FOSSIL_DYNAMIC_BUILD)!=0 |
| 96 | SSLLIBDIR = $(SSLDIR)\out32dll |
| 97 | !else |
| 98 | SSLLIBDIR = $(SSLDIR)\out32 |
| 99 |
+1
-1
| --- www/build.wiki | ||
| +++ www/build.wiki | ||
| @@ -135,11 +135,11 @@ | ||
| 135 | 135 | the optional <a href="https://www.openssl.org/">OpenSSL</a> support, |
| 136 | 136 | first <a href="https://www.openssl.org/source/">download the official |
| 137 | 137 | source code for OpenSSL</a> and extract it to an appropriately named |
| 138 | 138 | "<b>openssl-X.Y.ZA</b>" subdirectory within the local |
| 139 | 139 | [/tree?ci=trunk&name=compat | compat] directory (e.g. |
| 140 | -"<b>compat/openssl-1.0.2c</b>"), then make sure that some recent | |
| 140 | +"<b>compat/openssl-1.0.2d</b>"), then make sure that some recent | |
| 141 | 141 | <a href="http://www.perl.org/">Perl</a> binaries are installed locally, |
| 142 | 142 | and finally run one of the following commands: |
| 143 | 143 | <blockquote><pre> |
| 144 | 144 | nmake /f Makefile.msc FOSSIL_ENABLE_SSL=1 FOSSIL_BUILD_SSL=1 PERLDIR=C:\full\path\to\Perl\bin |
| 145 | 145 | </pre></blockquote> |
| 146 | 146 |
| --- www/build.wiki | |
| +++ www/build.wiki | |
| @@ -135,11 +135,11 @@ | |
| 135 | the optional <a href="https://www.openssl.org/">OpenSSL</a> support, |
| 136 | first <a href="https://www.openssl.org/source/">download the official |
| 137 | source code for OpenSSL</a> and extract it to an appropriately named |
| 138 | "<b>openssl-X.Y.ZA</b>" subdirectory within the local |
| 139 | [/tree?ci=trunk&name=compat | compat] directory (e.g. |
| 140 | "<b>compat/openssl-1.0.2c</b>"), then make sure that some recent |
| 141 | <a href="http://www.perl.org/">Perl</a> binaries are installed locally, |
| 142 | and finally run one of the following commands: |
| 143 | <blockquote><pre> |
| 144 | nmake /f Makefile.msc FOSSIL_ENABLE_SSL=1 FOSSIL_BUILD_SSL=1 PERLDIR=C:\full\path\to\Perl\bin |
| 145 | </pre></blockquote> |
| 146 |
| --- www/build.wiki | |
| +++ www/build.wiki | |
| @@ -135,11 +135,11 @@ | |
| 135 | the optional <a href="https://www.openssl.org/">OpenSSL</a> support, |
| 136 | first <a href="https://www.openssl.org/source/">download the official |
| 137 | source code for OpenSSL</a> and extract it to an appropriately named |
| 138 | "<b>openssl-X.Y.ZA</b>" subdirectory within the local |
| 139 | [/tree?ci=trunk&name=compat | compat] directory (e.g. |
| 140 | "<b>compat/openssl-1.0.2d</b>"), then make sure that some recent |
| 141 | <a href="http://www.perl.org/">Perl</a> binaries are installed locally, |
| 142 | and finally run one of the following commands: |
| 143 | <blockquote><pre> |
| 144 | nmake /f Makefile.msc FOSSIL_ENABLE_SSL=1 FOSSIL_BUILD_SSL=1 PERLDIR=C:\full\path\to\Perl\bin |
| 145 | </pre></blockquote> |
| 146 |