-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[package] libpq/13.2: needless option "with_zlib" #5055
Labels
bug
Something isn't working
Comments
related: #5020 |
@sabelka could you submit a PR with these modifications? |
I'll try ;-) |
sabelka
added a commit
to sabelka/conan-center-index
that referenced
this issue
Mar 26, 2021
zlib is not used anywhere insinde libpq, thus it is just an unnecessary dependency. fixes conan-io#5055
4 tasks
conan-center-bot
pushed a commit
that referenced
this issue
Jul 11, 2021
* libpq: deprecate useless option "with_zlib" zlib is not used anywhere insinde libpq, thus it is just an unnecessary dependency. fixes #5055 * remove with_zlib option Im response to review by madebr: By removing the with_zlib option, libpq packages configured with different option values, will be aliased to the same package id. Which is correct as they are the same. * manage fPIC
AndreyMlashkin
pushed a commit
to AndreyMlashkin/conan-center-index
that referenced
this issue
Jul 19, 2021
* libpq: deprecate useless option "with_zlib" zlib is not used anywhere insinde libpq, thus it is just an unnecessary dependency. fixes conan-io#5055 * remove with_zlib option Im response to review by madebr: By removing the with_zlib option, libpq packages configured with different option values, will be aliased to the same package id. Which is correct as they are the same. * manage fPIC
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The recipe for libpq contains the option
with_zlib
, which is then passed as--with-zlib
to the configure script of PostgreSQL.However, zlib is not used at all in libpq (it is used in only in other parts of PostgreSQL, e.g.
pg_dump
).libpq can be built completely without zlib, without any loss in functionality.
Therefore, the option
with_zlib
in the recipe for libpq is redundant. Enabling it, just adds an unnecessary dependency on zlib.It can be completely removed, and
--without-zlib
always passed to the configure script of PostgreSQL.The text was updated successfully, but these errors were encountered: