diff options
Diffstat (limited to 'mail/arrow/files')
-rw-r--r-- | mail/arrow/files/patch-aa | 28 | ||||
-rw-r--r-- | mail/arrow/files/patch-ab | 11 | ||||
-rw-r--r-- | mail/arrow/files/patch-ac | 11 | ||||
-rw-r--r-- | mail/arrow/files/patch-ad | 46 | ||||
-rw-r--r-- | mail/arrow/files/patch-ae | 34 |
5 files changed, 130 insertions, 0 deletions
diff --git a/mail/arrow/files/patch-aa b/mail/arrow/files/patch-aa new file mode 100644 index 000000000000..18be5d2d2db3 --- /dev/null +++ b/mail/arrow/files/patch-aa @@ -0,0 +1,28 @@ +--- Makefile.orig Sat Sep 11 17:44:38 1999 ++++ Makefile Wed Jun 14 01:07:15 2000 +@@ -262,25 +262,11 @@ + freebsd2.x: prep + @ln -s sys/FreeBSD-2.x_g++ \ + include/make/jx_config +- @ln -s ../../include/missing_proto/jMissingProto_empty.h \ +- include/jcore/jMissingProto.h +- @ln -s config-freebsd.h \ +- ACE/ACE_wrappers/ace/config.h +- @ln -s platform_freebsd.GNU \ +- ACE/ACE_wrappers/include/makeinclude/platform_macros.GNU +- @${INSTALL_CMD} + + .PHONY : freebsd3.x + freebsd3.x: prep + @ln -s sys/FreeBSD-3.x_g++ \ + include/make/jx_config +- @ln -s ../../include/missing_proto/jMissingProto_empty.h \ +- include/jcore/jMissingProto.h +- @ln -s config-freebsd-pthread.h \ +- ACE/ACE_wrappers/ace/config.h +- @ln -s platform_freebsd_pthread.GNU \ +- ACE/ACE_wrappers/include/makeinclude/platform_macros.GNU +- @${INSTALL_CMD} + + # + # SunOS 4.x diff --git a/mail/arrow/files/patch-ab b/mail/arrow/files/patch-ab new file mode 100644 index 000000000000..08f994d2573c --- /dev/null +++ b/mail/arrow/files/patch-ab @@ -0,0 +1,11 @@ +--- include/make/sys/FreeBSD-2.x_g++.orig Wed Jun 14 01:44:51 2000 ++++ include/make/sys/FreeBSD-2.x_g++ Wed Jun 14 01:45:00 2000 +@@ -35,7 +35,7 @@ + # Comment this out if ACE or other code gives you warnings that + # you can't avoid. + +-J_DIE_ON_WARNING := -Werror ++#J_DIE_ON_WARNING := -Werror + + # Uncomment this if istrstream is broken. One way to check is to run + # testjcore/testJFileArray. diff --git a/mail/arrow/files/patch-ac b/mail/arrow/files/patch-ac new file mode 100644 index 000000000000..464c4221d3af --- /dev/null +++ b/mail/arrow/files/patch-ac @@ -0,0 +1,11 @@ +--- include/make/sys/FreeBSD-3.x_g++.orig Wed Jun 14 01:44:51 2000 ++++ include/make/sys/FreeBSD-3.x_g++ Wed Jun 14 01:45:00 2000 +@@ -35,7 +35,7 @@ + # Comment this out if ACE or other code gives you warnings that + # you can't avoid. + +-J_DIE_ON_WARNING := -Werror ++#J_DIE_ON_WARNING := -Werror + + # Uncomment this if istrstream is broken. One way to check is to run + # testjcore/testJFileArray. diff --git a/mail/arrow/files/patch-ad b/mail/arrow/files/patch-ad new file mode 100644 index 000000000000..e4bacc71b5d8 --- /dev/null +++ b/mail/arrow/files/patch-ad @@ -0,0 +1,46 @@ +--- programs/arrow/Make.header.orig Mon Oct 4 20:07:33 1999 ++++ programs/arrow/Make.header Wed Jun 14 14:41:40 2000 +@@ -19,7 +19,7 @@ + + # Directories to search for header files + +-SEARCHDIRS := -I- \ ++SEARCHDIRS = -I- \ + -I${CODEDIR} \ + -I${MAILTREE} \ + -I${ADDBOOKTREE} \ +@@ -29,7 +29,8 @@ + -I${JXDIR} \ + -I${MENUIMGDIR} \ + -I${JSEARCHDIR} \ +- -I${ACE_ROOT} ++ -I${ACE_ROOT} \ ++ ${J_X11_INCLUDE_DIR} + + # other constants + +@@ -47,15 +48,6 @@ + + # library dependencies + +-ifdef J_BUILD_SHARED_LIB +- LIB_DEPS := ${JLIBDIR}/libjtree-${JTREE_LIB_VERSION}.so \ +- ${JLIBDIR}/libjtoolbar-${JTOOLBAR_LIB_VERSION}.so \ +- ${JLIBDIR}/libjsearch-${JSEARCH_LIB_VERSION}.so +-else +- LIB_DEPS := ${JLIBDIR}/libjtree-${JTREE_LIB_VERSION}.a \ +- ${JLIBDIR}/libjtoolbar-${JTOOLBAR_LIB_VERSION}.a \ +- ${JLIBDIR}/libjsearch-${JSEARCH_LIB_VERSION}.a +-endif + + # make variables + +@@ -75,7 +67,7 @@ + ##### + + .PHONY : default +-default: libs arrow ++default: arrow + + .PHONY : Makefiles + Makefiles: diff --git a/mail/arrow/files/patch-ae b/mail/arrow/files/patch-ae new file mode 100644 index 000000000000..58308bdbd32f --- /dev/null +++ b/mail/arrow/files/patch-ae @@ -0,0 +1,34 @@ +--- programs/arrow/code/SMTPMessage.cc.orig Wed Jun 14 14:15:43 2000 ++++ programs/arrow/code/SMTPMessage.cc Wed Jun 14 14:37:44 2000 +@@ -42,7 +42,7 @@ + #include <ace/LSOCK_Connector.h> + #include <ace/LSOCK_Stream.h> + +-#include <sys/timeb.h> ++#include <sys/time.h> + #include <sys/utsname.h> + #include <fstream.h> + #include <strstream.h> +@@ -395,9 +395,22 @@ + itsFrom->Print(*itsOutboxStream); + *itsOutboxStream << " "; + ++/* This is obsolete on FreeBSD ++ Try the replacemente below + struct timeb tp; + ftime(&tp); + JString date(ctime(&(tp.time))); ++*/ ++ ++/* BEGIN of ftime replacement */ ++ struct timeval t; ++ struct timezone tz; ++ ++ gettimeofday(&t, &tz); ++ JString date(ctime(&(t.tv_sec))); ++ ++/* END of ftime replacement */ ++ + date.Print(*itsOutboxStream); + + jistrstream(is, date.GetCString(), date.GetLength()); |