pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/matio



Module Name:    pkgsrc
Committed By:   nros
Date:           Wed Oct 26 09:59:27 UTC 2022

Modified Files:
        pkgsrc/devel/matio: distinfo
Added Files:
        pkgsrc/devel/matio/patches: patch-configure

Log Message:
matio: fix getopt_long configure check, it always failed before


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/matio/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/matio/patches/patch-configure

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

Modified files:

Index: pkgsrc/devel/matio/distinfo
diff -u pkgsrc/devel/matio/distinfo:1.5 pkgsrc/devel/matio/distinfo:1.6
--- pkgsrc/devel/matio/distinfo:1.5     Sun Nov  7 10:50:38 2021
+++ pkgsrc/devel/matio/distinfo Wed Oct 26 09:59:26 2022
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.5 2021/11/07 10:50:38 nros Exp $
+$NetBSD: distinfo,v 1.6 2022/10/26 09:59:26 nros Exp $
 
 BLAKE2s (matio-1.5.21.tar.gz) = 436f7155f889be58d38a53b8c1c7ffcf5ef933b89003ad92bdf24b3abd5de134
 SHA512 (matio-1.5.21.tar.gz) = b00bcad807e6a7e10afa656eb77a0e3e9fb08d9cecc3e94ba41ef91ce60367d6686e6d387a874bbb83eb2f895d4a97caac554a70e7f5f6f5cb750052702d411c
 Size (matio-1.5.21.tar.gz) = 10110430 bytes
+SHA1 (patch-configure) = 884d581f2a03582553f352110130fba6cb5acc0d
 SHA1 (patch-documentation_Makefile.in) = 0f31d828464a09d061e24482e432422f4e5003df

Added files:

Index: pkgsrc/devel/matio/patches/patch-configure
diff -u /dev/null pkgsrc/devel/matio/patches/patch-configure:1.1
--- /dev/null   Wed Oct 26 09:59:27 2022
+++ pkgsrc/devel/matio/patches/patch-configure  Wed Oct 26 09:59:27 2022
@@ -0,0 +1,15 @@
+$NetBSD: patch-configure,v 1.1 2022/10/26 09:59:27 nros Exp $
+
+* fix getopt_long configure check
+
+--- configure.orig     2022-10-26 09:08:40.681472642 +0000
++++ configure
+@@ -12530,7 +12530,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
+ int
+ main ()
+ {
+-opt = getopt_long(0,NULL,NULL,NULL,NULL);
++int opt = getopt_long(0,NULL,NULL,NULL,NULL);
+   ;
+   return 0;
+ }



Home | Main Index | Thread Index | Old Index