Fossil SCM
Merge in the Mistachkin SSL linking fix.
Commit
f0635d4e034c2fba63d533c6327a27f44f25c218
Parent
75ea5ac672d7b31…
3 files changed
+5
-4
+5
-4
+5
-4
+5
-4
| --- src/makemake.tcl | ||
| +++ src/makemake.tcl | ||
| @@ -359,20 +359,20 @@ | ||
| 359 | 359 | #### The directories where the zlib include and library files are located. |
| 360 | 360 | # The recommended usage here is to use the Sysinternals junction tool |
| 361 | 361 | # to create a hard link between an "zlib-1.x.y" sub-directory of the |
| 362 | 362 | # Fossil source code directory and the target zlib source directory. |
| 363 | 363 | # |
| 364 | -ZINCDIR = $(SRCDIR)/../zlib-1.2.5 | |
| 365 | -ZLIBDIR = $(SRCDIR)/../zlib-1.2.5 | |
| 364 | +ZINCDIR = $(SRCDIR)/../zlib-1.2.6 | |
| 365 | +ZLIBDIR = $(SRCDIR)/../zlib-1.2.6 | |
| 366 | 366 | |
| 367 | 367 | #### The directories where the OpenSSL include and library files are located. |
| 368 | 368 | # The recommended usage here is to use the Sysinternals junction tool |
| 369 | 369 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 370 | 370 | # Fossil source code directory and the target OpenSSL source directory. |
| 371 | 371 | # |
| 372 | -OPENSSLINCDIR = $(SRCDIR)/../openssl-1.0.0e/include | |
| 373 | -OPENSSLLIBDIR = $(SRCDIR)/../openssl-1.0.0e | |
| 372 | +OPENSSLINCDIR = $(SRCDIR)/../openssl-1.0.0g/include | |
| 373 | +OPENSSLLIBDIR = $(SRCDIR)/../openssl-1.0.0g | |
| 374 | 374 | |
| 375 | 375 | #### Either the directory where the Tcl library is installed or the Tcl |
| 376 | 376 | # source code directory resides (depending on the value of the macro |
| 377 | 377 | # FOSSIL_TCL_SOURCE). If this points to the Tcl install directory, |
| 378 | 378 | # this directory must have "include" and "lib" sub-directories. If |
| @@ -409,10 +409,11 @@ | ||
| 409 | 409 | # |
| 410 | 410 | TCC = gcc -Os -Wall -L$(ZLIBDIR) -I$(ZINCDIR) |
| 411 | 411 | |
| 412 | 412 | # With HTTPS support |
| 413 | 413 | ifdef FOSSIL_ENABLE_SSL |
| 414 | +TCC += -Dpqueue_insert=pqueue_insert_fossil | |
| 414 | 415 | TCC += -L$(OPENSSLLIBDIR) -I$(OPENSSLINCDIR) |
| 415 | 416 | endif |
| 416 | 417 | |
| 417 | 418 | # With Tcl support |
| 418 | 419 | ifdef FOSSIL_ENABLE_TCL |
| 419 | 420 |
| --- src/makemake.tcl | |
| +++ src/makemake.tcl | |
| @@ -359,20 +359,20 @@ | |
| 359 | #### The directories where the zlib include and library files are located. |
| 360 | # The recommended usage here is to use the Sysinternals junction tool |
| 361 | # to create a hard link between an "zlib-1.x.y" sub-directory of the |
| 362 | # Fossil source code directory and the target zlib source directory. |
| 363 | # |
| 364 | ZINCDIR = $(SRCDIR)/../zlib-1.2.5 |
| 365 | ZLIBDIR = $(SRCDIR)/../zlib-1.2.5 |
| 366 | |
| 367 | #### The directories where the OpenSSL include and library files are located. |
| 368 | # The recommended usage here is to use the Sysinternals junction tool |
| 369 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 370 | # Fossil source code directory and the target OpenSSL source directory. |
| 371 | # |
| 372 | OPENSSLINCDIR = $(SRCDIR)/../openssl-1.0.0e/include |
| 373 | OPENSSLLIBDIR = $(SRCDIR)/../openssl-1.0.0e |
| 374 | |
| 375 | #### Either the directory where the Tcl library is installed or the Tcl |
| 376 | # source code directory resides (depending on the value of the macro |
| 377 | # FOSSIL_TCL_SOURCE). If this points to the Tcl install directory, |
| 378 | # this directory must have "include" and "lib" sub-directories. If |
| @@ -409,10 +409,11 @@ | |
| 409 | # |
| 410 | TCC = gcc -Os -Wall -L$(ZLIBDIR) -I$(ZINCDIR) |
| 411 | |
| 412 | # With HTTPS support |
| 413 | ifdef FOSSIL_ENABLE_SSL |
| 414 | TCC += -L$(OPENSSLLIBDIR) -I$(OPENSSLINCDIR) |
| 415 | endif |
| 416 | |
| 417 | # With Tcl support |
| 418 | ifdef FOSSIL_ENABLE_TCL |
| 419 |
| --- src/makemake.tcl | |
| +++ src/makemake.tcl | |
| @@ -359,20 +359,20 @@ | |
| 359 | #### The directories where the zlib include and library files are located. |
| 360 | # The recommended usage here is to use the Sysinternals junction tool |
| 361 | # to create a hard link between an "zlib-1.x.y" sub-directory of the |
| 362 | # Fossil source code directory and the target zlib source directory. |
| 363 | # |
| 364 | ZINCDIR = $(SRCDIR)/../zlib-1.2.6 |
| 365 | ZLIBDIR = $(SRCDIR)/../zlib-1.2.6 |
| 366 | |
| 367 | #### The directories where the OpenSSL include and library files are located. |
| 368 | # The recommended usage here is to use the Sysinternals junction tool |
| 369 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 370 | # Fossil source code directory and the target OpenSSL source directory. |
| 371 | # |
| 372 | OPENSSLINCDIR = $(SRCDIR)/../openssl-1.0.0g/include |
| 373 | OPENSSLLIBDIR = $(SRCDIR)/../openssl-1.0.0g |
| 374 | |
| 375 | #### Either the directory where the Tcl library is installed or the Tcl |
| 376 | # source code directory resides (depending on the value of the macro |
| 377 | # FOSSIL_TCL_SOURCE). If this points to the Tcl install directory, |
| 378 | # this directory must have "include" and "lib" sub-directories. If |
| @@ -409,10 +409,11 @@ | |
| 409 | # |
| 410 | TCC = gcc -Os -Wall -L$(ZLIBDIR) -I$(ZINCDIR) |
| 411 | |
| 412 | # With HTTPS support |
| 413 | ifdef FOSSIL_ENABLE_SSL |
| 414 | TCC += -Dpqueue_insert=pqueue_insert_fossil |
| 415 | TCC += -L$(OPENSSLLIBDIR) -I$(OPENSSLINCDIR) |
| 416 | endif |
| 417 | |
| 418 | # With Tcl support |
| 419 | ifdef FOSSIL_ENABLE_TCL |
| 420 |
+5
-4
| --- win/Makefile.mingw | ||
| +++ win/Makefile.mingw | ||
| @@ -43,20 +43,20 @@ | ||
| 43 | 43 | #### The directories where the zlib include and library files are located. |
| 44 | 44 | # The recommended usage here is to use the Sysinternals junction tool |
| 45 | 45 | # to create a hard link between an "zlib-1.x.y" sub-directory of the |
| 46 | 46 | # Fossil source code directory and the target zlib source directory. |
| 47 | 47 | # |
| 48 | -ZINCDIR = $(SRCDIR)/../zlib-1.2.5 | |
| 49 | -ZLIBDIR = $(SRCDIR)/../zlib-1.2.5 | |
| 48 | +ZINCDIR = $(SRCDIR)/../zlib-1.2.6 | |
| 49 | +ZLIBDIR = $(SRCDIR)/../zlib-1.2.6 | |
| 50 | 50 | |
| 51 | 51 | #### The directories where the OpenSSL include and library files are located. |
| 52 | 52 | # The recommended usage here is to use the Sysinternals junction tool |
| 53 | 53 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 54 | 54 | # Fossil source code directory and the target OpenSSL source directory. |
| 55 | 55 | # |
| 56 | -OPENSSLINCDIR = $(SRCDIR)/../openssl-1.0.0e/include | |
| 57 | -OPENSSLLIBDIR = $(SRCDIR)/../openssl-1.0.0e | |
| 56 | +OPENSSLINCDIR = $(SRCDIR)/../openssl-1.0.0g/include | |
| 57 | +OPENSSLLIBDIR = $(SRCDIR)/../openssl-1.0.0g | |
| 58 | 58 | |
| 59 | 59 | #### Either the directory where the Tcl library is installed or the Tcl |
| 60 | 60 | # source code directory resides (depending on the value of the macro |
| 61 | 61 | # FOSSIL_TCL_SOURCE). If this points to the Tcl install directory, |
| 62 | 62 | # this directory must have "include" and "lib" sub-directories. If |
| @@ -93,10 +93,11 @@ | ||
| 93 | 93 | # |
| 94 | 94 | TCC = gcc -Os -Wall -L$(ZLIBDIR) -I$(ZINCDIR) |
| 95 | 95 | |
| 96 | 96 | # With HTTPS support |
| 97 | 97 | ifdef FOSSIL_ENABLE_SSL |
| 98 | +TCC += -Dpqueue_insert=pqueue_insert_fossil | |
| 98 | 99 | TCC += -L$(OPENSSLLIBDIR) -I$(OPENSSLINCDIR) |
| 99 | 100 | endif |
| 100 | 101 | |
| 101 | 102 | # With Tcl support |
| 102 | 103 | ifdef FOSSIL_ENABLE_TCL |
| 103 | 104 |
| --- win/Makefile.mingw | |
| +++ win/Makefile.mingw | |
| @@ -43,20 +43,20 @@ | |
| 43 | #### The directories where the zlib include and library files are located. |
| 44 | # The recommended usage here is to use the Sysinternals junction tool |
| 45 | # to create a hard link between an "zlib-1.x.y" sub-directory of the |
| 46 | # Fossil source code directory and the target zlib source directory. |
| 47 | # |
| 48 | ZINCDIR = $(SRCDIR)/../zlib-1.2.5 |
| 49 | ZLIBDIR = $(SRCDIR)/../zlib-1.2.5 |
| 50 | |
| 51 | #### The directories where the OpenSSL include and library files are located. |
| 52 | # The recommended usage here is to use the Sysinternals junction tool |
| 53 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 54 | # Fossil source code directory and the target OpenSSL source directory. |
| 55 | # |
| 56 | OPENSSLINCDIR = $(SRCDIR)/../openssl-1.0.0e/include |
| 57 | OPENSSLLIBDIR = $(SRCDIR)/../openssl-1.0.0e |
| 58 | |
| 59 | #### Either the directory where the Tcl library is installed or the Tcl |
| 60 | # source code directory resides (depending on the value of the macro |
| 61 | # FOSSIL_TCL_SOURCE). If this points to the Tcl install directory, |
| 62 | # this directory must have "include" and "lib" sub-directories. If |
| @@ -93,10 +93,11 @@ | |
| 93 | # |
| 94 | TCC = gcc -Os -Wall -L$(ZLIBDIR) -I$(ZINCDIR) |
| 95 | |
| 96 | # With HTTPS support |
| 97 | ifdef FOSSIL_ENABLE_SSL |
| 98 | TCC += -L$(OPENSSLLIBDIR) -I$(OPENSSLINCDIR) |
| 99 | endif |
| 100 | |
| 101 | # With Tcl support |
| 102 | ifdef FOSSIL_ENABLE_TCL |
| 103 |
| --- win/Makefile.mingw | |
| +++ win/Makefile.mingw | |
| @@ -43,20 +43,20 @@ | |
| 43 | #### The directories where the zlib include and library files are located. |
| 44 | # The recommended usage here is to use the Sysinternals junction tool |
| 45 | # to create a hard link between an "zlib-1.x.y" sub-directory of the |
| 46 | # Fossil source code directory and the target zlib source directory. |
| 47 | # |
| 48 | ZINCDIR = $(SRCDIR)/../zlib-1.2.6 |
| 49 | ZLIBDIR = $(SRCDIR)/../zlib-1.2.6 |
| 50 | |
| 51 | #### The directories where the OpenSSL include and library files are located. |
| 52 | # The recommended usage here is to use the Sysinternals junction tool |
| 53 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 54 | # Fossil source code directory and the target OpenSSL source directory. |
| 55 | # |
| 56 | OPENSSLINCDIR = $(SRCDIR)/../openssl-1.0.0g/include |
| 57 | OPENSSLLIBDIR = $(SRCDIR)/../openssl-1.0.0g |
| 58 | |
| 59 | #### Either the directory where the Tcl library is installed or the Tcl |
| 60 | # source code directory resides (depending on the value of the macro |
| 61 | # FOSSIL_TCL_SOURCE). If this points to the Tcl install directory, |
| 62 | # this directory must have "include" and "lib" sub-directories. If |
| @@ -93,10 +93,11 @@ | |
| 93 | # |
| 94 | TCC = gcc -Os -Wall -L$(ZLIBDIR) -I$(ZINCDIR) |
| 95 | |
| 96 | # With HTTPS support |
| 97 | ifdef FOSSIL_ENABLE_SSL |
| 98 | TCC += -Dpqueue_insert=pqueue_insert_fossil |
| 99 | TCC += -L$(OPENSSLLIBDIR) -I$(OPENSSLINCDIR) |
| 100 | endif |
| 101 | |
| 102 | # With Tcl support |
| 103 | ifdef FOSSIL_ENABLE_TCL |
| 104 |
+5
-4
| --- win/Makefile.mingw.mistachkin | ||
| +++ win/Makefile.mingw.mistachkin | ||
| @@ -43,20 +43,20 @@ | ||
| 43 | 43 | #### The directories where the zlib include and library files are located. |
| 44 | 44 | # The recommended usage here is to use the Sysinternals junction tool |
| 45 | 45 | # to create a hard link between an "zlib-1.x.y" sub-directory of the |
| 46 | 46 | # Fossil source code directory and the target zlib source directory. |
| 47 | 47 | # |
| 48 | -ZINCDIR = $(SRCDIR)/../zlib-1.2.5 | |
| 49 | -ZLIBDIR = $(SRCDIR)/../zlib-1.2.5 | |
| 48 | +ZINCDIR = $(SRCDIR)/../zlib-1.2.6 | |
| 49 | +ZLIBDIR = $(SRCDIR)/../zlib-1.2.6 | |
| 50 | 50 | |
| 51 | 51 | #### The directories where the OpenSSL include and library files are located. |
| 52 | 52 | # The recommended usage here is to use the Sysinternals junction tool |
| 53 | 53 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 54 | 54 | # Fossil source code directory and the target OpenSSL source directory. |
| 55 | 55 | # |
| 56 | -OPENSSLINCDIR = $(SRCDIR)/../openssl-1.0.0e/include | |
| 57 | -OPENSSLLIBDIR = $(SRCDIR)/../openssl-1.0.0e | |
| 56 | +OPENSSLINCDIR = $(SRCDIR)/../openssl-1.0.0g/include | |
| 57 | +OPENSSLLIBDIR = $(SRCDIR)/../openssl-1.0.0g | |
| 58 | 58 | |
| 59 | 59 | #### Either the directory where the Tcl library is installed or the Tcl |
| 60 | 60 | # source code directory resides (depending on the value of the macro |
| 61 | 61 | # FOSSIL_TCL_SOURCE). If this points to the Tcl install directory, |
| 62 | 62 | # this directory must have "include" and "lib" sub-directories. If |
| @@ -93,10 +93,11 @@ | ||
| 93 | 93 | # |
| 94 | 94 | TCC = gcc -Os -Wall -L$(ZLIBDIR) -I$(ZINCDIR) |
| 95 | 95 | |
| 96 | 96 | # With HTTPS support |
| 97 | 97 | ifdef FOSSIL_ENABLE_SSL |
| 98 | +TCC += -Dpqueue_insert=pqueue_insert_fossil | |
| 98 | 99 | TCC += -L$(OPENSSLLIBDIR) -I$(OPENSSLINCDIR) |
| 99 | 100 | endif |
| 100 | 101 | |
| 101 | 102 | # With Tcl support |
| 102 | 103 | ifdef FOSSIL_ENABLE_TCL |
| 103 | 104 |
| --- win/Makefile.mingw.mistachkin | |
| +++ win/Makefile.mingw.mistachkin | |
| @@ -43,20 +43,20 @@ | |
| 43 | #### The directories where the zlib include and library files are located. |
| 44 | # The recommended usage here is to use the Sysinternals junction tool |
| 45 | # to create a hard link between an "zlib-1.x.y" sub-directory of the |
| 46 | # Fossil source code directory and the target zlib source directory. |
| 47 | # |
| 48 | ZINCDIR = $(SRCDIR)/../zlib-1.2.5 |
| 49 | ZLIBDIR = $(SRCDIR)/../zlib-1.2.5 |
| 50 | |
| 51 | #### The directories where the OpenSSL include and library files are located. |
| 52 | # The recommended usage here is to use the Sysinternals junction tool |
| 53 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 54 | # Fossil source code directory and the target OpenSSL source directory. |
| 55 | # |
| 56 | OPENSSLINCDIR = $(SRCDIR)/../openssl-1.0.0e/include |
| 57 | OPENSSLLIBDIR = $(SRCDIR)/../openssl-1.0.0e |
| 58 | |
| 59 | #### Either the directory where the Tcl library is installed or the Tcl |
| 60 | # source code directory resides (depending on the value of the macro |
| 61 | # FOSSIL_TCL_SOURCE). If this points to the Tcl install directory, |
| 62 | # this directory must have "include" and "lib" sub-directories. If |
| @@ -93,10 +93,11 @@ | |
| 93 | # |
| 94 | TCC = gcc -Os -Wall -L$(ZLIBDIR) -I$(ZINCDIR) |
| 95 | |
| 96 | # With HTTPS support |
| 97 | ifdef FOSSIL_ENABLE_SSL |
| 98 | TCC += -L$(OPENSSLLIBDIR) -I$(OPENSSLINCDIR) |
| 99 | endif |
| 100 | |
| 101 | # With Tcl support |
| 102 | ifdef FOSSIL_ENABLE_TCL |
| 103 |
| --- win/Makefile.mingw.mistachkin | |
| +++ win/Makefile.mingw.mistachkin | |
| @@ -43,20 +43,20 @@ | |
| 43 | #### The directories where the zlib include and library files are located. |
| 44 | # The recommended usage here is to use the Sysinternals junction tool |
| 45 | # to create a hard link between an "zlib-1.x.y" sub-directory of the |
| 46 | # Fossil source code directory and the target zlib source directory. |
| 47 | # |
| 48 | ZINCDIR = $(SRCDIR)/../zlib-1.2.6 |
| 49 | ZLIBDIR = $(SRCDIR)/../zlib-1.2.6 |
| 50 | |
| 51 | #### The directories where the OpenSSL include and library files are located. |
| 52 | # The recommended usage here is to use the Sysinternals junction tool |
| 53 | # to create a hard link between an "openssl-1.x" sub-directory of the |
| 54 | # Fossil source code directory and the target OpenSSL source directory. |
| 55 | # |
| 56 | OPENSSLINCDIR = $(SRCDIR)/../openssl-1.0.0g/include |
| 57 | OPENSSLLIBDIR = $(SRCDIR)/../openssl-1.0.0g |
| 58 | |
| 59 | #### Either the directory where the Tcl library is installed or the Tcl |
| 60 | # source code directory resides (depending on the value of the macro |
| 61 | # FOSSIL_TCL_SOURCE). If this points to the Tcl install directory, |
| 62 | # this directory must have "include" and "lib" sub-directories. If |
| @@ -93,10 +93,11 @@ | |
| 93 | # |
| 94 | TCC = gcc -Os -Wall -L$(ZLIBDIR) -I$(ZINCDIR) |
| 95 | |
| 96 | # With HTTPS support |
| 97 | ifdef FOSSIL_ENABLE_SSL |
| 98 | TCC += -Dpqueue_insert=pqueue_insert_fossil |
| 99 | TCC += -L$(OPENSSLLIBDIR) -I$(OPENSSLINCDIR) |
| 100 | endif |
| 101 | |
| 102 | # With Tcl support |
| 103 | ifdef FOSSIL_ENABLE_TCL |
| 104 |