summaryrefslogtreecommitdiff
path: root/mail/elm/patches
diff options
context:
space:
mode:
authorbouyer <bouyer@pkgsrc.org>1998-01-23 12:19:45 +0000
committerbouyer <bouyer@pkgsrc.org>1998-01-23 12:19:45 +0000
commitc82adae82eb7cc72f694504b0802d2e9ee85b971 (patch)
tree02450b42a16a9d47cae4540e89894aa8633bc2a0 /mail/elm/patches
parent71c9ef3d2b9b58436fb919ef2637a4b8961896c8 (diff)
downloadpkgsrc-c82adae82eb7cc72f694504b0802d2e9ee85b971.tar.gz
Import from FreeBSD ports
Diffstat (limited to 'mail/elm/patches')
-rw-r--r--mail/elm/patches/patch-ab49
-rw-r--r--mail/elm/patches/patch-ac36
2 files changed, 85 insertions, 0 deletions
diff --git a/mail/elm/patches/patch-ab b/mail/elm/patches/patch-ab
new file mode 100644
index 00000000000..42fd950579d
--- /dev/null
+++ b/mail/elm/patches/patch-ab
@@ -0,0 +1,49 @@
+*** nls/Makefile.old Thu Mar 10 20:21:47 1994
+--- nls/Makefile Fri Jul 28 06:55:04 1995
+***************
+*** 1,6 ****
+ LANGFILE=LANGS
+ CATNAME=elm2.4.cat
+! GENCAT= nls/gencat
+
+ HDIR= ../hdrs
+ SDIR= C/C/C
+--- 1,6 ----
+ LANGFILE=LANGS
+ CATNAME=elm2.4.cat
+! GENCAT= gencat
+
+ HDIR= ../hdrs
+ SDIR= C/C/C
+***************
+*** 39,45 ****
+ ./Install $(LANGFILE) $(GENCAT) $(CATNAME)
+
+ $(HFILES): $(MFILES)
+! gencat/gencat $(MSGCAT) "$(SDIR)/`basename $@ .h`".m -h $@
+
+ clean: FRC
+ /bin/rm -f $(MSGCAT)
+--- 39,45 ----
+ ./Install $(LANGFILE) $(GENCAT) $(CATNAME)
+
+ $(HFILES): $(MFILES)
+! $(GENCAT) $(MSGCAT) "$(SDIR)/`basename $@ .h`".m -h $@
+
+ clean: FRC
+ /bin/rm -f $(MSGCAT)
+*** nls/LANGS.old Sun Jun 28 04:32:25 1992
+--- nls/LANGS Fri Jul 28 06:48:31 1995
+***************
+*** 1,5 ****
+ # LANGS file
+
+! C/C/C /usr/local/nls/msg/C
+! english/us/ascii /usr/local/nls/msg/english
+! french/canada/8859 /usr/local/nls/msg/french
+--- 1,5 ----
+ # LANGS file
+
+! C/C/C /usr/local/share/nls/C
+! english/us/ascii /usr/local/share/nls/en_US.ISO_8859-1
+! french/canada/8859 /usr/local/share/nls/fr_FR.ISO_8859-1
diff --git a/mail/elm/patches/patch-ac b/mail/elm/patches/patch-ac
new file mode 100644
index 00000000000..e4e265215ff
--- /dev/null
+++ b/mail/elm/patches/patch-ac
@@ -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=''