home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / compsrcs / misc / volume41 / mailagnt / patch01 < prev    next >
Encoding:
Text File  |  1993-12-03  |  3.6 KB  |  131 lines

  1. Newsgroups: comp.sources.misc
  2. From: Raphael Manfredi <ram@acri.fr>
  3. Subject: v41i027:  mailagent - Flexible mail filtering and processing package, v3.0, Patch01
  4. Message-ID: <1993Dec3.221653.26904@sparky.sterling.com>
  5. X-Md4-Signature: c3af7c7d8b30e7b243c0e61927a97b07
  6. Sender: kent@sparky.sterling.com (Kent Landfield)
  7. Organization: Advanced Computer Research Institute, Lyon, France
  8. Date: Fri, 3 Dec 1993 22:16:53 GMT
  9. Approved: kent@sparky.sterling.com
  10.  
  11. Submitted-by: Raphael Manfredi <ram@acri.fr>
  12. Posting-number: Volume 41, Issue 27
  13. Archive-name: mailagent/patch01
  14. Environment: UNIX, Perl
  15. Patch-To: mailagent: Volume 41, Issue 1-26
  16.  
  17. [The latest patch for mailagent version 3.0 is #1.]
  18.  
  19. System: mailagent version 3.0
  20. Patch #: 1
  21. Priority: CRITICAL
  22. Subject: Configure did not restore computed paths correctly
  23. Date: Mon Nov 29 17:45:04 MET 1993
  24. From: Raphael Manfredi <ram@acri.fr>
  25.  
  26. Description:
  27.     Configure did not restore computed paths correctly. I generated
  28.     the script using the development version of metaconfig, not
  29.     the production version, i.e. I used the wrong units... Sigh!
  30.  
  31. Repeat-By:
  32.     Run Configure and ask for portability. Shortly after, the error
  33.     message
  34.  
  35.         ./Configure: -d: not found
  36.     
  37.     should appear. Alas!
  38.  
  39. Fix:    From rn, say "| patch -p -N -d DIR", where DIR is your mailagent source
  40.     directory.  Outside of rn, say "cd DIR; patch -p -N <thisarticle".
  41.     If you don't have the patch program, apply the following by hand,
  42.     or get patch (version 2.0, latest patchlevel).
  43.  
  44.     After patching:
  45.         Configure -ders
  46.         make depend
  47.         make
  48.         make install
  49.         make install.man
  50.  
  51.     If patch indicates that patchlevel is the wrong version, you may need
  52.     to apply one or more previous patches, or the patch may already
  53.     have been applied.  See the patchlevel.h file to find out what has or
  54.     has not been applied.  In any event, don't continue with the patch.
  55.  
  56.     If you are missing previous patches (hah!) they can be obtained from me:
  57.  
  58.         Raphael Manfredi <ram@acri.fr>
  59.  
  60.     If you send a mail message of the following form it will greatly speed
  61.     processing:
  62.  
  63.         Subject: Command
  64.         @SH mailpatch PATH mailagent 3.0 LIST
  65.                ^ note the c
  66.  
  67.     where PATH is a return path FROM ME TO YOU either in Internet notation,
  68.     or in bang notation from some well-known host, and LIST is the number
  69.     of one or more patches you need, separated by spaces, commas, and/or
  70.     hyphens.  Saying 35- says everything from 35 to the end.
  71.  
  72.     To get some more detailed instructions, send me the following mail:
  73.  
  74.         Subject: Command
  75.         @SH mailhelp PATH
  76.  
  77.  
  78. Index: patchlevel.h
  79. Prereq: 0
  80. 4c4
  81. < #define PATCHLEVEL 0
  82. ---
  83. > #define PATCHLEVEL 1
  84.  
  85. Index: Configure
  86. Prereq: 3.0
  87. *** Configure.old    Mon Nov 29 17:44:57 1993
  88. --- Configure    Mon Nov 29 17:45:00 1993
  89. ***************
  90. *** 18,26 ****
  91.   # archive site. Check with Archie if you don't know where that can be.)
  92.   #
  93.   
  94. ! # $Id: Configure,v 3.0 1993/11/29 13:47:32 ram Exp ram $
  95.   #
  96. ! # Generated on Fri Nov 26 17:29:12 MET 1993 [metaconfig 3.0 PL14]
  97.   
  98.   cat >/tmp/c1$$ <<EOF
  99.   ARGGGHHHH!!!!!
  100. --- 18,26 ----
  101.   # archive site. Check with Archie if you don't know where that can be.)
  102.   #
  103.   
  104. ! # $Id: Configure,v 3.0.1.1 1993/11/29 16:43:28 ram Exp $
  105.   #
  106. ! # Generated on Mon Nov 29 17:39:26 MET 1993 [metaconfig 3.0 PL14]
  107.   
  108.   cat >/tmp/c1$$ <<EOF
  109.   ARGGGHHHH!!!!!
  110. ***************
  111. *** 1078,1084 ****
  112.   case "$ans" in
  113.       y*) d_portable="$define"
  114.       for file in $loclist $trylist; do
  115. !         eval $file=$_file
  116.       done
  117.       ;;
  118.       *)  d_portable="$undef" ;;
  119. --- 1078,1084 ----
  120.   case "$ans" in
  121.       y*) d_portable="$define"
  122.       for file in $loclist $trylist; do
  123. !         eval $file="\$_$file"
  124.       done
  125.       ;;
  126.       *)  d_portable="$undef" ;;
  127.  
  128. *** End of Patch 1 ***
  129.  
  130. exit 0 # Just in case...
  131.