Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 671308 | Differences between
and this patch

Collapse All | Expand All

(-)a/docs/meson.html (-1 / +1 lines)
Lines 24-30 for production</strong></p> Link Here
24
<p>The meson build is tested on Linux, macOS, Cygwin and Haiku, FreeBSD,
24
<p>The meson build is tested on Linux, macOS, Cygwin and Haiku, FreeBSD,
25
DragonflyBSD, NetBSD, and should work on OpenBSD.</p>
25
DragonflyBSD, NetBSD, and should work on OpenBSD.</p>
26
26
27
<p><strong>Mesa requires Meson >= 0.45.0 to build.</strong>
27
<p><strong>Mesa requires Meson >= 0.46.0 to build.</strong>
28
28
29
Some older versions of meson do not check that they are too old and will error
29
Some older versions of meson do not check that they are too old and will error
30
out in odd ways.
30
out in odd ways.
(-)a/meson.build (-2 / +2 lines)
Lines 25-31 project( Link Here
25
    [find_program('python', 'python2', 'python3'), 'bin/meson_get_version.py']
25
    [find_program('python', 'python2', 'python3'), 'bin/meson_get_version.py']
26
  ).stdout(),
26
  ).stdout(),
27
  license : 'MIT',
27
  license : 'MIT',
28
  meson_version : '>= 0.45',
28
  meson_version : '>= 0.46',
29
  default_options : ['buildtype=debugoptimized', 'b_ndebug=if-release', 'c_std=c99', 'cpp_std=c++11']
29
  default_options : ['buildtype=debugoptimized', 'b_ndebug=if-release', 'c_std=c99', 'cpp_std=c++11']
30
)
30
)
31
31
Lines 709-715 if with_platform_haiku Link Here
709
  pre_args += '-DHAVE_HAIKU_PLATFORM'
709
  pre_args += '-DHAVE_HAIKU_PLATFORM'
710
endif
710
endif
711
711
712
prog_python = import('python3').find_python()
712
prog_python = import('python').find_installation('python3')
713
has_mako = run_command(
713
has_mako = run_command(
714
  prog_python, '-c',
714
  prog_python, '-c',
715
  '''
715
  '''

Return to bug 671308