Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | On HaikuOS, if --prefix is not explicitly provided then default it to /boot/home/config/non-packaged, based on an off-list discussion with HaikuOS user BrickViking. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c4a558291175378f76d126b12417c6c1 |
User & Date: | stephan 2025-04-04 02:40:08.657 |
Context
2025-04-04
| ||
03:16 | Make the --static-cli-shell flag available in the autoconf build mode. (check-in: b78a474ecb user: stephan tags: trunk) | |
02:40 | On HaikuOS, if --prefix is not explicitly provided then default it to /boot/home/config/non-packaged, based on an off-list discussion with HaikuOS user BrickViking. (check-in: c4a5582911 user: stephan tags: trunk) | |
2025-04-03
| ||
13:24 | Add the --static-cli-shell configure flag to the canonical build, which works like --static-tclsqlite3 but applies to the CLI shell (statically linking it, which only works if all requisite libs are available in static form). It is not called --static-shell because that flag has a completely different legacy meaning in the autoconf build and this flight might eventually be added to that build, so would collide there. (check-in: fd2c1638ec user: stephan tags: trunk) | |
Changes
Changes to autosetup/proj.tcl.
︙ | ︙ | |||
1434 1435 1436 1437 1438 1439 1440 | } else { set shName ".tclConfigSh.tcl" proj-file-write $shName $shBody eval [exec sh $shName $tclConfigSh] file delete -force $shName } } | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 | } else { set shName ".tclConfigSh.tcl" proj-file-write $shName $shBody eval [exec sh $shName $tclConfigSh] file delete -force $shName } } ######################################################################## # @proj-tweak-default-env-dirs # # This function is not useful before [use system] is called to set up # --prefix and friends. # # For certain target environments, if --prefix is _not_ passed in by # the user, set the prefix to an environment-specific default. May # emit output. For such environments its does [define prefix ...] and # [proj-opt-set prefix ...], but it does not process vars derived from # the prefix, e.g. exec-prefix. To do so it is generally necessary, # late in the config process (immediately before ".in" files are # filtered) to also call proj-remap-autoconf-dir-vars. # # Returns 1 if it modifies the environment, else 0. proc proj-tweak-default-env-dirs {} { switch -glob -- [get-define host] { *-haiku { set hpre /boot/home/config/non-packaged if {![proj-opt-was-provided prefix]} { proj-opt-set prefix $hpre define prefix $hpre return 1 } } } return 0 } |
Changes to autosetup/sqlite-config.tcl.
︙ | ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | # don't want those to interfere with --help output. define PACKAGE_VERSION [proj-file-content -trim $::autosetup(srcdir)/VERSION] if {"--help" ni $::argv} { msg-result "Configuring SQLite version [get-define PACKAGE_VERSION]" } use system ; # Will output "Host System" and "Build System" lines if {"--help" ni $::argv} { msg-result "Source dir = $::autosetup(srcdir)" msg-result "Build dir = $::autosetup(builddir)" use cc cc-db cc-shared cc-lib pkg-config } # # Object for communicating certain config-time state across various | > | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | # don't want those to interfere with --help output. define PACKAGE_VERSION [proj-file-content -trim $::autosetup(srcdir)/VERSION] if {"--help" ni $::argv} { msg-result "Configuring SQLite version [get-define PACKAGE_VERSION]" } use system ; # Will output "Host System" and "Build System" lines if {"--help" ni $::argv} { proj-tweak-default-env-dirs msg-result "Source dir = $::autosetup(srcdir)" msg-result "Build dir = $::autosetup(builddir)" use cc cc-db cc-shared cc-lib pkg-config } # # Object for communicating certain config-time state across various |
︙ | ︙ |