mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
The libproxy implementation was rewritten with 0.5.0 and switched to meson as build system. The new build options do not match 1-to-1 to the old options and all language bindings were removed in favor of gobject-introspection. * Update to libproxy 0.5.9 * Use meson instead of CMake * Add variants for new options * Refactor vapi support to subport (CNielsen) Closes: https://trac.macports.org/ticket/67730 Closes: https://trac.macports.org/ticket/71389 Co-authored-by: Christopher Nielsen <mascguy@github.com>
12 lines
299 B
Diff
12 lines
299 B
Diff
--- src/tools/meson.build.orig 2024-12-06 10:22:01.000000000 -0500
|
|
+++ src/tools/meson.build 2024-12-06 10:23:39.000000000 -0500
|
|
@@ -10,4 +10,6 @@
|
|
include_directories: libproxy_inc
|
|
)
|
|
|
|
-install_man('proxy.8')
|
|
\ No newline at end of file
|
|
+if get_option('docs')
|
|
+ install_man('proxy.8')
|
|
+endif
|