pkgsrc-Changes archive

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

CVS commit: pkgsrc/audio/fluidsynth



Module Name:    pkgsrc
Committed By:   joerg
Date:           Thu Dec 19 23:59:56 UTC 2019

Modified Files:
        pkgsrc/audio/fluidsynth: Makefile distinfo
Added Files:
        pkgsrc/audio/fluidsynth/patches: patch-include_fluidsynth_log.h

Log Message:
Use protected names in attributes, avoids overlap with SSP. Bump
revision.


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 pkgsrc/audio/fluidsynth/Makefile
cvs rdiff -u -r1.19 -r1.20 pkgsrc/audio/fluidsynth/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/audio/fluidsynth/patches/patch-include_fluidsynth_log.h

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

Modified files:

Index: pkgsrc/audio/fluidsynth/Makefile
diff -u pkgsrc/audio/fluidsynth/Makefile:1.32 pkgsrc/audio/fluidsynth/Makefile:1.33
--- pkgsrc/audio/fluidsynth/Makefile:1.32       Sun Dec  1 12:51:57 2019
+++ pkgsrc/audio/fluidsynth/Makefile    Thu Dec 19 23:59:56 2019
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.32 2019/12/01 12:51:57 nia Exp $
+# $NetBSD: Makefile,v 1.33 2019/12/19 23:59:56 joerg Exp $
 
 DISTNAME=      fluidsynth-2.1.0
+PKGREVISION=   1
 CATEGORIES=    audio
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=FluidSynth/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}

Index: pkgsrc/audio/fluidsynth/distinfo
diff -u pkgsrc/audio/fluidsynth/distinfo:1.19 pkgsrc/audio/fluidsynth/distinfo:1.20
--- pkgsrc/audio/fluidsynth/distinfo:1.19       Sun Dec  1 12:51:57 2019
+++ pkgsrc/audio/fluidsynth/distinfo    Thu Dec 19 23:59:56 2019
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.19 2019/12/01 12:51:57 nia Exp $
+$NetBSD: distinfo,v 1.20 2019/12/19 23:59:56 joerg Exp $
 
 SHA1 (fluidsynth-2.1.0.tar.gz) = 3822f1406cbf6c810928277a3695b5e38a5dbde4
 RMD160 (fluidsynth-2.1.0.tar.gz) = 205e8d5d7f7645637c22db291da91356a02939da
 SHA512 (fluidsynth-2.1.0.tar.gz) = d7af4047ebde49ef48098ae9dbab5d90422a4536acf28a2de32d8da67a50ebbbcf30e06833b630bd54e441040be0e432b377e3b63bf666e63106e69cd408ea0d
 Size (fluidsynth-2.1.0.tar.gz) = 1356096 bytes
 SHA1 (patch-CMakeLists.txt) = 79804b84964e9557180c0f86e36d465fac7126fe
+SHA1 (patch-include_fluidsynth_log.h) = 35378120546ca4619e232707de6a0025c6c45ad8
 SHA1 (patch-src_drivers_fluid__alsa.c) = a482764f0bbc15b5cf04e6920374b2f4811760aa

Added files:

Index: pkgsrc/audio/fluidsynth/patches/patch-include_fluidsynth_log.h
diff -u /dev/null pkgsrc/audio/fluidsynth/patches/patch-include_fluidsynth_log.h:1.1
--- /dev/null   Thu Dec 19 23:59:56 2019
+++ pkgsrc/audio/fluidsynth/patches/patch-include_fluidsynth_log.h      Thu Dec 19 23:59:56 2019
@@ -0,0 +1,15 @@
+$NetBSD: patch-include_fluidsynth_log.h,v 1.1 2019/12/19 23:59:56 joerg Exp $
+
+Use the protected form to avoid conflicts with printf macros.
+
+--- include/fluidsynth/log.h.orig      2019-12-19 23:29:25.082934836 +0000
++++ include/fluidsynth/log.h
+@@ -79,7 +79,7 @@ FLUIDSYNTH_API void fluid_default_log_fu
+ 
+ FLUIDSYNTH_API int fluid_log(int level, const char *fmt, ...)
+ #if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__)
+-__attribute__ ((format (printf, 2, 3)))
++__attribute__ ((__format__ (__printf__, 2, 3)))
+ #endif
+ ;
+ 



Home | Main Index | Thread Index | Old Index