1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Merge from trunk, rename tool option for its effect

FossilOrigin-Name: 9327f73c1b87fb9ca78e261d16b092763f497bb9c6f9784a33eabdc961b06343
This commit is contained in:
larrybr
2021-07-13 11:55:07 +00:00
5 changed files with 22 additions and 24 deletions

6
configure vendored
View File

@ -10312,7 +10312,7 @@ USE_AMALGAMATION=1
# This is a build option not shown by ./configure --help
# To control it, use configure option: amalgamation_line_tags=?
# where ? is no to suppress #line directives or yes to create them.
AMALGAMATION_LINE_TAGS=--linemacros=1
AMALGAMATION_LINE_TAGS=--line_tags=1
#########
# See whether we can run specific tclsh versions known to work well;
@ -11291,10 +11291,10 @@ if test "${amalgamation_line_tags+set}" = set; then :
fi
if test "${amalgamation_line_tags}" = "yes" ; then
AMALGAMATION_LINE_TAGS=--linemacros=1
AMALGAMATION_LINE_TAGS=--line_tags=1
fi
if test "${amalgamation_line_tags}" = "no" ; then
AMALGAMATION_LINE_TAGS=--linemacros=0
AMALGAMATION_LINE_TAGS=--line_tags=0
fi