diff options
Diffstat (limited to 'debian/patches/8.12/8.12.3/socks.patch')
-rw-r--r-- | debian/patches/8.12/8.12.3/socks.patch | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/debian/patches/8.12/8.12.3/socks.patch b/debian/patches/8.12/8.12.3/socks.patch new file mode 100644 index 0000000..61b3046 --- /dev/null +++ b/debian/patches/8.12/8.12.3/socks.patch @@ -0,0 +1,50 @@ +# This is a patch for conf.c to update it to conf.c.new +# +# To apply this patch: +# STEP 1: Chdir to the source directory. +# STEP 2: Run the 'applypatch' program with this patch file as input. +# +# If you do not have 'applypatch', it is part of the 'makepatch' package +# that you can fetch from the Comprehensive Perl Archive Network: +# http://www.perl.com/CPAN/authors/Johan_Vromans/makepatch-x.y.tar.gz +# In the above URL, 'x' should be 2 or higher. +# +# To apply this patch without the use of 'applypatch': +# STEP 1: Chdir to the source directory. +# STEP 2: Run the 'patch' program with this file as input. +# +#### End of Preamble #### + +#### Patch data follows #### +diff -c 'conf.c' 'conf.c.new' +Index: ./conf.c +Prereq: 8.961 +*** ./sendmail-8.12.3/sendmail/conf.c Thu May 17 14:19:41 2001 +--- ./sendmail/conf.c.new Wed May 23 13:01:15 2001 +*************** +*** 3760,3765 **** +--- 3760,3770 ---- + vendor_post_defaults(e) + ENVELOPE *e; + { ++ char *p; ++ if ((p = getenv("LD_PRELOAD"))) ++ setuserenv("LD_PRELOAD", p); ++ if ((p = getenv("LD_LIBRARY_PATH"))) ++ setuserenv("LD_LIBRARY_PATH", p); + #ifdef __QNX__ + char *p; + +#### End of Patch data #### + +#### ApplyPatch data follows #### +# Data version : 1.0 +# Date generated : Wed May 23 13:02:56 2001 +# Generated by : makepatch 2.00_03 +# Recurse directories : Yes +# p 'conf.c' 130464 +#### End of ApplyPatch data #### + +#### End of Patch kit [created: Wed May 23 13:02:56 2001] #### +#### Patch checksum: 30 772 52154 #### +#### Checksum: 48 1448 42818 #### |