pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/trio



Module Name:    pkgsrc
Committed By:   nia
Date:           Fri Nov 20 14:36:07 UTC 2020

Modified Files:
        pkgsrc/devel/trio: distinfo
Added Files:
        pkgsrc/devel/trio/patches: patch-Makefile

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


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/trio/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/trio/patches/patch-Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/trio/distinfo
diff -u pkgsrc/devel/trio/distinfo:1.7 pkgsrc/devel/trio/distinfo:1.8
--- pkgsrc/devel/trio/distinfo:1.7      Tue May 12 09:33:58 2020
+++ pkgsrc/devel/trio/distinfo  Fri Nov 20 14:36:07 2020
@@ -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

Added files:

Index: pkgsrc/devel/trio/patches/patch-Makefile
diff -u /dev/null pkgsrc/devel/trio/patches/patch-Makefile:1.1
--- /dev/null   Fri Nov 20 14:36:07 2020
+++ pkgsrc/devel/trio/patches/patch-Makefile    Fri Nov 20 14:36:07 2020
@@ -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