From 3a40c895e880522d541b06527761787de3fd4cdb Mon Sep 17 00:00:00 2001 From: Joe Marcus Clarke Date: Sun, 2 Nov 2003 23:43:43 +0000 Subject: Update to 0.65. * python interpreter works only with python 2.1 and older, and is no longer maintained by the authors, so i disabled it and changed CATEGORIES and COMMENT accordingly * removed latex dependency and not installing Manual it's weird to have to install whole latex just to build documentation to mail client. built docs in html are available on mahogany website. PR: 57589 Submitted by: Pav Lucistnik Approved by: maintainer --- mail/mahogany/files/patch-aa | 91 -------------------------------------------- 1 file changed, 91 deletions(-) delete mode 100644 mail/mahogany/files/patch-aa (limited to 'mail/mahogany/files/patch-aa') diff --git a/mail/mahogany/files/patch-aa b/mail/mahogany/files/patch-aa deleted file mode 100644 index 08dae241fb95..000000000000 --- a/mail/mahogany/files/patch-aa +++ /dev/null @@ -1,91 +0,0 @@ ---- configure.in.orig Wed Nov 8 10:21:36 2000 -+++ configure.in Sun Nov 12 03:40:33 2000 -@@ -309,9 +309,19 @@ - AC_SUBST(MAKE_USE_LEAKTRACER) - - case "$USE_THREADS" in 1) -- AC_CHECK_LIB(pthread,main,,AC_CHECK_LIB(pthreads,main)) -+ AC_CHECK_LIB(pthread,main,threaded_lib=pthread, -+ AC_CHECK_LIB(pthreads,main,threaded_lib=pthreads, -+ AC_CHECK_LIB(c_r,pthread_self,threaded_lib=c_r, -+ threaded_lib=none) -+ ) -+ ) - AC_DEFINE(USE_THREADS) -- LIBS="$LIBS -lpthread" -+ case "$threaded_lib" in -+ none) ;; -+ pthread*) LIBS="$LIBS -lpthread" ;; -+ c_r) CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE" -+ LIBS="-pthread $LIBS" ;; -+ esac - esac - - dnl set debug/optimisation flags -@@ -456,15 +466,16 @@ - - dnl libresolv or libbind (or simply libc under FreeBSD) - USE_RBL=1 --AC_CHECK_LIB(resolv,res_query,, -- AC_CHECK_LIB(bind,res_query,, -- AC_CHECK_LIB(r,res_query,, -- [ -- AC_MSG_WARN(cannot use RBL spam checker.) -- USE_RBL=0 -- ] -- ) -- ) -+AC_CHECK_FUNC(res_query,, -+ [AC_CHECK_LIB(resolv,res_query,, -+ [AC_CHECK_LIB(bind,res_query,, -+ [AC_CHECK_LIB(r,res_query,, -+ [AC_MSG_WARN(cannot use RBL spam checker.) -+ USE_RBL=0 -+ ] -+ ]) -+ ]) -+ ]) - ) - - case "$USE_RBL" in 1) AC_DEFINE(USE_RBL) ;; esac ---- Makefile.orig Mon Nov 6 14:58:02 2000 -+++ Makefile Sun Nov 12 06:48:56 2000 -@@ -18,7 +18,7 @@ - M := mahogany-$(M_VERSION_MAJOR).$(M_VERSION_MINOR) - - doc: -- set -e; for i in extra doc; do $(MAKE) -C $$i doc; done -+ set -e; for i in extra; do $(MAKE) -C $$i doc; done - - classdoc: - set -e; for i in doc; do $(MAKE) -C $$i doc; done -@@ -63,12 +63,6 @@ - $(BINDIR) \ - $(DATADIR) \ - $(DOCDIR) \ -- $(DATADIR)/$(CANONICAL_HOST) \ -- $(DATADIR)/$(CANONICAL_HOST)/bin \ -- $(DATADIR)/$(CANONICAL_HOST)/lib \ -- $(DATADIR)/bin \ -- $(DATADIR)/lib \ -- $(DATADIR)/doc \ - $(DOCDIR)/Tips \ - ;do $(INSTALL) -d -m 755 $$i; \ - done ---- makeopts.in.orig Thu Oct 5 09:48:37 2000 -+++ makeopts.in Sun Nov 12 17:22:51 2000 -@@ -95,11 +95,11 @@ - # Directory in which to install library files. - DATADIR = $(DESTDIR)/share/Mahogany - # where to install docs --DOCDIR = $(DATADIR)/doc -+DOCDIR = $(DESTDIR)/share/doc/Mahogany - - # for the dynamic linker, better than using -rpath --LD_RUN_PATH=$(DATADIR)/$(CANONICAL_HOST)/lib --MODULEDIR=$(DATADIR)/$(CANONICAL_HOST)/modules -+LD_RUN_PATH=$(DESTDIR)/lib -+MODULEDIR=$(DESTDIR)/libdata/Mahogany/modules - - ifdef USE_LIBTOOL - LINK = $(LIBTOOL) --mode=link $(CXX) -Wl-r$(LD_RUN_PATH) -- cgit v1.2.3