pkgsrc-Changes archive

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

CVS commit: pkgsrc/mk



Module Name:    pkgsrc
Committed By:   pho
Date:           Thu Jan 27 04:27:05 UTC 2022

Modified Files:
        pkgsrc/mk: fuse.buildlink3.mk

Log Message:
Fix FUSE version in fake pkg-config files

The original FUSE contains a patch version in fuse.pc or fuse3.pc. We must do
the same or otherwise pkg-config requirements such as 'fuse >= 2.6.0' will fail.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 pkgsrc/mk/fuse.buildlink3.mk

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

Modified files:

Index: pkgsrc/mk/fuse.buildlink3.mk
diff -u pkgsrc/mk/fuse.buildlink3.mk:1.24 pkgsrc/mk/fuse.buildlink3.mk:1.25
--- pkgsrc/mk/fuse.buildlink3.mk:1.24   Sat Jan 22 18:23:43 2022
+++ pkgsrc/mk/fuse.buildlink3.mk        Thu Jan 27 04:27:05 2022
@@ -1,4 +1,4 @@
-# $NetBSD: fuse.buildlink3.mk,v 1.24 2022/01/22 18:23:43 pho Exp $
+# $NetBSD: fuse.buildlink3.mk,v 1.25 2022/01/27 04:27:05 pho Exp $
 #
 # Makefile fragment for packages using the FUSE framework.
 #
@@ -81,7 +81,7 @@ BUILTIN_VERSION.fuse!=                                        \
                /\#define[ \t]+FUSE_MINOR_VERSION[ \t]/ { if (minor == "") minor = $$3; } \
                END { \
                        if (major != "" && minor != "") \
-                               print major "." minor; \
+                               print major "." minor ".0"; \
                        else \
                                print ""; \
                }' ${H_FUSE}



Home | Main Index | Thread Index | Old Index