You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
187 lines
5.7 KiB
187 lines
5.7 KiB
6 years ago
|
Index: gdb-7.5.91.20130323/gdb/config.in
|
||
|
===================================================================
|
||
|
--- gdb-7.5.91.20130323.orig/gdb/config.in 2013-03-23 19:48:18.000000000 +0100
|
||
|
+++ gdb-7.5.91.20130323/gdb/config.in 2013-03-23 19:50:53.300066378 +0100
|
||
|
@@ -216,6 +216,9 @@
|
||
|
/* Define if librpm library is being used. */
|
||
|
#undef HAVE_LIBRPM
|
||
|
|
||
|
+/* Define to 1 if you have the `selinux' library (-lselinux). */
|
||
|
+#undef HAVE_LIBSELINUX
|
||
|
+
|
||
|
/* Define to 1 if you have the <libunwind-ia64.h> header file. */
|
||
|
#undef HAVE_LIBUNWIND_IA64_H
|
||
|
|
||
|
@@ -360,6 +363,9 @@
|
||
|
/* Define to 1 if you have the `sbrk' function. */
|
||
|
#undef HAVE_SBRK
|
||
|
|
||
|
+/* Define to 1 if you have the <selinux/selinux.h> header file. */
|
||
|
+#undef HAVE_SELINUX_SELINUX_H
|
||
|
+
|
||
|
/* Define to 1 if you have the `setlocale' function. */
|
||
|
#undef HAVE_SETLOCALE
|
||
|
|
||
|
Index: gdb-7.5.91.20130323/gdb/configure
|
||
|
===================================================================
|
||
|
--- gdb-7.5.91.20130323.orig/gdb/configure 2013-03-23 19:48:18.000000000 +0100
|
||
|
+++ gdb-7.5.91.20130323/gdb/configure 2013-03-23 19:50:53.303066376 +0100
|
||
|
@@ -12814,6 +12814,64 @@ $as_echo "#define HAVE_PERSONALITY 1" >>
|
||
|
|
||
|
fi
|
||
|
|
||
|
+for ac_header in selinux/selinux.h
|
||
|
+do :
|
||
|
+ ac_fn_c_check_header_mongrel "$LINENO" "selinux/selinux.h" "ac_cv_header_selinux_selinux_h" "$ac_includes_default"
|
||
|
+if test "x$ac_cv_header_selinux_selinux_h" = x""yes; then :
|
||
|
+ cat >>confdefs.h <<_ACEOF
|
||
|
+#define HAVE_SELINUX_SELINUX_H 1
|
||
|
+_ACEOF
|
||
|
+
|
||
|
+fi
|
||
|
+
|
||
|
+done
|
||
|
+
|
||
|
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for security_get_boolean_active in -lselinux" >&5
|
||
|
+$as_echo_n "checking for security_get_boolean_active in -lselinux... " >&6; }
|
||
|
+if test "${ac_cv_lib_selinux_security_get_boolean_active+set}" = set; then :
|
||
|
+ $as_echo_n "(cached) " >&6
|
||
|
+else
|
||
|
+ ac_check_lib_save_LIBS=$LIBS
|
||
|
+LIBS="-lselinux $LIBS"
|
||
|
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||
|
+/* end confdefs.h. */
|
||
|
+
|
||
|
+/* Override any GCC internal prototype to avoid an error.
|
||
|
+ Use char because int might match the return type of a GCC
|
||
|
+ builtin and then its argument prototype would still apply. */
|
||
|
+#ifdef __cplusplus
|
||
|
+extern "C"
|
||
|
+#endif
|
||
|
+char security_get_boolean_active ();
|
||
|
+int
|
||
|
+main ()
|
||
|
+{
|
||
|
+return security_get_boolean_active ();
|
||
|
+ ;
|
||
|
+ return 0;
|
||
|
+}
|
||
|
+_ACEOF
|
||
|
+if ac_fn_c_try_link "$LINENO"; then :
|
||
|
+ ac_cv_lib_selinux_security_get_boolean_active=yes
|
||
|
+else
|
||
|
+ ac_cv_lib_selinux_security_get_boolean_active=no
|
||
|
+fi
|
||
|
+rm -f core conftest.err conftest.$ac_objext \
|
||
|
+ conftest$ac_exeext conftest.$ac_ext
|
||
|
+LIBS=$ac_check_lib_save_LIBS
|
||
|
+fi
|
||
|
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_selinux_security_get_boolean_active" >&5
|
||
|
+$as_echo "$ac_cv_lib_selinux_security_get_boolean_active" >&6; }
|
||
|
+if test "x$ac_cv_lib_selinux_security_get_boolean_active" = x""yes; then :
|
||
|
+ cat >>confdefs.h <<_ACEOF
|
||
|
+#define HAVE_LIBSELINUX 1
|
||
|
+_ACEOF
|
||
|
+
|
||
|
+ LIBS="-lselinux $LIBS"
|
||
|
+
|
||
|
+fi
|
||
|
+
|
||
|
+
|
||
|
|
||
|
# Support for --with-sysroot is a copy of GDB_AC_WITH_DIR,
|
||
|
# except that the argument to --with-sysroot is optional.
|
||
|
Index: gdb-7.5.91.20130323/gdb/gdbserver/config.in
|
||
|
===================================================================
|
||
|
--- gdb-7.5.91.20130323.orig/gdb/gdbserver/config.in 2013-03-11 09:35:09.000000000 +0100
|
||
|
+++ gdb-7.5.91.20130323/gdb/gdbserver/config.in 2013-03-23 19:51:14.323052419 +0100
|
||
|
@@ -73,6 +73,9 @@
|
||
|
/* Define to 1 if you have the `dl' library (-ldl). */
|
||
|
#undef HAVE_LIBDL
|
||
|
|
||
|
+/* Define to 1 if you have the `selinux' library (-lselinux). */
|
||
|
+#undef HAVE_LIBSELINUX
|
||
|
+
|
||
|
/* Define if the target supports branch tracing. */
|
||
|
#undef HAVE_LINUX_BTRACE
|
||
|
|
||
|
@@ -140,6 +143,9 @@
|
||
|
/* Define to 1 if you have the `readlink' function. */
|
||
|
#undef HAVE_READLINK
|
||
|
|
||
|
+/* Define to 1 if you have the <selinux/selinux.h> header file. */
|
||
|
+#undef HAVE_SELINUX_SELINUX_H
|
||
|
+
|
||
|
/* Define to 1 if you have the <sgtty.h> header file. */
|
||
|
#undef HAVE_SGTTY_H
|
||
|
|
||
|
Index: gdb-7.5.91.20130323/gdb/gdbserver/configure
|
||
|
===================================================================
|
||
|
--- gdb-7.5.91.20130323.orig/gdb/gdbserver/configure 2013-03-11 09:35:09.000000000 +0100
|
||
|
+++ gdb-7.5.91.20130323/gdb/gdbserver/configure 2013-03-23 19:50:53.305066374 +0100
|
||
|
@@ -5911,6 +5911,64 @@ if $want_ipa ; then
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
+for ac_header in selinux/selinux.h
|
||
|
+do :
|
||
|
+ ac_fn_c_check_header_mongrel "$LINENO" "selinux/selinux.h" "ac_cv_header_selinux_selinux_h" "$ac_includes_default"
|
||
|
+if test "x$ac_cv_header_selinux_selinux_h" = x""yes; then :
|
||
|
+ cat >>confdefs.h <<_ACEOF
|
||
|
+#define HAVE_SELINUX_SELINUX_H 1
|
||
|
+_ACEOF
|
||
|
+
|
||
|
+fi
|
||
|
+
|
||
|
+done
|
||
|
+
|
||
|
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for security_get_boolean_active in -lselinux" >&5
|
||
|
+$as_echo_n "checking for security_get_boolean_active in -lselinux... " >&6; }
|
||
|
+if test "${ac_cv_lib_selinux_security_get_boolean_active+set}" = set; then :
|
||
|
+ $as_echo_n "(cached) " >&6
|
||
|
+else
|
||
|
+ ac_check_lib_save_LIBS=$LIBS
|
||
|
+LIBS="-lselinux $LIBS"
|
||
|
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||
|
+/* end confdefs.h. */
|
||
|
+
|
||
|
+/* Override any GCC internal prototype to avoid an error.
|
||
|
+ Use char because int might match the return type of a GCC
|
||
|
+ builtin and then its argument prototype would still apply. */
|
||
|
+#ifdef __cplusplus
|
||
|
+extern "C"
|
||
|
+#endif
|
||
|
+char security_get_boolean_active ();
|
||
|
+int
|
||
|
+main ()
|
||
|
+{
|
||
|
+return security_get_boolean_active ();
|
||
|
+ ;
|
||
|
+ return 0;
|
||
|
+}
|
||
|
+_ACEOF
|
||
|
+if ac_fn_c_try_link "$LINENO"; then :
|
||
|
+ ac_cv_lib_selinux_security_get_boolean_active=yes
|
||
|
+else
|
||
|
+ ac_cv_lib_selinux_security_get_boolean_active=no
|
||
|
+fi
|
||
|
+rm -f core conftest.err conftest.$ac_objext \
|
||
|
+ conftest$ac_exeext conftest.$ac_ext
|
||
|
+LIBS=$ac_check_lib_save_LIBS
|
||
|
+fi
|
||
|
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_selinux_security_get_boolean_active" >&5
|
||
|
+$as_echo "$ac_cv_lib_selinux_security_get_boolean_active" >&6; }
|
||
|
+if test "x$ac_cv_lib_selinux_security_get_boolean_active" = x""yes; then :
|
||
|
+ cat >>confdefs.h <<_ACEOF
|
||
|
+#define HAVE_LIBSELINUX 1
|
||
|
+_ACEOF
|
||
|
+
|
||
|
+ LIBS="-lselinux $LIBS"
|
||
|
+
|
||
|
+fi
|
||
|
+
|
||
|
+
|
||
|
|
||
|
|
||
|
|