Switch URL to new upstream. Switch to AUTORELEASE for simplicity. Removed most patches as they have been upstreamed. Rebased the remaining one. Fixed license information. Signed-off-by: Rosen Penev <rosenp@gmail.com>lilik-openwrt-22.03
@ -1,12 +0,0 @@ | |||||
--- a/src/minicom.c | |||||
+++ b/src/minicom.c | |||||
@@ -31,7 +31,9 @@ | |||||
#include <getopt.h> | |||||
#include <wchar.h> | |||||
#include <wctype.h> | |||||
+#ifdef HAVE_ICONV | |||||
#include <iconv.h> | |||||
+#endif | |||||
#include <limits.h> | |||||
#define EXTERN |
@ -1,14 +0,0 @@ | |||||
--- a/src/dial.c | |||||
+++ b/src/dial.c | |||||
@@ -39,11 +39,9 @@ | |||||
#include "intl.h" | |||||
#ifdef VC_MUSIC | |||||
-# if defined(__GLIBC__) | |||||
# include <sys/ioctl.h> | |||||
# include <sys/kd.h> | |||||
# include <sys/time.h> | |||||
-# endif | |||||
#endif | |||||
enum { CURRENT_VERSION = 6 }; |
@ -1,13 +0,0 @@ | |||||
--- a/src/getsdir.h | |||||
+++ b/src/getsdir.h | |||||
@@ -24,6 +24,10 @@ | |||||
#include <dirent.h> | |||||
+#ifndef MAXNAMLEN | |||||
+#define MAXNAMLEN 255 | |||||
+#endif | |||||
+ | |||||
typedef struct dirEntry { /* structure of data item */ | |||||
char fname[MAXNAMLEN + 1]; /* filename + terminating null */ | |||||
time_t time; /* last modification date */ |
@ -1,30 +0,0 @@ | |||||
--- a/src/minicom.h | |||||
+++ b/src/minicom.h | |||||
@@ -109,13 +109,13 @@ EXTERN char *dial_tty; /* tty to use | |||||
EXTERN char *dial_name; /* System we're conneced to */ | |||||
EXTERN char *dial_number; /* Number we've dialed. */ | |||||
-EXTERN char *dial_user; /* Our username there */ | |||||
-EXTERN char *dial_pass; /* Our password */ | |||||
+extern char *dial_user; /* Our username there */ | |||||
+extern char *dial_pass; /* Our password */ | |||||
#ifdef USE_SOCKET | |||||
-EXTERN int portfd_is_socket; /* File descriptor is a unix socket */ | |||||
-EXTERN int portfd_is_connected; /* 1 if the socket is connected */ | |||||
-EXTERN struct sockaddr_un portfd_sock_addr; /* the unix socket address */ | |||||
+extern int portfd_is_socket; /* File descriptor is a unix socket */ | |||||
+extern int portfd_is_connected; /* 1 if the socket is connected */ | |||||
+extern struct sockaddr_un portfd_sock_addr; /* the unix socket address */ | |||||
#define portfd_connected ((portfd_is_socket && !portfd_is_connected) \ | |||||
? -1 : portfd) | |||||
#else | |||||
@@ -141,7 +141,7 @@ EXTERN int sbcolor; /* Status Bar Ba | |||||
EXTERN int st_attr; /* Status Bar attributes. */ | |||||
/* jl 04.09.97 conversion tables */ | |||||
-EXTERN unsigned char vt_outmap[256], vt_inmap[256]; | |||||
+extern unsigned char vt_outmap[256], vt_inmap[256]; | |||||
/* MARK updated 02/17/95 - history buffer */ | |||||
EXTERN int num_hist_lines; /* History buffer size */ |