Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 255761

Summary: app-text/evince bundles an internal copy of libzip (dev-libs/libzip)
Product: Gentoo Linux Reporter: Diego Elio Pettenò (RETIRED) <flameeyes>
Component: New packagesAssignee: Gentoo Linux Gnome Desktop Team <gnome>
Status: RESOLVED INVALID    
Severity: normal CC: esigra, n-roeser, rbu
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---
Bug Depends on:    
Bug Blocks: 251464    

Description Diego Elio Pettenò (RETIRED) gentoo-dev 2009-01-21 15:42:02 UTC
Check $S/backend/impress/zip.{c,h}.
Comment 1 Gilles Dartiguelongue (RETIRED) gentoo-dev 2009-01-31 17:17:08 UTC
after reviewing headers, it appears this is in fact a false positive.

For example, in evince:

zip *zip_open (const char *fname, int *err);
void zip_close (zip *z);
char *zip_error (int err);
int zip_load (zip *z, const char *name, char *buf);

and in libzip:

ZIP_EXTERN struct zip *zip_open(const char *, int, int *);
ZIP_EXTERN int zip_close(struct zip *);
no zip_load and zip_error in zip.h

so all considered it can't be the same.