-
Notifications
You must be signed in to change notification settings - Fork 561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re: mod_perl + openssl (fwd) #299
Comments
From [email protected]regards ---------- Forwarded message ---------- ~ Well, I am running the server on my friend's home machine has the following definition: /* CAN_PROTOTYPE: you could either fix perl to define function prototypes using ~ Thanks, I got the same error trying to put this up on a Solaris box. as you see I am running perl 5.004_01 which isn't recommended, but so far it hope it helps Fyodor Inline Patch--- openssl-0.9.3/crypto/des/des.h.orig Fri Jul 30 21:56:51 1999
+++ openssl-0.9.3/crypto/des/des.h Sat Jul 31 15:39:51 1999
@@ -92,8 +92,15 @@
* 8 byte longs */
DES_LONG pad[2];
} ks;
-#if defined _
+#ifndef MOD_PERL
+# if defined _
# error "_ is defined, but some strange definition the DES library cannot handle that."
+# endif
+#define _ ks._
+#else
+# ifdef _
+# undef _
+# endif
#endif
#define _ ks._
int weak_key; |
From [Unknown Contact. See original ticket]On Sun, Aug 01, 1999 at 06:48:15PM +0400, "CyberPsychotic" wrote:
It's funny that I just hit this too... but I don't fault it to perl... I Why can't openssl just be fixed? In my experience, both _, and __P are used for ansi prototypes. Heck, I've mark (who when after compiling openssl, just removed the "define _" section -- One ring to rule them all, one ring to find them, one ring to bring them all http://mark.mielke.cc/ |
From [Unknown Contact. See original ticket][openssl people: sorry for crosspost, I just hope you could have something ~ :-) actually I haven't figured out if openssl needed that at all. At least I ~ Why can't openssl just be fixed? no ideas. I mailed to openssl list while ago, but the only responces I've ~ In my experience, both _, and __P are used for ansi prototypes. Heck, I've Well, recenly I've been into BSD alot, and __P is the only symbol used for ~ Well, as you probably have noticed from my patch, I did approximately the regards ``the government isn't solution to our problems. The government is the problem.'' |
From [Unknown Contact. See original ticket]On Tue, Aug 03, 1999 at 03:50:01PM +0400, CyberPsychotic wrote:
This definition does no longer exist in OpenSSL. Please get a recent
That definition existed for compatibility with the DES implementation There are other programs too that use some _ macro -- as I wrote < For some reason, everyone thinks that noone else would be so stupid as |
Migrated from rt.perl.org#1122 (status was 'resolved')
Searchable as RT1122$
The text was updated successfully, but these errors were encountered: