1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## 03_misc_warns.dpatch by Francesco Paolo Lovergine <frankie@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: No description.
@DPATCH@
diff -urNad drawmap~/big_buf_io.c drawmap/big_buf_io.c
--- drawmap~/big_buf_io.c 2007-05-18 14:49:27.000000000 +0200
+++ drawmap/big_buf_io.c 2007-05-18 14:51:34.000000000 +0200
@@ -48,6 +48,7 @@
#include <sys/types.h>
#include <fcntl.h>
+#include <string.h>
int buf_open(const char *, int, mode_t, ...);
int buf_close(int);
diff -urNad drawmap~/big_buf_io_z.c drawmap/big_buf_io_z.c
--- drawmap~/big_buf_io_z.c 2007-05-18 14:49:27.000000000 +0200
+++ drawmap/big_buf_io_z.c 2007-05-18 14:51:34.000000000 +0200
@@ -45,6 +45,7 @@
#include <sys/types.h>
#include <fcntl.h>
+#include <string.h>
#include "gzip.h"
int buf_open_z(const char *, int, mode_t, ...);
diff -urNad drawmap~/dem.c drawmap/dem.c
--- drawmap~/dem.c 2001-08-02 08:27:39.000000000 +0200
+++ drawmap/dem.c 2007-05-18 14:53:14.000000000 +0200
@@ -22,6 +22,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
+#include <string.h>
#include "drawmap.h"
#include "dem.h"
diff -urNad drawmap~/dlg.c drawmap/dlg.c
--- drawmap~/dlg.c 2007-05-18 14:51:33.000000000 +0200
+++ drawmap/dlg.c 2007-05-18 14:54:31.000000000 +0200
@@ -25,6 +25,7 @@
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
+#include <string.h>
#include "drawmap.h"
#include "dlg.h"
diff -urNad drawmap~/gzip.h drawmap/gzip.h
--- drawmap~/gzip.h 1998-10-12 07:39:28.000000000 +0200
+++ drawmap/gzip.h 2007-05-18 14:56:00.000000000 +0200
@@ -29,6 +29,7 @@
* too often
*/
#include <stdio.h>
+#include <stdlib.h>
#if !defined(NO_STRING_H) || defined(STDC_HEADERS)
# include <string.h>
# if !defined(STDC_HEADERS) && !defined(NO_MEMORY_H) && !defined(__GNUC__)
diff -urNad drawmap~/ll2utm.c drawmap/ll2utm.c
--- drawmap~/ll2utm.c 2000-07-22 11:54:53.000000000 +0200
+++ drawmap/ll2utm.c 2007-05-18 14:57:03.000000000 +0200
@@ -30,6 +30,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <math.h>
#include <sys/types.h>
#include "drawmap.h"
diff -urNad drawmap~/unblock_dem.c drawmap/unblock_dem.c
--- drawmap~/unblock_dem.c 2007-05-18 14:49:27.000000000 +0200
+++ drawmap/unblock_dem.c 2007-05-18 14:51:34.000000000 +0200
@@ -27,6 +27,7 @@
*/
#include <stdio.h>
#include <sys/types.h>
+#include <stdlib.h>
#include "drawmap.h"
#include "dem.h"
diff -urNad drawmap~/unblock_dlg.c drawmap/unblock_dlg.c
--- drawmap~/unblock_dlg.c 2007-05-18 14:49:27.000000000 +0200
+++ drawmap/unblock_dlg.c 2007-05-18 14:51:34.000000000 +0200
@@ -27,6 +27,7 @@
*/
#include <stdio.h>
#include <sys/types.h>
+#include <stdlib.h>
#include "drawmap.h"
#include "dlg.h"
|