]> git.pld-linux.org Git - packages/nmh.git/commitdiff
- outdated
authorfreetz <freetz@pld-linux.org>
Mon, 25 Jul 2005 14:31:16 +0000 (14:31 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    nmh-bug7246.patch -> 1.2
    nmh-buildroot.patch -> 1.3
    nmh-compat21.patch -> 1.2
    nmh-config.patch -> 1.2

nmh-bug7246.patch [deleted file]
nmh-buildroot.patch [deleted file]
nmh-compat21.patch [deleted file]
nmh-config.patch [deleted file]

diff --git a/nmh-bug7246.patch b/nmh-bug7246.patch
deleted file mode 100644 (file)
index abc7d32..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
---- nmh-1.0.4/uip/sortm.c.bug7246      Wed Aug 16 12:58:07 2000
-+++ nmh-1.0.4/uip/sortm.c      Wed Aug 16 12:58:55 2000
-@@ -441,6 +441,7 @@
-                       else {
-                           if (isalnum(c))
-                               *cp2++ = isupper(c) ? tolower(c) : c;
-+                          cp++;
-                           break;
-                       }
-                   }
diff --git a/nmh-buildroot.patch b/nmh-buildroot.patch
deleted file mode 100644 (file)
index 2892b51..0000000
+++ /dev/null
@@ -1,133 +0,0 @@
---- nmh-1.0.3/uip/Makefile.in.buildroot        Thu Jan  6 16:30:07 2000
-+++ nmh-1.0.3/uip/Makefile.in  Mon Feb 28 14:42:29 2000
-@@ -248,35 +248,35 @@
- # install commands
- install-cmds:
--      $(top_srcdir)/mkinstalldirs $(bindir)
-+      $(top_srcdir)/mkinstalldirs $(DESTDIR)/$(bindir)
-       for cmd in $(CMDS); do \
--        $(INSTALL_PROGRAM) $$cmd $(bindir)/$$cmd; \
-+        $(INSTALL_PROGRAM) $$cmd $(DESTDIR)/$(bindir)/$$cmd; \
-       done
- # install links
- install-lcmds:
--      rm -f $(bindir)/flists
--      rm -f $(bindir)/folders
--      rm -f $(bindir)/prev
--      rm -f $(bindir)/next
--      $(LN) $(bindir)/flist  $(bindir)/flists
--      $(LN) $(bindir)/folder $(bindir)/folders
--      $(LN) $(bindir)/show   $(bindir)/prev
--      $(LN) $(bindir)/show   $(bindir)/next
-+      rm -f $(DESTDIR)/$(bindir)/flists
-+      rm -f $(DESTDIR)/$(bindir)/folders
-+      rm -f $(DESTDIR)/$(bindir)/prev
-+      rm -f $(DESTDIR)/$(bindir)/next
-+      $(LN) $(DESTDIR)/$(bindir)/flist  $(DESTDIR)/$(bindir)/flists
-+      $(LN) $(DESTDIR)/$(bindir)/folder $(DESTDIR)/$(bindir)/folders
-+      $(LN) $(DESTDIR)/$(bindir)/show   $(DESTDIR)/$(bindir)/prev
-+      $(LN) $(DESTDIR)/$(bindir)/show   $(DESTDIR)/$(bindir)/next
- # install misc support binaries
- install-misc:
--      $(top_srcdir)/mkinstalldirs $(libdir)
-+      $(top_srcdir)/mkinstalldirs $(DESTDIR)/$(libdir)/nmh
-       for misc in $(MISC); do \
--        $(INSTALL_PROGRAM) $$misc $(libdir)/$$misc; \
-+        $(INSTALL_PROGRAM) $$misc $(DESTDIR)/$(libdir)/nmh/$$misc; \
-       done
- # install commands with special installation needs (thus no $(SCMDS) use here)
- install-scmds:
-       if test x$(SETGID_MAIL) != x; then \
--        $(INSTALL_PROGRAM) -g $(MAIL_SPOOL_GRP) -m 2755 inc $(bindir)/$$cmd; \
-+        $(INSTALL_PROGRAM) -g $(MAIL_SPOOL_GRP) -m 2755 inc $(DESTDIR)/$(bindir)/$$cmd; \
-       else \
--        $(INSTALL_PROGRAM)                 inc $(bindir)/$$cmd; \
-+        $(INSTALL_PROGRAM)                 inc $(DESTDIR)/$(bindir)/$$cmd; \
-       fi
- uninstall:
---- nmh-1.0.3/etc/Makefile.in.buildroot        Thu Jan  6 16:30:07 2000
-+++ nmh-1.0.3/etc/Makefile.in  Mon Feb 28 14:34:44 2000
-@@ -72,24 +72,24 @@
- install: install-files install-scripts
- install-files:
--      $(top_srcdir)/mkinstalldirs $(etcdir)
-+      $(top_srcdir)/mkinstalldirs $(DESTDIR)/$(etcdir)
-       for file in $(DIST_FILES); do \
--        if [ -f $(etcdir)/$$file ]; then \
--          mv $(etcdir)/$$file $(etcdir)/$$file.old; \
-+        if [ -f $(DESTDIR)/$(etcdir)/$$file ]; then \
-+          mv $(DESTDIR)/$(etcdir)/$$file $(DESTDIR)/$(etcdir)/$$file.old; \
-         fi; \
--        $(INSTALL_DATA) $(srcdir)/$$file $(etcdir)/$$file; \
-+        $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)/$(etcdir)/$$file; \
-       done
-       for file in $(GEN_FILES); do \
--        if [ -f $(etcdir)/$$file ]; then \
--          mv $(etcdir)/$$file $(etcdir)/$$file.old; \
-+        if [ -f $(DESTDIR)/$(etcdir)/$$file ]; then \
-+          mv $(DESTDIR)/$(etcdir)/$$file $(DESTDIR)/$(etcdir)/$$file.old; \
-         fi; \
--        $(INSTALL_DATA) $$file $(etcdir)/$$file; \
-+        $(INSTALL_DATA) $$file $(DESTDIR)/$(etcdir)/$$file; \
-       done
- install-scripts:
--      $(top_srcdir)/mkinstalldirs $(bindir)
-+      $(top_srcdir)/mkinstalldirs $(DESTDIR)/$(bindir)
-       for script in $(SCRIPTS); do \
--        $(INSTALL_PROGRAM) $(srcdir)/$$script $(bindir)/$$script; \
-+        $(INSTALL_PROGRAM) $(srcdir)/$$script $(DESTDIR)/$(bindir)/$$script; \
-       done
- uninstall: uninstall-files uninstall-scripts
---- nmh-1.0.3/man/Makefile.in.buildroot        Fri Jan 28 04:43:37 2000
-+++ nmh-1.0.3/man/Makefile.in  Mon Feb 28 14:34:44 2000
-@@ -129,32 +129,32 @@
- # install the include file for man pages
- install-hdr:
--      $(top_srcdir)/mkinstalldirs $(etcdir)
--      $(INSTALL_DATA) tmac.h $(etcdir)/tmac.h
-+      $(top_srcdir)/mkinstalldirs $(DESTDIR)/$(etcdir)
-+      $(INSTALL_DATA) tmac.h $(DESTDIR)/$(etcdir)/tmac.h
- # install the man pages in man1
- install-man1:
--      $(top_srcdir)/mkinstalldirs $(mandir)/man$(manext1)
-+      $(top_srcdir)/mkinstalldirs $(DESTDIR)/$(mandir)/man$(manext1)
-       for file in $(MAN1); do \
--        $(INSTALL_DATA) $$file $(mandir)/man$(manext1) ; \
-+        $(INSTALL_DATA) $$file $(DESTDIR)/$(mandir)/man$(manext1) ; \
-       done
- # install the man pages in man5
- install-man5:
--      $(top_srcdir)/mkinstalldirs $(mandir)/man$(manext5)
-+      $(top_srcdir)/mkinstalldirs $(DESTDIR)/$(mandir)/man$(manext5)
-       for file in $(MAN5); do \
--        $(INSTALL_DATA) $$file $(mandir)/man$(manext5) ; \
-+        $(INSTALL_DATA) $$file $(DESTDIR)/$(mandir)/man$(manext5) ; \
-       done
--      if [ ! -f $(mandir)/man$(manext5)/mh_profile.$(manext5) ] ; then \
--        ( cd $(mandir)/man$(manext5) ; ln mh-profile.$(manext5) \
-+      if [ ! -f $(DESTDIR)/$(mandir)/man$(manext5)/mh_profile.$(manext5) ] ; then \
-+        ( cd $(DESTDIR)/$(mandir)/man$(manext5) ; ln mh-profile.$(manext5) \
-             mh_profile.$(manext5) ) \
-       fi
- # install the man pages in man8
- install-man8:
--      $(top_srcdir)/mkinstalldirs $(mandir)/man$(manext8)
-+      $(top_srcdir)/mkinstalldirs $(DESTDIR)/$(mandir)/man$(manext8)
-       for file in $(MAN8); do \
--        $(INSTALL_DATA) $$file $(mandir)/man$(manext8) ; \
-+        $(INSTALL_DATA) $$file $(DESTDIR)/$(mandir)/man$(manext8) ; \
-       done
- # ========= UNINSTALL TARGETS =========
diff --git a/nmh-compat21.patch b/nmh-compat21.patch
deleted file mode 100644 (file)
index 3b61dd2..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
---- nmh-1.0.3/mts/smtp/smtp.c.compat21 Sun Sep 26 13:45:56 1999
-+++ nmh-1.0.3/mts/smtp/smtp.c  Mon Feb 28 14:29:34 2000
-@@ -1026,13 +1026,19 @@
- static int
- sm_werror (void)
- {
-+
-+#ifdef MPOP
-     sm_reply.length =
-       strlen (strcpy (sm_reply.text, sm_wfp == NULL ? "no socket opened"
-           : sm_alarmed ? "write to socket timed out"
--#ifdef MPOP
-           : sm_ispool ? "error writing to spool file"
--#endif
-           : "error writing to socket"));
-+#else
-+    sm_reply.length =
-+      strlen (strcpy (sm_reply.text, sm_wfp == NULL ? "no socket opened"
-+          : sm_alarmed ? "write to socket timed out"
-+          : "error writing to socket"));
-+#endif
-     return (sm_reply.code = NOTOK);
- }
diff --git a/nmh-config.patch b/nmh-config.patch
deleted file mode 100644 (file)
index f5cf6ff..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
---- nmh-1.0.3/config.h.in.config       Mon Feb 28 14:17:24 2000
-+++ nmh-1.0.3/config.h.in      Mon Feb 28 14:18:56 2000
-@@ -23,8 +23,8 @@
-  * other programs which may modify your maildrops.
-  * Currently you can only use one type.
-  */
--#define DOT_LOCKING   1
--/* #define FCNTL_LOCKING 1 */
-+/* #define DOT_LOCKING   1 */
-+#define FCNTL_LOCKING 1
- /* #define LOCKF_LOCKING 1 */
- /* #define FLOCK_LOCKING 1 */
-@@ -93,7 +93,7 @@
-  * to be able to use both POP3 _and_ Kerberized POP and plan to use inc and
-  * msgchk's -kpop switch every time in the latter case.
-  */
--#define POPSERVICE "pop3"
-+#define POPSERVICE "pop-3"
- /*
-  * Define the default creation modes for folders and messages.
-@@ -139,7 +139,7 @@
- #undef SCO_5_STDIO
- /* This tells nmh to use the Linux _IO_*_ptr defines from libio.h */ 
--#undef LINUX_STDIO
-+#define LINUX_STDIO 1
- /***** END USER CONFIGURATION SECTION *****/
This page took 0.182563 seconds and 4 git commands to generate.