lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 15.09-beta 25 lines 655 B view raw
1diff --git a/configure.ac b/configure.ac 2index 5068913..3d4271e 100644 3--- a/configure.ac 4+++ b/configure.ac 5@@ -429,6 +429,20 @@ AC_SUBST([GLESv2_LIB_GLOB]) 6 AC_SUBST([VG_LIB_GLOB]) 7 AC_SUBST([GLAPI_LIB_GLOB]) 8 9+ 10+dnl readonly text segment on x86 hardened platforms 11+AC_ARG_ENABLE([glx_rts], 12+ [AS_HELP_STRING([--enable-glx-rts], 13+ [on x86, use a readonly text segment for libGL @<:@default=disabled@:>@])], 14+ [enable_glx_rts="$enableval"], 15+ [enable_glx_rts=no]) 16+if test "x$enable_glx_rts" = xyes; then 17+ DEFINES="$DEFINES -DGLX_X86_READONLY_TEXT" 18+else 19+ enable_glx_rts=no 20+fi 21+ 22+ 23 dnl 24 dnl Arch/platform-specific settings 25 dnl