diff options
author | dec <dec@FreeBSD.org> | 2000-05-15 08:44:58 +0800 |
---|---|---|
committer | dec <dec@FreeBSD.org> | 2000-05-15 08:44:58 +0800 |
commit | d2e6911afccd184d05044f05c5b424b915bde17a (patch) | |
tree | ecd9849eee028ffc8aa406f6606b608e66225cc7 /net/gated | |
parent | 61ef599a19efa1ba9937de390be932f1bfb5c272 (diff) | |
download | freebsd-ports-gnome-d2e6911afccd184d05044f05c5b424b915bde17a.tar.gz freebsd-ports-gnome-d2e6911afccd184d05044f05c5b424b915bde17a.tar.zst freebsd-ports-gnome-d2e6911afccd184d05044f05c5b424b915bde17a.zip |
Submitted by: dec
Oops, forgot the new patches.
Diffstat (limited to 'net/gated')
-rw-r--r-- | net/gated/files/patch-ah | 19 | ||||
-rw-r--r-- | net/gated/files/patch-ai | 19 | ||||
-rw-r--r-- | net/gated/files/patch-aj | 19 |
3 files changed, 57 insertions, 0 deletions
diff --git a/net/gated/files/patch-ah b/net/gated/files/patch-ah new file mode 100644 index 000000000000..c75dd52a6735 --- /dev/null +++ b/net/gated/files/patch-ah @@ -0,0 +1,19 @@ +*** configure.orig Sun May 14 17:28:39 2000 +--- configure Sun May 14 17:33:16 2000 +*************** +*** 2657,2663 **** + MKDEP_FILE="$srcdir/util/make-depend" + echo $ac_n "checking how to calculate deps""... $ac_c" 1>&6 + echo "configure:2660: checking how to calculate deps" >&5 +! if test $ac_cv_prog_CC = gcc; then + MKDEP="\$(top_srcdir)/util/mkdep" + elif $CC -V 2>&1 | grep WorkShop > /dev/null; then + MKDEP="\$(top_srcdir)/util/mkdep -flag -xM" +--- 2657,2663 ---- + MKDEP_FILE="$srcdir/util/make-depend" + echo $ac_n "checking how to calculate deps""... $ac_c" 1>&6 + echo "configure:2660: checking how to calculate deps" >&5 +! if test $ac_cv_prog_gcc = yes; then + MKDEP="\$(top_srcdir)/util/mkdep" + elif $CC -V 2>&1 | grep WorkShop > /dev/null; then + MKDEP="\$(top_srcdir)/util/mkdep -flag -xM" diff --git a/net/gated/files/patch-ai b/net/gated/files/patch-ai new file mode 100644 index 000000000000..3dcdb16a91f1 --- /dev/null +++ b/net/gated/files/patch-ai @@ -0,0 +1,19 @@ +*** src/gated/paths.h.in.orig Sun May 14 14:58:50 2000 +--- src/gated/paths.h.in Sun May 14 15:03:06 2000 +*************** +*** 35,41 **** + * __END_OF_COPYRIGHT__ + */ + +! #define _PATH_CONFIG "/etc/%s.conf" + #define _PATH_DEFS "/usr/include/isode" + #define _PATH_DUMP "@DUMPDIR@/%s_dump" + #define _PATH_DUMPDIR "@DUMPDIR@" +--- 35,41 ---- + * __END_OF_COPYRIGHT__ + */ + +! #define _PATH_CONFIG "@prefix@/etc/%s.conf" + #define _PATH_DEFS "/usr/include/isode" + #define _PATH_DUMP "@DUMPDIR@/%s_dump" + #define _PATH_DUMPDIR "@DUMPDIR@" diff --git a/net/gated/files/patch-aj b/net/gated/files/patch-aj new file mode 100644 index 000000000000..f5732f62bc44 --- /dev/null +++ b/net/gated/files/patch-aj @@ -0,0 +1,19 @@ +*** src/gated/task.h.orig Sun May 14 14:58:18 2000 +--- src/gated/task.h Sun May 14 14:59:44 2000 +*************** +*** 321,327 **** + extern size_t task_recv_buffer_len; + + +! #if defined(SUNOS5_0) || !defined(HAVE_CMSG_SPACE) + #ifndef CMSG_ALIGN + #define CMSG_ALIGN(n) (((n) + 3) & ~3) + #define CMSG_SPACE(l) (CMSG_ALIGN(sizeof(struct cmsghdr)) + CMSG_ALIGN(l)) +--- 321,327 ---- + extern size_t task_recv_buffer_len; + + +! #if (defined(SUNOS5_0) || !defined(HAVE_CMSG_SPACE)) && !defined(__FreeBSD__) + #ifndef CMSG_ALIGN + #define CMSG_ALIGN(n) (((n) + 3) & ~3) + #define CMSG_SPACE(l) (CMSG_ALIGN(sizeof(struct cmsghdr)) + CMSG_ALIGN(l)) |