This commit is contained in:
jsg 2020-02-20 02:59:02 +00:00
parent e374dad6a5
commit 12feee4512
2 changed files with 16 additions and 2 deletions

View File

@ -83,8 +83,8 @@ DIST_COMMON = $(am__configure_deps) $(noinst_HEADERS) \
$(top_srcdir)/src/gbm/main/gbm.pc.in \
$(top_srcdir)/src/mapi/es1api/glesv1_cm.pc.in \
$(top_srcdir)/src/mapi/es2api/glesv2.pc.in bin/ar-lib \
bin/compile bin/config.guess bin/config.sub bin/install-sh \
bin/ltmain.sh bin/missing
bin/compile bin/config.guess bin/config.sub bin/depcomp \
bin/install-sh bin/ltmain.sh bin/missing
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \
$(top_srcdir)/m4/ax_check_gnu_make.m4 \

14
lib/mesa/configure vendored
View File

@ -1198,6 +1198,7 @@ enable_debug
enable_profile
enable_sanitize
enable_asm
enable_futex
enable_selinux
enable_llvm_shared_libs
with_llvm_prefix
@ -2006,6 +2007,7 @@ Optional Features:
enable code sanitizer [default=disabled]
--disable-asm disable assembly usage [default=enabled on supported
platforms]
--disable-futex disable futex use [default=enabled]
--enable-selinux Build SELinux-aware Mesa [default=disabled]
--enable-llvm-shared-libs
link with LLVM shared libraries [default=enabled]
@ -22744,6 +22746,18 @@ fi
# Check whether --enable-futex was given.
if test "${enable_futex+set}" = set; then :
enableval=$enable_futex; enable_futex="$enableval"
else
enable_futex=yes
fi
if test "x$enable_futex" = xyes; then
DEFINES="$DEFINES -DUSE_FUTEX"
fi
# Check whether --enable-selinux was given.
if test "${enable_selinux+set}" = set; then :
enableval=$enable_selinux; MESA_SELINUX="$enableval"