| Server IP : 82.208.35.60 / Your IP : 216.73.216.168 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/net-im/libnice/files/ |
Upload File : |
- Keep graphviz optional with meson >= 0.58 after
https://github.com/mesonbuild/meson/commit/80c89a650b6f
--- docs/reference/libnice/meson.build.orig 2020-11-25 16:39:27 UTC
+++ docs/reference/libnice/meson.build
@@ -26,7 +26,7 @@ ignore_headers = [
]
if dependency('gtk-doc', version: '<1.30', required: false).found()
- prog_python = import('python').find_installation('python3')
+ prog_python = import('python').find_installation()
fake_makefile = custom_target ('libnice-docs-test-Makefile',
output: 'Makefile',
command: [
@@ -67,6 +67,8 @@ gnome.gtkdoc('libnice',
# If we ever need to regenerate this diagram.
# Since it’s not expected to change much, let’s not depend on GraphViz to
# build the docs (that's also why we don't use find_program('dot') here)
+dot = find_program('dot', required: false)
+if dot.found()
run_target('update-states.png',
command: ['dot',
'-Tpng',
@@ -74,3 +76,4 @@ run_target('update-states.png',
'-Gsize=9.6,2.9!',
'-Gdpi=200',
files('states.gv')])
+endif