90 lines
2.6 KiB
Diff
90 lines
2.6 KiB
Diff
|
--- 1/gdb/config.in 2012-03-09 18:40:28.001871023 +0100
|
||
|
+++ ./gdb/config.in 2012-03-09 18:41:46.552621113 +0100
|
||
|
@@ -245,6 +245,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 if libunwind library is being used. */
|
||
|
#undef HAVE_LIBUNWIND
|
||
|
|
||
|
@@ -483,6 +486,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
|
||
|
|
||
|
--- 1/gdb/configure 2012-03-09 18:40:28.183870443 +0100
|
||
|
+++ ./gdb/configure 2012-03-09 18:41:45.783623559 +0100
|
||
|
@@ -15557,6 +15557,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.
|