svn commit: r344382 - head/graphics/exiv2/files

Tijl Coosemans tijl at FreeBSD.org
Sat Feb 15 13:02:54 UTC 2014


Author: tijl
Date: Sat Feb 15 13:02:53 2014
New Revision: 344382
URL: http://svnweb.freebsd.org/changeset/ports/344382
QAT: https://qat.redports.org/buildarchive/r344382/

Log:
  Fix build after r344318.  Libtool no longer adds implicit dependencies to
  the linker command line.
  
  PR:		ports/186789

Added:
  head/graphics/exiv2/files/
  head/graphics/exiv2/files/patch-src-Makefile   (contents, props changed)

Added: head/graphics/exiv2/files/patch-src-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/exiv2/files/patch-src-Makefile	Sat Feb 15 13:02:53 2014	(r344382)
@@ -0,0 +1,11 @@
+--- src/Makefile.orig
++++ src/Makefile
+@@ -249,7 +249,7 @@
+ 	@$(LIBTOOL) --mode=link $(LINK.cc) -o $@ $(LIBRARY) $@.o -rpath $(libdir)
+ 
+ $(EXIV2BIN): lib $(EXIV2OBJ) $(EXIV2COBJ)
+-	@$(LIBTOOL) --mode=link $(LINK.cc) -o $@ $(LIBRARY) $(EXIV2OBJ) $(EXIV2COBJ) -rpath $(libdir)
++	@$(LIBTOOL) --mode=link $(LINK.cc) -o $@ $(LIBRARY) $(EXIV2OBJ) $(EXIV2COBJ) -rpath $(libdir) $(LIBS)
+ 
+ $(MCBIN): lib $(MCOBJ)
+ 	@$(LIBTOOL) --mode=link $(LINK.cc) -o $@ $(LIBRARY) $(MCOBJ) -rpath $(libdir)


More information about the svn-ports-all mailing list