From: <smi...@us...> - 2003-12-27 03:46:48
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv6294/scripts/configuration Modified Files: gcc.config Log Message: only show ET_DYN when grsecurity is enabled Index: gcc.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/gcc.config,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- gcc.config 27 Dec 2003 02:52:51 -0000 1.5 +++ gcc.config 27 Dec 2003 03:17:17 -0000 1.6 @@ -7,4 +7,7 @@ menu_add "System|Programming" bool "GCC3" CONFIG_GCC3 menu_add "Build Configuration|Security" bool "GCC Stack Smashing Protector" CONFIG_GCC_STACK_PROTECTOR menu_add "Build Configuration|Security" bool "GCC enable Position Independent Executables" CONFIG_GCC_PIE -menu_add "Build Configuration|Security" bool "GCC compile programs as ET_DYN (EXPERIMENTAL)" CONFIG_GCC_ET_DYN \ No newline at end of file +if [ "$CONFIG_GRSECURITY" = "y" ]; then + menu_add "Build Configuration|Security" bool "GCC compile programs as ET_DYN (EXPERIMENTAL)" CONFIG_GCC_ET_DYN +fi + |