home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sources.misc
- From: Raphael Manfredi <ram@acri.fr>
- Subject: v41i027: mailagent - Flexible mail filtering and processing package, v3.0, Patch01
- Message-ID: <1993Dec3.221653.26904@sparky.sterling.com>
- X-Md4-Signature: c3af7c7d8b30e7b243c0e61927a97b07
- Sender: kent@sparky.sterling.com (Kent Landfield)
- Organization: Advanced Computer Research Institute, Lyon, France
- Date: Fri, 3 Dec 1993 22:16:53 GMT
- Approved: kent@sparky.sterling.com
-
- Submitted-by: Raphael Manfredi <ram@acri.fr>
- Posting-number: Volume 41, Issue 27
- Archive-name: mailagent/patch01
- Environment: UNIX, Perl
- Patch-To: mailagent: Volume 41, Issue 1-26
-
- [The latest patch for mailagent version 3.0 is #1.]
-
- System: mailagent version 3.0
- Patch #: 1
- Priority: CRITICAL
- Subject: Configure did not restore computed paths correctly
- Date: Mon Nov 29 17:45:04 MET 1993
- From: Raphael Manfredi <ram@acri.fr>
-
- Description:
- Configure did not restore computed paths correctly. I generated
- the script using the development version of metaconfig, not
- the production version, i.e. I used the wrong units... Sigh!
-
- Repeat-By:
- Run Configure and ask for portability. Shortly after, the error
- message
-
- ./Configure: -d: not found
-
- should appear. Alas!
-
- Fix: From rn, say "| patch -p -N -d DIR", where DIR is your mailagent source
- directory. Outside of rn, say "cd DIR; patch -p -N <thisarticle".
- If you don't have the patch program, apply the following by hand,
- or get patch (version 2.0, latest patchlevel).
-
- After patching:
- Configure -ders
- make depend
- make
- make install
- make install.man
-
- If patch indicates that patchlevel is the wrong version, you may need
- to apply one or more previous patches, or the patch may already
- have been applied. See the patchlevel.h file to find out what has or
- has not been applied. In any event, don't continue with the patch.
-
- If you are missing previous patches (hah!) they can be obtained from me:
-
- Raphael Manfredi <ram@acri.fr>
-
- If you send a mail message of the following form it will greatly speed
- processing:
-
- Subject: Command
- @SH mailpatch PATH mailagent 3.0 LIST
- ^ note the c
-
- where PATH is a return path FROM ME TO YOU either in Internet notation,
- or in bang notation from some well-known host, and LIST is the number
- of one or more patches you need, separated by spaces, commas, and/or
- hyphens. Saying 35- says everything from 35 to the end.
-
- To get some more detailed instructions, send me the following mail:
-
- Subject: Command
- @SH mailhelp PATH
-
-
- Index: patchlevel.h
- Prereq: 0
- 4c4
- < #define PATCHLEVEL 0
- ---
- > #define PATCHLEVEL 1
-
- Index: Configure
- Prereq: 3.0
- *** Configure.old Mon Nov 29 17:44:57 1993
- --- Configure Mon Nov 29 17:45:00 1993
- ***************
- *** 18,26 ****
- # archive site. Check with Archie if you don't know where that can be.)
- #
-
- ! # $Id: Configure,v 3.0 1993/11/29 13:47:32 ram Exp ram $
- #
- ! # Generated on Fri Nov 26 17:29:12 MET 1993 [metaconfig 3.0 PL14]
-
- cat >/tmp/c1$$ <<EOF
- ARGGGHHHH!!!!!
- --- 18,26 ----
- # archive site. Check with Archie if you don't know where that can be.)
- #
-
- ! # $Id: Configure,v 3.0.1.1 1993/11/29 16:43:28 ram Exp $
- #
- ! # Generated on Mon Nov 29 17:39:26 MET 1993 [metaconfig 3.0 PL14]
-
- cat >/tmp/c1$$ <<EOF
- ARGGGHHHH!!!!!
- ***************
- *** 1078,1084 ****
- case "$ans" in
- y*) d_portable="$define"
- for file in $loclist $trylist; do
- ! eval $file=$_file
- done
- ;;
- *) d_portable="$undef" ;;
- --- 1078,1084 ----
- case "$ans" in
- y*) d_portable="$define"
- for file in $loclist $trylist; do
- ! eval $file="\$_$file"
- done
- ;;
- *) d_portable="$undef" ;;
-
- *** End of Patch 1 ***
-
- exit 0 # Just in case...
-