Submitted by: dec

Oops, forgot the new patches.
This commit is contained in:
David E. Cross 2000-05-15 00:44:58 +00:00
parent b1c285afc5
commit 6ce9858a52
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=28468
3 changed files with 57 additions and 0 deletions

19
net/gated/files/patch-ah Normal file
View file

@ -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"

19
net/gated/files/patch-ai Normal file
View file

@ -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@"

19
net/gated/files/patch-aj Normal file
View file

@ -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))