Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/gnome-vfs/files: gnome-vfs-2.20.0-automagic-deps.patch digest-gnome-vfs-2.20.0-r1
Date: Mon, 05 Nov 2007 22:28:00
Message-Id: E1IpAQE-0007WE-5c@stork.gentoo.org
1 eva 07/11/05 22:27:54
2
3 Added: gnome-vfs-2.20.0-automagic-deps.patch
4 digest-gnome-vfs-2.20.0-r1
5 Log:
6 fix bug #191426 and bug #195216
7 (Portage version: 2.1.3.16)
8
9 Revision Changes Path
10 1.1 gnome-base/gnome-vfs/files/gnome-vfs-2.20.0-automagic-deps.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-vfs/files/gnome-vfs-2.20.0-automagic-deps.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-vfs/files/gnome-vfs-2.20.0-automagic-deps.patch?rev=1.1&content-type=text/plain
14
15 Index: gnome-vfs-2.20.0-automagic-deps.patch
16 ===================================================================
17 Index: configure.in
18 ===================================================================
19 --- configure.in (révision 5413)
20 +++ configure.in (copie de travail)
21 @@ -448,9 +448,13 @@
22 dnl GSSAPI
23 dnl Check for Kerberos installation
24 have_gssapi=no
25 +
26 +AC_ARG_ENABLE(krb5,
27 + AS_HELP_STRING([--enable-krb5],[Enable Kerberos 5 support]),
28 + [],[enable_krb5=yes])
29 AC_PATH_PROG([KRB5_CONFIG], krb5-config, none, $PATH:/usr/kerberos/bin)
30 -
31 -if test "x$KRB5_CONFIG" != "xnone"; then
32 +
33 +if test "x$KRB5_CONFIG" != "xnone" -a "x$enable_krb5" = "xyes"; then
34 GSSAPI_LIBS="`${KRB5_CONFIG} --libs gssapi`"
35 GSSAPI_CFLAGS="`${KRB5_CONFIG} --cflags gssapi`"
36
37 @@ -481,8 +485,12 @@
38 break
39 ])
40 LIBS="$saved_LIBS"
41 - CPPFLAGS="$saved_CPPFLAGS"
42 -fi
43 + CPPFLAGS="$saved_CPPFLAGS"
44 +fi
45 +
46 +if test "x$KRB5_CONFIG" = "xnone" -a "x$enable_krb5" = "xyes"; then
47 + AC_MSG_ERROR([*** kerberos 5 support enabled but krb5-config not found ***])
48 +fi
49 AC_SUBST(GSSAPI_LIBS)
50 AC_SUBST(GSSAPI_CFLAGS)
51
52 @@ -1077,9 +1085,13 @@
53 dnl =====================
54 dnl ACL checks
55 dnl =====================
56 -acl_backends=""
57 +acl_backends="none"
58 ACL_LIBS=""
59
60 +AC_ARG_ENABLE(acl,
61 + AS_HELP_STRING([--disable-acl],[Don't use libacl support]),
62 + [],[enable_acl=yes])
63 +
64 AC_CHECK_LIB(attr,getxattr,[ACL_LIBS="$ACL_LIBS -lattr"])
65 AC_CHECK_LIB(acl,acl_get_file,[ACL_LIBS="$ACL_LIBS -lacl"])
66 AC_CHECK_LIB(sec,acl,[ACL_LIBS="$ACL_LIBS -lsec"])
67 @@ -1102,7 +1114,7 @@
68 gvfs_cv_HAVE_POSIX_ACLS=yes, gvfs_cv_HAVE_POSIX_ACLS=no)
69 LIBS=$acl_LIBS])
70
71 -if test x"$gvfs_cv_HAVE_SOLARIS_ACLS" = x"yes" ; then
72 +if test x"$gvfs_cv_HAVE_SOLARIS_ACLS" = x"yes" -a x"$enable_acl" = x"yes"; then
73 have_solaris_acl_support=yes
74 acl_backends="solaris"
75
76 @@ -1110,7 +1122,7 @@
77 AC_CHECK_HEADERS([pwd.h grp.h])
78 fi
79
80 -if test x"$gvfs_cv_HAVE_POSIX_ACLS" = x"yes" ; then
81 +if test x"$gvfs_cv_HAVE_POSIX_ACLS" = x"yes" -a x"$enable_acl" = x"yes"; then
82 have_posix_acl_support=yes
83 acl_backends="posix"
84
85
86
87
88 1.1 gnome-base/gnome-vfs/files/digest-gnome-vfs-2.20.0-r1
89
90 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-vfs/files/digest-gnome-vfs-2.20.0-r1?rev=1.1&view=markup
91 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-vfs/files/digest-gnome-vfs-2.20.0-r1?rev=1.1&content-type=text/plain
92
93 Index: digest-gnome-vfs-2.20.0-r1
94 ===================================================================
95 MD5 b9fe0a066d0e693e74a000e55338235b gnome-vfs-2.20.0.tar.bz2 1918358
96 RMD160 880e1c1afcb0c22131adfad4e5a5aa3605c136bb gnome-vfs-2.20.0.tar.bz2 1918358
97 SHA256 cd95ec5a4808799f033dcb9daf37ed38436c594d4014e5804967fa9e5893e91f gnome-vfs-2.20.0.tar.bz2 1918358
98
99
100
101 --
102 gentoo-commits@g.o mailing list