From: Jeremy Huddleston Date: Sat, 29 Aug 2015 21:51:45 +0000 (-0700) Subject: configure.ac: Add support to enable read-only text segment on x86. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6dfc5e28f7d08094210d8cecd3ed4a5b393dafe9;p=mesa.git configure.ac: Add support to enable read-only text segment on x86. Cc: "10.6 11.0" Bugzilla: https://bugs.gentoo.org/240956 Reviewed-by: Ian Romanick --- diff --git a/configure.ac b/configure.ac index 1ef5fbc9c08..217281f7950 100644 --- a/configure.ac +++ b/configure.ac @@ -1311,6 +1311,16 @@ AC_SUBST(GLX_TLS, ${GLX_USE_TLS}) AS_IF([test "x$GLX_USE_TLS" = xyes -a "x$ax_pthread_ok" = xyes], [DEFINES="${DEFINES} -DGLX_USE_TLS"]) +dnl Read-only text section on x86 hardened platforms +AC_ARG_ENABLE([glx-read-only-text], + [AS_HELP_STRING([--enable-glx-read-only-text], + [Disable writable .text section on x86 (decreases performance) @<:@default=disabled@:>@])], + [enable_glx_read_only_text="$enableval"], + [enable_glx_read_only_text=no]) +if test "x$enable_glx_read_only_text" = xyes; then + DEFINES="$DEFINES -DGLX_X86_READONLY_TEXT" +fi + dnl dnl More DRI setup dnl