aboutsummaryrefslogtreecommitdiffstats
path: root/mail/elm/files
diff options
context:
space:
mode:
authorwill <will@FreeBSD.org>2000-05-29 17:36:16 +0800
committerwill <will@FreeBSD.org>2000-05-29 17:36:16 +0800
commit7a55c250cc4140f7c7e42f28675d534c79edea25 (patch)
tree906db681f124016236eafd0024fa92d4370819de /mail/elm/files
parented377f4540f7be17718aaa2f82199fe52cbf4995 (diff)
downloadfreebsd-ports-graphics-7a55c250cc4140f7c7e42f28675d534c79edea25.tar.gz
freebsd-ports-graphics-7a55c250cc4140f7c7e42f28675d534c79edea25.tar.zst
freebsd-ports-graphics-7a55c250cc4140f7c7e42f28675d534c79edea25.zip
Update to Elm 2.5. New MAINTAINER.
Diffstat (limited to 'mail/elm/files')
-rw-r--r--mail/elm/files/patch-aa36
1 files changed, 36 insertions, 0 deletions
diff --git a/mail/elm/files/patch-aa b/mail/elm/files/patch-aa
new file mode 100644
index 00000000000..e4e265215ff
--- /dev/null
+++ b/mail/elm/files/patch-aa
@@ -0,0 +1,36 @@
+*** Configure.bak Mon Mar 11 18:47:43 1996
+--- Configure Tue Mar 12 14:52:18 1996
+***************
+*** 18,28 ****
+ PATH=".:/bin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/ucb:/usr/local:/usr/lbin:/etc:/usr/new:/usr/new/bin:/usr/nbin:$PATH"
+ export PATH || (echo "OOPS, this isn't sh. Desperation time. I will feed myself to sh."; sh $0; kill $$)
+
+- if test ! -t 0; then
+- echo "Say 'sh Configure', not 'sh <Configure'"
+- exit 1
+- fi
+-
+ (alias) >/dev/null 2>&1 && \
+ echo "(I see you are using the Korn shell. Some ksh's blow up on Configure," && \
+ echo "especially on exotic machines. If yours does, try the Bourne shell instead.)"
+--- 18,23 ----
+***************
+*** 2278,2284 ****
+
+ : see if crypt exists
+ echo " "
+! if $contains '^crypt$' libc.list >/dev/null 2>&1; then
+ echo 'crypt() found.'
+ d_crypt="$define"
+ cryptlib=''
+--- 2273,2282 ----
+
+ : see if crypt exists
+ echo " "
+! if $test "$cryptlib" = -lcrypt; then
+! echo 'crypt() found.'
+! d_crypt="$define"
+! elif $contains '^crypt$' libc.list >/dev/null 2>&1; then
+ echo 'crypt() found.'
+ d_crypt="$define"
+ cryptlib=''