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

do I need to mention tiny change in copyright file



Hi,

Do I need to mention the person submitted 3 patches in
debian/copyright file, containing a total of 5 lines changed in my
package?

I have attached the patches. Upstream did a notice in ChangeLog and
AUTHORS as tiny change, as recommended by:

https://www.gnu.org/prep/maintain/maintain.html#Legally-Significant

bests,
Joël
--- ags/audio/ags_recall_dssi.c.orig	2019-02-11 23:23:23 UTC
+++ ags/audio/ags_recall_dssi.c
@@ -28,7 +28,7 @@
 
 #include <ags/audio/ags_port.h>
 
-#ifdef __APPLE__
+#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__DragonFly__)
 #include <machine/endian.h>
 #else
 #include <endian.h>
--- ags/server/security/ags_xml_password_store.c.orig	2019-02-11 23:30:18 UTC
+++ ags/server/security/ags_xml_password_store.c
@@ -23,7 +23,7 @@
 
 #include <unistd.h>
 
-#if !defined(__APPLE__)
+#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__DragonFly__)
 #define __USE_GNU
 #define _GNU_SOURCE
 #include <crypt.h>
@@ -220,13 +220,13 @@ ags_xml_password_store_encrypt_password(
 					gchar *salt,
 					GError **error)
 {
-#ifndef __APPLE__
+#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__DragonFly__)
   struct crypt_data *data;
 #endif
 
   gchar *password_hash;
   
-#if !defined(__APPLE__)
+#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__DragonFly__)
   data = (struct crypt_data *) malloc(sizeof(struct crypt_data));
   data->initialized = 0;
 
--- ags/audio/recall/ags_play_dssi_audio.c.orig	2019-02-11 23:28:26 UTC
+++ ags/audio/recall/ags_play_dssi_audio.c
@@ -27,7 +27,7 @@
 
 #include <ags/audio/ags_port.h>
 
-#ifdef __APPLE__
+#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__DragonFly__)
 #include <machine/endian.h>
 #else
 #include <endian.h>

Reply to: