little tweaks before import

This commit is contained in:
Hibby 2024-11-29 19:18:48 +00:00
parent 6bd281ab30
commit 7433c77604
No known key found for this signature in database
3 changed files with 36 additions and 1 deletions

3
debian/copyright vendored
View File

@ -3,7 +3,8 @@ Upstream-Name: linBPQ
Upstream-Contact: John Wiseman G8BPQ <john.wiseman@cantab.net>
Source: https://www.cantab.net/users/john.wiseman/Documents/
Files-Excluded: *.vcproj* *.bak *.lib *.dll *.wav *.asm *.vcxproj* *.pdb *.exe
.gitignore XAprs
.gitignore XAprs zlib.h zconf.h MQTT* pcap.h miniupnpc.h upnpdev.h
igd_desc_parse.h upnpcommands.h upnperrors.h miniupnpctypes.h
Files: *
Copyright: 1990-2024 John Wiseman G8BPQ <john.wiseman@cantab.net>

33
debian/patches/dynamic-links vendored Normal file
View File

@ -0,0 +1,33 @@
--- a/LinBPQ.c
+++ b/LinBPQ.c
@@ -717,7 +717,7 @@
}
-#include "getopt.h"
+#include <getopt.h>
static struct option long_options[] =
{
--- a/DRATS.c
+++ b/DRATS.c
@@ -563,7 +563,7 @@
#define ZEXPORT __stdcall
#endif
-#include "zlib.h"
+#include <zlib.h>
int doinflate(unsigned char * source, unsigned char * dest, int Len, int destlen, int * outLen)
--- a/HTTPcode.c
+++ b/HTTPcode.c
@@ -38,7 +38,7 @@
#define ZEXPORT __stdcall
#endif
-#include "zlib.h"
+#include <zlib.h>
#define CKernel
#include "httpconnectioninfo.h"

View File

@ -2,3 +2,4 @@ headers.patch
ftbfs-gcc14.patch
spelling-errors.patch
makefile
dynamic-links