This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Help! I'm having some trouble with SSL

Old posts that have not been replied to for several years.
Locked
D
Devil
Voice
Posts: 6
Joined: Tue Oct 05, 2004 10:55 am

Help! I'm having some trouble with SSL

Post by Devil »

I downloaded the file eggdrop1.6.17-ssl.diff.gz to the folder where I extracted the eggdrop1.6.17.tar.gz.
Here's what went wrong...

Code: Select all

-bash-2.05b$ ls
CONTENTS                        configure.ac
COPYING                         disabled_modules
ChangeLog                       doc
FEATURES                        eggdrop.conf
INSTALL                         eggdrop1.6.17-ssl.diff.gz
Makefile                        help
Makefile.in                     language
NEWS                            logs
README                          misc
aclocal.m4                      scripts
config.h.in                     src
configure                       text
-bash-2.05b$ patch -p1 < eggdrop1.6.17-ssl.diff.gz
Hmm...  I can't seem to find a patch in there anywhere.
-bash-2.05b$ patch -p1 < eggdrop1.6.17+ssl.diff.gz
-bash: eggdrop1.6.17+ssl.diff.gz: No such file or directory
-bash-2.05b$ patch -p1 < eggdrop1.6.17-ssl.diff.gz
Hmm...  I can't seem to find a patch in there anywhere.
It doesnt find the file. How can that be?
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

try:

Code: Select all

zcat eggdrop1.6.17-ssl.diff.gz | patch -p1
or

Code: Select all

gzip -dc eggdrop1.6.17-ssl.diff.gz | patch -p1
Locked