pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/trio trio: Fix "unable to infer tagged configura...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a5693c6a6faf
branches:  trunk
changeset: 442203:a5693c6a6faf
user:      nia <nia%pkgsrc.org@localhost>
date:      Fri Nov 20 14:36:07 2020 +0000

description:
trio: Fix "unable to infer tagged configuration" errors for libtool.

diffstat:

 devel/trio/distinfo               |   3 ++-
 devel/trio/patches/patch-Makefile |  22 ++++++++++++++++++++++
 2 files changed, 24 insertions(+), 1 deletions(-)

diffs (38 lines):

diff -r a1d30d5435bf -r a5693c6a6faf devel/trio/distinfo
--- a/devel/trio/distinfo       Fri Nov 20 14:33:27 2020 +0000
+++ b/devel/trio/distinfo       Fri Nov 20 14:36:07 2020 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.7 2020/05/12 09:33:58 nia Exp $
+$NetBSD: distinfo,v 1.8 2020/11/20 14:36:07 nia Exp $
 
 SHA1 (trio-1.16.tar.gz) = ef2ee4755e54b655c57fdabb1a9e2aa341a235a4
 RMD160 (trio-1.16.tar.gz) = ce7aaa21611d5cc4c1d888d557bc0a13ad6b0e53
 SHA512 (trio-1.16.tar.gz) = 3a8bac3ed001f70f498bd2ab0881ed6d3760bc978bf9ff587c3fc1d5d7a38205f779c5fe445f41edaa9e23c15bc1b4a521916e19161277741bc8e2f744b46c69
 Size (trio-1.16.tar.gz) = 167337 bytes
+SHA1 (patch-Makefile) = 659f9c3c5ddc159f794d9ab3164492803094913e
diff -r a1d30d5435bf -r a5693c6a6faf devel/trio/patches/patch-Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/trio/patches/patch-Makefile Fri Nov 20 14:36:07 2020 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-Makefile,v 1.1 2020/11/20 14:36:07 nia Exp $
+
+Fix "unable to infer tagged configuration" errors.
+
+--- Makefile.orig      2020-11-20 14:32:34.148457790 +0000
++++ Makefile
+@@ -26,7 +26,7 @@ RM?=         rm
+ .PHONY: all clean install
+ 
+ .c.lo:
+-      ${LIBTOOL} --mode=compile ${CC} -o $@ -c ${CFLAGS} ${CPPFLAGS} $<
++      ${LIBTOOL} --mode=compile --tag=CC ${CC} -o $@ -c ${CFLAGS} ${CPPFLAGS} $<
+ 
+ all: ${LIB}.la
+ 
+@@ -39,5 +39,5 @@ install:
+       ${LIBTOOL} --mode=install ${BSD_INSTALL_LIB} ${LIB}.la ${DESTDIR}${LIBDIR}/${LIB}.la
+ 
+ ${LIB}.la: ${OBJS}
+-      ${LIBTOOL} --mode=link ${CC} -o $@ ${CFLAGS} ${LDFLAGS} \
++      ${LIBTOOL} --mode=link --tag=CC ${CC} -o $@ ${CFLAGS} ${LDFLAGS} \
+           -rpath ${LIBDIR} -version-info ${LIB_VER} ${OBJS} ${LIBS}



Home | Main Index | Thread Index | Old Index