diff options
author | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2001-01-31 17:16:07 +0000 |
---|---|---|
committer | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2001-01-31 17:16:07 +0000 |
commit | ba75d40447b0ae425dbf278692a9429137d655dc (patch) | |
tree | 42fb93cb2c99da0ee4f0da21cf4e55036383282b /mail/elm+ME/files/patch-ac | |
parent | Update pspell version number. (diff) |
update to 2.4ME+87.
o change package name elm-2.4ME+82 -> elm+ME-2.4.87. previous naming scheme
violates our porting rule.
o add PORTEPOCH not to confuse pkg_version.
o change maintainer.
o add more and more MASTER_SITES.
PR: 24171
Submitted by: Cyrille Lefevre <clefevre@citeweb.net> (new maintainer)
Notes
Notes:
svn path=/head/; revision=37844
Diffstat (limited to 'mail/elm+ME/files/patch-ac')
-rw-r--r-- | mail/elm+ME/files/patch-ac | 65 |
1 files changed, 29 insertions, 36 deletions
diff --git a/mail/elm+ME/files/patch-ac b/mail/elm+ME/files/patch-ac index e4e265215fff..76684c18becd 100644 --- a/mail/elm+ME/files/patch-ac +++ b/mail/elm+ME/files/patch-ac @@ -1,36 +1,29 @@ -*** 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='' +--- Configure.orig Fri Dec 29 20:57:04 2000 ++++ Configure Sat Jan 6 23:19:54 2001 +@@ -16,10 +16,10 @@ + PATH=".:$PATH:/bin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/ucb:/usr/local:/usr/lbin:/etc:/usr/new:/usr/new/bin:/usr/nbin" + 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 ++# 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," && \ +@@ -1926,7 +1926,10 @@ + + : see if crypt exists + echo " " +-if $contains '^crypt$' libc.list >/dev/null 2>&1; then ++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='' |