Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 102438 - app-backup/dar-2.2.2: 'acl' USE flag not handled properly (doesn't work)
Summary: app-backup/dar-2.2.2: 'acl' USE flag not handled properly (doesn't work)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: MATSUU Takuto (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-08-13 15:59 UTC by Stefan Briesenick (RETIRED)
Modified: 2005-08-14 20:27 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Stefan Briesenick (RETIRED) gentoo-dev 2005-08-13 15:59:12 UTC
maybe it's a bug in the configure-script, but as soon as you specify    
--enable-ea-support *or* --disable-ea-support (doesn't matter), EA support    
will be disabled. If you specify nothing, it will be enabled.    
    
easy check:    
    
./configure --enable-ea-support    
[..]    
  LIBDAR parameters:    
   Zlib compression (gzip)    : YES    
   Libbz2 compression (bzip2) : YES    
   Strong encryption support  : YES    
   Extended Attributes support: NO    
   Large files support (> 2GB): YES    
   ext2fs NODUMP flag support : YES    
   Special allocation scheme  : YES    
   Integer size used          : infinint    
   Thread safe support        : YES    
    
and now w/o any options:    
    
./configure    
[..]    
  LIBDAR parameters:    
   Zlib compression (gzip)    : YES    
   Libbz2 compression (bzip2) : YES    
   Strong encryption support  : YES    
   Extended Attributes support: YES    
   Large files support (> 2GB): YES    
   ext2fs NODUMP flag support : YES    
   Special allocation scheme  : YES    
   Integer size used          : infinint    
   Thread safe support        : YES    
    
   
"./configure --help" say this:   
   
  --disable-ea-support    disable Extended Attributes support   
  --disable-nodump-flag   deactivate the "ext2/3 nodump flag" feature check   
   
so it seems, that you should not use --enable-* but --disable-*   
   
conclusion:   
   
   use acl && myconf="${myconf} --enable-ea-support"   
   
is wrong and should be written as:   
   
   use acl || myconf="${myconf} --disable-ea-support"   
  
should be easy to fix. 
 

Reproducible: Always
Steps to Reproduce:
Comment 1 MATSUU Takuto (RETIRED) gentoo-dev 2005-08-14 20:27:03 UTC
fixed in cvs. thanks.