Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (0db36380c76bfd9cf11dd3d3178b83e086f30fcc)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (0db36380c76bfd9cf11dd3d3178b83e086f30fcc)
  • Date: Mon, 31 Dec 2012 04:37:45 -0600

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

gnome2-libs/gnome-vfs2/DEPENDS | 16 +++++++++++-----
gnome2-libs/gnome-vfs2/HISTORY | 4 ++++
2 files changed, 15 insertions(+), 5 deletions(-)

New commits:
commit 0db36380c76bfd9cf11dd3d3178b83e086f30fcc
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

gnome-vfs2: handle dependencies for auto-linking rules in configure

commit dd884ee9980145a927fde5d1e08857d335ec7b4f
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

gnome-vfs2: attr and acl are optional, see configure script

diff --git a/gnome2-libs/gnome-vfs2/DEPENDS b/gnome2-libs/gnome-vfs2/DEPENDS
index 69deb27..7aae01f 100755
--- a/gnome2-libs/gnome-vfs2/DEPENDS
+++ b/gnome2-libs/gnome-vfs2/DEPENDS
@@ -63,17 +63,23 @@ optional_depends krb5
\
'' \
'for Kerberos authentication support' &&

-optional_depends acl \
- '' \
- '' \
- 'for file access lists support' &&
+if spell_ok attr; then
+ depends attr
+else
+ optional_depends attr '' '' 'for file attributes support'
+fi &&
+
+if spell_ok acl; then
+ depends acl
+else
+ optional_depends acl '' '' 'for file access lists support'
+fi &&

optional_depends libselinux \
'--enable-selinux' \
'--disable-selinux' \
'for SELinux support' &&

-depends attr &&
depends bzip2 &&
depends dbus &&
depends FAM &&
diff --git a/gnome2-libs/gnome-vfs2/HISTORY b/gnome2-libs/gnome-vfs2/HISTORY
index 6d9fcc6..3b6dfdd 100644
--- a/gnome2-libs/gnome-vfs2/HISTORY
+++ b/gnome2-libs/gnome-vfs2/HISTORY
@@ -1,3 +1,7 @@
+2012-12-31 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: attr and acl are optional, see configure script;
+ handle dependencies for auto-linking rules in configure
+
2012-12-27 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: PATCH_LEVEL -> PATCHLEVEL




  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (0db36380c76bfd9cf11dd3d3178b83e086f30fcc), Vlad Glagolev, 12/31/2012

Archive powered by MHonArc 2.6.24.

Top of Page