pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/libtecla



Module Name:    pkgsrc
Committed By:   nros
Date:           Sun Dec 17 18:48:02 UTC 2023

Modified Files:
        pkgsrc/devel/libtecla: distinfo
Added Files:
        pkgsrc/devel/libtecla/patches: patch-enhance.c

Log Message:
libtecla: fix implicit declaration of ioctl on NetBSD


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/libtecla/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/libtecla/patches/patch-enhance.c

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

Modified files:

Index: pkgsrc/devel/libtecla/distinfo
diff -u pkgsrc/devel/libtecla/distinfo:1.12 pkgsrc/devel/libtecla/distinfo:1.13
--- pkgsrc/devel/libtecla/distinfo:1.12 Sun Dec 17 13:59:38 2023
+++ pkgsrc/devel/libtecla/distinfo      Sun Dec 17 18:48:01 2023
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.12 2023/12/17 13:59:38 nros Exp $
+$NetBSD: distinfo,v 1.13 2023/12/17 18:48:01 nros Exp $
 
 BLAKE2s (libtecla-1.6.3.tar.gz) = bbebec30932e29f014fdf120246c07d2a9ec763cbd1f29eae63a8c817acf8454
 SHA512 (libtecla-1.6.3.tar.gz) = e92da3e52f1e06f731378ea8d4529865526b7816f92c3cd41a24ee8b629453564ec1995cf528928dd0673826cdd88f57e057ec0641f9c00fc9ebb255c725df6b
 Size (libtecla-1.6.3.tar.gz) = 531499 bytes
 SHA1 (patch-aa) = 19bf75e91707946e4ca453e1c16db60c92271547
 SHA1 (patch-configure) = a088a9e6430340201f1febb7bd99ff12be273d70
+SHA1 (patch-enhance.c) = ce25d8b5779841b0c5e017631ade2f36a23ecd06

Added files:

Index: pkgsrc/devel/libtecla/patches/patch-enhance.c
diff -u /dev/null pkgsrc/devel/libtecla/patches/patch-enhance.c:1.1
--- /dev/null   Sun Dec 17 18:48:02 2023
+++ pkgsrc/devel/libtecla/patches/patch-enhance.c       Sun Dec 17 18:48:02 2023
@@ -0,0 +1,16 @@
+$NetBSD: patch-enhance.c,v 1.1 2023/12/17 18:48:02 nros Exp $
+
+* Fix implicit declaration of ioctl on NetBSD,
+  sys/ioctl.h is included directly without configure ifdefs
+  in other parts of the code.
+
+--- enhance.c.orig     2023-12-17 18:39:17.507725147 +0000
++++ enhance.c
+@@ -15,6 +15,7 @@
+ #endif
+ 
+ #include <fcntl.h>
++#include <sys/ioctl.h>
+ #include <sys/time.h>
+ #include <sys/types.h>
+ #include <sys/wait.h>



Home | Main Index | Thread Index | Old Index