diff options
author | joerg <joerg> | 2006-01-12 17:13:58 +0000 |
---|---|---|
committer | joerg <joerg> | 2006-01-12 17:13:58 +0000 |
commit | d8b42884f01ff224c0d73820b4cc932f73e6fb97 (patch) | |
tree | be46cc9a0c2c128f524966c4a42afb67b9de4772 /comms/modemd | |
parent | 0699fe6f9b4df784a0ef1bc230d8c2f146703940 (diff) | |
download | pkgsrc-d8b42884f01ff224c0d73820b4cc932f73e6fb97.tar.gz |
Fix errno. Add DragonFly.
Diffstat (limited to 'comms/modemd')
-rw-r--r-- | comms/modemd/distinfo | 6 | ||||
-rw-r--r-- | comms/modemd/patches/patch-an | 12 | ||||
-rw-r--r-- | comms/modemd/patches/patch-ao | 10 | ||||
-rw-r--r-- | comms/modemd/patches/patch-ap | 13 | ||||
-rw-r--r-- | comms/modemd/patches/patch-aq | 13 |
5 files changed, 53 insertions, 1 deletions
diff --git a/comms/modemd/distinfo b/comms/modemd/distinfo index 4f7ddb91d59..08e92eca32a 100644 --- a/comms/modemd/distinfo +++ b/comms/modemd/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2005/12/05 20:49:55 rillig Exp $ +$NetBSD: distinfo,v 1.6 2006/01/12 17:13:58 joerg Exp $ SHA1 (modemd-970221.tar.gz) = 104f8e596f711e349203b2da8c4f2ecf40d490c3 RMD160 (modemd-970221.tar.gz) = ade5d735e5fd07b91006cf1334a41a43dca7e3d9 @@ -16,3 +16,7 @@ SHA1 (patch-aj) = 5616eff4fa6bc17377d2a433bbbaf2ca83909b94 SHA1 (patch-ak) = 089a0217e119e2f6e1138e35f81661d92e71f780 SHA1 (patch-al) = a75de09e5df044b66b034a4ca9aa2148d0c68576 SHA1 (patch-am) = d740f41abf89f760431f32ca7ffa25bf1b3bd4e1 +SHA1 (patch-an) = 3369e7dc8db3f837bc4f71ec72e6f7882462c2a7 +SHA1 (patch-ao) = 64271c0955600d1ad9bc7f4c74273a537d33f71c +SHA1 (patch-ap) = ff74a479a9d8a9a37fd4f0648e5b247b6e9d3e9c +SHA1 (patch-aq) = 874c11edf0359fa8bc5ff2226b0b5c4e22acc919 diff --git a/comms/modemd/patches/patch-an b/comms/modemd/patches/patch-an new file mode 100644 index 00000000000..b22a7b400d0 --- /dev/null +++ b/comms/modemd/patches/patch-an @@ -0,0 +1,12 @@ +$NetBSD: patch-an,v 1.1 2006/01/12 17:13:58 joerg Exp $ + +--- include/osdep.h.orig 2006-01-12 16:54:08.000000000 +0000 ++++ include/osdep.h +@@ -48,6 +48,6 @@ + #include "cf/netbsd.h" + #endif + +-#ifdef __FreeBSD__ ++#if defined(__FreeBSD__) || defined(__DragonFly__) + #include "cf/freebsd.h" + #endif diff --git a/comms/modemd/patches/patch-ao b/comms/modemd/patches/patch-ao new file mode 100644 index 00000000000..e66c658ea65 --- /dev/null +++ b/comms/modemd/patches/patch-ao @@ -0,0 +1,10 @@ +$NetBSD: patch-ao,v 1.1 2006/01/12 17:13:58 joerg Exp $ + +--- include/tnext.h.orig 2006-01-12 16:55:40.000000000 +0000 ++++ include/tnext.h +@@ -199,5 +199,4 @@ extern struct clocks { + + /* other external variables */ + extern char **environ; +-extern int errno; + diff --git a/comms/modemd/patches/patch-ap b/comms/modemd/patches/patch-ap new file mode 100644 index 00000000000..d132cfaba09 --- /dev/null +++ b/comms/modemd/patches/patch-ap @@ -0,0 +1,13 @@ +$NetBSD: patch-ap,v 1.1 2006/01/12 17:13:58 joerg Exp $ + +--- outgoing/listen.c.orig 2006-01-12 16:57:07.000000000 +0000 ++++ outgoing/listen.c +@@ -53,7 +53,7 @@ static char copyright[] = + #include <syslog.h> + #include <unistd.h> + #include <sys/time.h> +-#include <sys/errno.h> ++#include <errno.h> + #include <netdb.h> + #include <sys/stat.h> + #include <sys/resource.h> diff --git a/comms/modemd/patches/patch-aq b/comms/modemd/patches/patch-aq new file mode 100644 index 00000000000..6265de14c32 --- /dev/null +++ b/comms/modemd/patches/patch-aq @@ -0,0 +1,13 @@ +$NetBSD: patch-aq,v 1.1 2006/01/12 17:13:58 joerg Exp $ + +--- incoming/connect.c.orig 2006-01-12 16:57:35.000000000 +0000 ++++ incoming/connect.c +@@ -53,7 +53,7 @@ static char copyright[] = + #include <syslog.h> + #include <unistd.h> + #include <sys/time.h> +-#include <sys/errno.h> ++#include <errno.h> + #include <netdb.h> + #include <sys/stat.h> + #include <sys/resource.h> |