blob: 8e471830b8c2e4753bd83876ae203dd5d4cfc5c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
####################################################################
# Copyright 1999-2003 Gentoo Technologies, Inc. #
# Distributed under the terms of the GNU General Public License v2 #
####################################################################
#
# p do not enforce paging based non-executable pages
# e do not emulate trampolines
# r do not randomize mmap() base [ELF only]
# m do not restrict mprotect()
# s do not enforce segmentation based non-executable pages
# x do not randomize ET_EXEC base [ELF only]
PAGEEXEC_EXEMPT="/usr/X11R6/bin/XFree86 /usr/lib/wine/bin/wine"
TRAMPOLINE_EXEMPT=""
MPROTECT_EXEMPT=""
RANDMMAP_EXEMPT=""
SEGMEXEC_EXEMPT=""
RANDEXEC_EXEMPT=""
|