Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 255761 - app-text/evince bundles an internal copy of libzip (dev-libs/libzip)
Summary: app-text/evince bundles an internal copy of libzip (dev-libs/libzip)
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: bundled-libs
  Show dependency tree
 
Reported: 2009-01-21 15:42 UTC by Diego Elio Pettenò (RETIRED)
Modified: 2009-02-11 08:54 UTC (History)
3 users (show)

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 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.