diff options
author | steve <steve@FreeBSD.org> | 2000-02-21 04:50:55 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-02-21 04:50:55 +0800 |
commit | 87675caf8d05b65b515d1a9b1ee07234c95c6d35 (patch) | |
tree | 28c3b1f626ae78d3a94138b66dcbbedf4779ddda /comms | |
parent | fba0c9c4a091ffbef8a1696338d23a30980b2fee (diff) | |
download | freebsd-ports-gnome-87675caf8d05b65b515d1a9b1ee07234c95c6d35.tar.gz freebsd-ports-gnome-87675caf8d05b65b515d1a9b1ee07234c95c6d35.tar.zst freebsd-ports-gnome-87675caf8d05b65b515d1a9b1ee07234c95c6d35.zip |
The one and only argument to time(3) is a time_t*. This fixes builds on
the Alpha.
Diffstat (limited to 'comms')
-rw-r--r-- | comms/mgetty+sendfax/files/patch-ag | 11 | ||||
-rw-r--r-- | comms/mgetty+sendfax/files/patch-ah | 11 | ||||
-rw-r--r-- | comms/mgetty+sendfax/files/patch-ai | 11 |
3 files changed, 33 insertions, 0 deletions
diff --git a/comms/mgetty+sendfax/files/patch-ag b/comms/mgetty+sendfax/files/patch-ag new file mode 100644 index 000000000000..1fd854ba5228 --- /dev/null +++ b/comms/mgetty+sendfax/files/patch-ag @@ -0,0 +1,11 @@ +--- sendfax.c.orig Fri Feb 18 10:06:53 2000 ++++ sendfax.c Fri Feb 18 10:07:37 2000 +@@ -41,7 +41,7 @@ + + /* seems to missing nearly everywhere */ + #ifndef __NetBSD__ +-time_t time _PROTO(( long * tloc )); ++time_t time _PROTO(( time_t * tloc )); + #endif + + void exit_usage _P2( (program, msg ), diff --git a/comms/mgetty+sendfax/files/patch-ah b/comms/mgetty+sendfax/files/patch-ah new file mode 100644 index 000000000000..1d9ba91108b8 --- /dev/null +++ b/comms/mgetty+sendfax/files/patch-ah @@ -0,0 +1,11 @@ +--- callback/callback.c.orig Fri Feb 18 10:08:43 2000 ++++ callback/callback.c Fri Feb 18 10:08:54 2000 +@@ -69,7 +69,7 @@ + * system header files) + */ + #ifndef __NetBSD__ +-time_t time _PROTO(( long * tloc )); ++time_t time _PROTO(( time_t * tloc )); + #endif + + /* conf_cb.c */ diff --git a/comms/mgetty+sendfax/files/patch-ai b/comms/mgetty+sendfax/files/patch-ai new file mode 100644 index 000000000000..983c37a74b11 --- /dev/null +++ b/comms/mgetty+sendfax/files/patch-ai @@ -0,0 +1,11 @@ +--- voice/libvoice/voice_fax.c.orig Fri Feb 18 10:10:12 2000 ++++ voice/libvoice/voice_fax.c Fri Feb 18 10:10:28 2000 +@@ -30,7 +30,7 @@ + + /* seems to missing nearly everywhere */ + #ifndef __NetBSD__ +-time_t time _PROTO(( long * tloc )); ++time_t time _PROTO(( time_t * tloc )); + #endif + + /* from faxrecp.c */ |