diff options
author | drh <> | 2023-08-03 12:41:30 +0000 |
---|---|---|
committer | drh <> | 2023-08-03 12:41:30 +0000 |
commit | 9b1334b7d3a31f80e43e3f467de38c8c645830bb (patch) | |
tree | fa7597448540efae8e41889398eb89bb172e56e5 /tool/build-shell.sh | |
parent | c874d60353c0a3ef592e1e77129b2b083a01af7f (diff) | |
download | sqlite-9b1334b7d3a31f80e43e3f467de38c8c645830bb.tar.gz sqlite-9b1334b7d3a31f80e43e3f467de38c8c645830bb.zip |
Unix builds now assume the presence of nanosleep() in the standard library.
The -DHAVE_NANOSLEEP=0 compile-time option can be used to build on systems
(if any still exist) where this is not the case.
FossilOrigin-Name: 779d5dc8797ea246d0397f7e94b1be716b0baa735e8d9f5a6fc4cffd887a7420
Diffstat (limited to 'tool/build-shell.sh')
-rw-r--r-- | tool/build-shell.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tool/build-shell.sh b/tool/build-shell.sh index 6a48299d7..a57f75303 100644 --- a/tool/build-shell.sh +++ b/tool/build-shell.sh @@ -16,7 +16,6 @@ gcc -o sqlite3 -g -Os -I. \ -DSQLITE_ENABLE_FTS4 \ -DSQLITE_ENABLE_RTREE \ -DHAVE_READLINE \ - -DHAVE_USLEEP=1 \ ../sqlite/src/shell.c \ ../sqlite/src/test_vfstrace.c \ sqlite3.c -ldl -lreadline -lncurses |