After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 348301 - Inappropriate Makefile flag
Inappropriate Makefile flag
Status: RESOLVED FIXED
Product: nautilus
Classification: Core
Component: [obsolete] Builds
2.24.x
Other Mac OS
: Normal minor
: ---
Assigned To: Nautilus Maintainers
Nautilus Maintainers
Depends on:
Blocks:
 
 
Reported: 2006-07-21 22:16 UTC by Daniel Macks
Modified: 2009-03-16 16:03 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Daniel Macks 2006-07-21 22:16:13 UTC
While building nautilus-2.14.1, linking in libnautilus-private gives a warning:

libtool: link: warning: `-version-info/-version-number' is ignored for convenience libraries

To fix, patch libnautilus-private/Makefile.am (same code in CVS HEAD):

 libnautilus_private_la_LDFLAGS =	\
-	-version-info 2:0:0		\
 	-no-undefined			\
 	$(NULL)
Comment 1 Emmanuel Fleury 2008-11-11 16:29:54 UTC
How comes this patch hasn't been reviewed since so long ?

Anyway, it hasn't be applied (I checked). So, anything new about it ?
Comment 2 Cosimo Cecchi 2009-03-16 16:03:55 UTC
Fixed in trunk.

2009-03-16  Cosimo Cecchi  <cosimoc@gnome.org>

	* libnautilus-private/Makefile.am: remove -version-info LDFLAG
	from libnautilus-private, as that's a private library.
	Patch by Daniel Macks (#348301).