Fossil

Check-in [304503ed]
Login

Check-in [304503ed]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:For --with-openssl=PATH, the libraries should be found in the PATH directory, not in the PATH/lib subdirectory.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 304503ed24a2f3ccd755132e7f76dbf3c15f2eb8ad18f411b241635655e13369
User & Date: drh 2025-02-20 14:48:54
Context
2025-02-20
20:00
Adjust the --with-openssl=PATH processing so that it looks for the library files both in the top-level directory and in the lib/ subdirectory, as different editions of OpenSSL put them in different places. ... (Leaf check-in: be12316b user: drh tags: trunk)
14:48
For --with-openssl=PATH, the libraries should be found in the PATH directory, not in the PATH/lib subdirectory. ... (check-in: 304503ed user: drh tags: trunk)
13:36
Enhance the "fossil merge-info --tk" application with a new menu that will bring up detailed two-way diffs between source components. This involves various diff subsystem upgrades, including: (1) Add the "fdiff" command. (Not actually needed here, but useful.) (2) Add --label options on diff commands. (3) Add --tkdebug on diff commands for debugging. (4) Improvements to column titles in two-way diffs. ... (check-in: f5cb12df user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to auto.def.
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
                if {$dir eq ""} {
                    set msg "system openssl"
                    set cflags ""
                    set ldflags ""
                } else {
                    set msg "openssl in $dir"
                    set cflags "-I$dir/include"
                    set ldflags "-L$dir/lib"
                }
                if {[check-for-openssl $msg "$cflags $ldflags"]} {
                    incr found
                    break
                }
                if {$dir ne ""} {
                    set ldflags ""







|







464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
                if {$dir eq ""} {
                    set msg "system openssl"
                    set cflags ""
                    set ldflags ""
                } else {
                    set msg "openssl in $dir"
                    set cflags "-I$dir/include"
                    set ldflags "-L$dir"
                }
                if {[check-for-openssl $msg "$cflags $ldflags"]} {
                    incr found
                    break
                }
                if {$dir ne ""} {
                    set ldflags ""