aports/main/jemalloc/pkgconf.patch
Sertonix abc0b4170e main/jemalloc: fix pkgconf version
We don't specify nrev so the version was "5.3.0_". Remove the "_" to have
an apk3 compatible version. Also "5.3.0_" and "5.3.0" are considered the
same version by pkgconf so there should be no new issue.
2024-09-05 20:01:37 +00:00

12 lines
585 B
Diff

Fix format since we don't include a revision number
--- a/jemalloc.pc.in
+++ b/jemalloc.pc.in
@@ -7,6 +7,6 @@ install_suffix=@install_suffix@
Name: jemalloc
Description: A general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support.
URL: http://jemalloc.net/
-Version: @jemalloc_version_major@.@jemalloc_version_minor@.@jemalloc_version_bugfix@_@jemalloc_version_nrev@
+Version: @jemalloc_version_major@.@jemalloc_version_minor@.@jemalloc_version_bugfix@
Cflags: -I${includedir}
Libs: -L${libdir} -ljemalloc${install_suffix}