[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-27 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks for the fix, Ronald and Erlend! ✨ 🍰 ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.8, Python 3.9 ___ Python tracker

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-27 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 9500dd5144cb911cf4e6fb027bb25b675f0e3643 by Miss Islington (bot) in branch '3.9': bpo-44997: macOS does not support loadable SQLite extensions (GH-27979) (GH-27995) https://github.com/python/cpython/commit/9500dd5144cb911cf4e6fb027bb25b675f0e3643

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-27 Thread miss-islington
miss-islington added the comment: New changeset baa8d48230e3ab8a504f39ee800f8852897cb3be by Miss Islington (bot) in branch '3.10': bpo-44997: macOS does not support loadable SQLite extensions (GH-27979) https://github.com/python/cpython/commit/baa8d48230e3ab8a504f39ee800f8852897cb3be --

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-27 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 9c74678d53847f61df255435a0e5a6e3e1d657f5 by Miss Islington (bot) in branch '3.8': bpo-44997: macOS does not support loadable SQLite extensions (GH-27979) (GH-27996) https://github.com/python/cpython/commit/9c74678d53847f61df255435a0e5a6e3e1d657f5

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +26442 pull_request: https://github.com/python/cpython/pull/27996 ___ Python tracker ___ __

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +26441 pull_request: https://github.com/python/cpython/pull/27995 ___ Python tracker ___ __

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-27 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 2ec9428e3516b6e7c6583687aa3b39fb96925577 by Erlend Egeberg Aasland in branch 'main': bpo-44997: macOS does not support loadable SQLite extensions (GH-27979) https://github.com/python/cpython/commit/2ec9428e3516b6e7c6583687aa3b39fb96925577 ---

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-27 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +26440 pull_request: https://github.com/python/cpython/pull/27994 ___ Python tracker _

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-26 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- keywords: +patch pull_requests: +26427 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/27979 ___ Python tracker __

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-26 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Thanks, Ronald, that's a nice improvement. I'll create a PR for it. -- ___ Python tracker ___

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-26 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- resolution: fixed -> status: closed -> open ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-26 Thread Ronald Oussoren
Ronald Oussoren added the comment: Note that sqlite3_enable_load_extension was unavailable way before macOS 11.5.1, the symbol is not present on 10.15 (I used 'nm /usr/lib/libsqlite3.dylib' to check for symbol availability). Just checking for MACOS and a system include directory should do th

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-26 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: ...or we can just leave it as it. Seems like these reports only pops up once in a while. -- ___ Python tracker ___ __

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-26 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: > FTR, this is only a problem if you link with the Apple-supplied system > libsqlite3 [...] Sure, but that should be relatively trivial to detect. AFAIK, the SQLite command line shell seems to be located at the same path every release, so I would guess t

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-25 Thread Ned Deily
Ned Deily added the comment: > I guess we could wrap this functionality with some preprocessor conditionals, > and/or adjust the configure script to not accept > --enable-loadable-sqlite-extensions for macOS 11.5.1 (11.5.x?). FTR, this is only a problem if you link with the Apple-supplied sy

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-25 Thread 郑之为
郑之为 added the comment: Python build finished successfully! The necessary bits to build these optional modules were not found: _gdbm ossaudiodev spwd To find the necessary bits, look in setup.py in detect_modules() for the module's name. The following m

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-25 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: IIRC, macOS deprecated this functionality some releases ago. Seems like they've now removed it completely. I guess we could wrap this functionality with some preprocessor conditionals, and/or adjust the configure script to not accept --enable-loadable-sq

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-25 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- nosy: +ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue44997] [sqlite3] build fails on macOS 11.5.1

2021-08-25 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- title: _sqlite3 extention failed to build -> [sqlite3] build fails on macOS 11.5.1 ___ Python tracker ___