Fix build with newer compilers on FreeBSD#125
Merged
jwp merged 2 commits intopython-postgres:masterfrom May 2, 2023
Merged
Conversation
Part 1 of 2 changes
Part 2 of 2 changes
Contributor
|
That is indeed the fix. Thank you. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
On FreeBSD current the installation process of databases/py-postgresql is broken [1].
optimized.cpython-39.sois not built most likely because due to compiler errors:The same happens with
postgresql/port/_optimized/wirestate.c:251:2and is reported on FreeBSD's Bugzilla [2].The patch tries to solve the problem by setting the value of NULL to 0 for the argument tp_print. This seems to work as expected, hopefully without regressions.
[1] https://portsfallout.com/fallout?port=databases%2Fpy-postgresql&maintainer=&env=main-amd64-default&category=&flavor=
[2] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=271165