pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/lua-stringy



Module Name:    pkgsrc
Committed By:   nia
Date:           Sun Sep 10 08:40:51 UTC 2023

Modified Files:
        pkgsrc/textproc/lua-stringy: distinfo
        pkgsrc/textproc/lua-stringy/patches: patch-stringy_Makefile

Log Message:
lua-stringy: c89 default is unacceptable


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/lua-stringy/distinfo
cvs rdiff -u -r1.1 -r1.2 \
    pkgsrc/textproc/lua-stringy/patches/patch-stringy_Makefile

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

Modified files:

Index: pkgsrc/textproc/lua-stringy/distinfo
diff -u pkgsrc/textproc/lua-stringy/distinfo:1.4 pkgsrc/textproc/lua-stringy/distinfo:1.5
--- pkgsrc/textproc/lua-stringy/distinfo:1.4    Tue Oct 26 11:22:20 2021
+++ pkgsrc/textproc/lua-stringy/distinfo        Sun Sep 10 08:40:51 2023
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.4 2021/10/26 11:22:20 nia Exp $
+$NetBSD: distinfo,v 1.5 2023/09/10 08:40:51 nia Exp $
 
 BLAKE2s (lua-stringy-0.7.0.tar.gz) = a6b28c801c59ebdea6a7e9b3a9552f9150388c9b7beddeec510df97a88d05e21
 SHA512 (lua-stringy-0.7.0.tar.gz) = e23ea0f04bd4c1db8fe3fdda2d8fb4a18e78b82aadc12edf1114b29b18b68d981f7d304ccd1823711e7cc6dc586694f0d902faba41a91387319a1ceefc29e116
 Size (lua-stringy-0.7.0.tar.gz) = 6213 bytes
-SHA1 (patch-stringy_Makefile) = de1abbb4e5c5a4b805caea58bd88b1ed4eeff0ae
+SHA1 (patch-stringy_Makefile) = ce1c43843c0cd828f01ba9b1e66dcd33be7927f6
 SHA1 (patch-stringy_stringy.c) = a984b24ec331fc0188b95a119c923f443e08b8a3

Index: pkgsrc/textproc/lua-stringy/patches/patch-stringy_Makefile
diff -u pkgsrc/textproc/lua-stringy/patches/patch-stringy_Makefile:1.1 pkgsrc/textproc/lua-stringy/patches/patch-stringy_Makefile:1.2
--- pkgsrc/textproc/lua-stringy/patches/patch-stringy_Makefile:1.1      Wed Jul  8 11:54:53 2020
+++ pkgsrc/textproc/lua-stringy/patches/patch-stringy_Makefile  Sun Sep 10 08:40:51 2023
@@ -1,6 +1,7 @@
-$NetBSD: patch-stringy_Makefile,v 1.1 2020/07/08 11:54:53 nia Exp $
+$NetBSD: patch-stringy_Makefile,v 1.2 2023/09/10 08:40:51 nia Exp $
 
-- Append CFLAGS.
+- Append CFLAGS. Uses for loop initial declarations, c89 default
+  is unacceptable.
 - Use LDFLAGS when linking.
 - Don't try to run tests.
 
@@ -11,7 +12,7 @@ $NetBSD: patch-stringy_Makefile,v 1.1 20
  LUA_CFLAGS = $(shell pkg-config $(LUA_PC) --cflags)
  
 -CFLAGS ?= -O3 -Wall -Werror
-+CFLAGS += -Wall
++CFLAGS += -std=c99 -Wall
  
  all: stringy.so
  



Home | Main Index | Thread Index | Old Index