Mercurial
view third_party/sqlite3/tea/configure @ 258:60a876c4587a
[ui] Add semantic primitive ownership
Build a layered Zenbu token and sizing system, make authored controls use native-underneath primitives, migrate mrjunejune without imposing visual surfaces, and document/enforce HTML ownership in the catalog and wiki.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Wed, 05 Aug 2026 05:25:40 -0700 |
| parents | 589bab390fb4 |
| children |
line wrap: on
line source
#!/bin/sh # Look for and run autosetup... dir0="`dirname "$0"`" dirA="$dir0" if [ -d $dirA/autosetup ]; then # A local copy of autosetup dirA=$dirA/autosetup elif [ -d $dirA/../autosetup ]; then # SQLite "autoconf" bundle dirA=$dirA/../autosetup elif [ -d $dirA/../../autosetup ]; then # SQLite canonical source tree dirA=$dirA/../../autosetup else echo "$0: Cannot find autosetup" 1>&2 exit 1 fi WRAPPER="$0"; export WRAPPER; exec "`"$dirA/autosetup-find-tclsh"`" \ "$dirA/autosetup" --teaish-extension-dir="$dir0" \ "$@"