generic-poky/meta/recipes-gnome/gnome/gnome-vfs-2.24.4/gnome-vfs-no-kerberos.patch

54 lines
1.7 KiB
Diff
Raw Permalink Normal View History

recpies: add Upstream-Status for multiple recipes' patches tcf-agent: update its patch's Upstream-Status screen: update its patch's Upstream-Status which (GPLv2): update its patch's Upstream-Status gnome-vfs: update its patch's Upstream-Status libart-lgpl: update its patch's Upstream-Status librsvg: update its patch's Upstream-Status fontconfig: update its patch's Upstream-Status freetype: update its patch's Upstream-Status libxsettings-client: update its patch's Upstream-Status libxcb: update its patch's Upstream-Status libx11: update its patch's Upstream-Status - remove 2 unused xim.patch. libx11-trim: update its patch's Upstream-Status libxcalibrate: update its patch's Upstream-Status libxcomposite: update its patch's Upstream-Status libxfont: update its patch's Upstream-Status xtrans: update its patch's Upstream-Status - remove abstract_socket_fix.patch as it's not used at all for long. calibrateproto: update its patch's Upstream-Status latencytop: update its patch's Upstream-Status powertop: update its patch's Upstream-Status settings-daemon: update its patch's Upstream-Status gnome-settings-daemon: update its patch's Upstream-Status libxklavier: update its patch's Upstream-Status liblbxutil: update its patch's Upstream-Status oprofile: update its patch's Upstream-Status and remove an unused patch - delete xml_callgraph_details.patch as it's not used at all. (From OE-Core rev: 94991fb73586887bfc740eacf190032dfb206a65) Signed-off-by: Dexuan Cui <dexuan.cui@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-05-11 03:01:38 +00:00
Upstream-Status: Inappropriate [configuration]
removes kerberos completely to avoid conflicts with installed kerberos
--- configure.in.orig 2007-01-05 19:42:26.418541610 +0200
+++ configure.in 2007-01-05 19:42:56.604261797 +0200
@@ -436,47 +436,6 @@
])
AM_CONDITIONAL(HAVE_CDDA, test $have_cdda = yes)
AC_SUBST(CDDA_LIBS)
-
-dnl GSSAPI
-dnl Check for Kerberos installation
-have_gssapi=no
-AC_PATH_PROG([KRB5_CONFIG], krb5-config, none, $PATH:/usr/kerberos/bin)
-
-if test "x$KRB5_CONFIG" != "xnone"; then
- GSSAPI_LIBS="`${KRB5_CONFIG} --libs gssapi`"
- GSSAPI_CFLAGS="`${KRB5_CONFIG} --cflags gssapi`"
-
- saved_CPPFLAGS="$CPPFLAGS"
- saved_LIBS="$LIBS"
- LIBS="$LIBS $GSSAPI_LIBS"
- CPPFLAGS="$CPPFLAGS $GSSAPI_CFLAGS"
- # MIT and Heimdal put gssapi.h in different places
- AC_CHECK_HEADERS(gssapi/gssapi.h gssapi.h, [
- AC_CHECK_FUNCS(gss_init_sec_context, [
- AC_MSG_NOTICE([GSSAPI authentication support enabled])
- AC_DEFINE(HAVE_GSSAPI, 1, [Define if GSSAPI support is enabled])
- AC_CHECK_HEADERS(gssapi/gssapi_generic.h)
- have_gssapi=yes
-
- # MIT Kerberos lacks GSS_C_NT_HOSTBASED_SERVICE
- AC_CHECK_DECL([GSS_C_NT_HOSTBASED_SERVICE],,
- [AC_DEFINE([GSS_C_NT_HOSTBASED_SERVICE], gss_nt_service_name,
- [Define if GSS_C_NT_HOSTBASED_SERVICE is not defined otherwise])
- ], [
- #ifdef HAVE_GSSAPI_GSSAPI_H
- #include <gssapi/gssapi.h>
- #else
- #include <gssapi.h>
- #endif
- ])
- ])
- break
- ])
- LIBS="$saved_LIBS"
- CPPFLAGS="$saved_CPPFLAGS"
-fi
-AC_SUBST(GSSAPI_LIBS)
-AC_SUBST(GSSAPI_CFLAGS)
dnl ******************************
dnl http-method (neon checks)