- 27 10月, 2000 3 次提交
-
-
由 Richard Levitte 提交于
extension .sl instead of .so.
-
由 Richard Levitte 提交于
translate library names by only adding ".so" to them without prepending them with "lib". Add the flag DSO_FLAG_NAME_TRANSLATION_EXT_ONLY for that purpose.
-
由 Geoff Thorpe 提交于
appropriate filename translation on the host system. Apart from this point, users should also note that there's a slight change in the API functions too. The DSO now contains its own to-be-converted filename ("dso->filename"), and at the time the DSO loads the "dso->loaded_filename" value is set to the translated form. As such, this also provides an impicit way of determining if the DSO is currently loaded or not. Except, perhaps, VMS .... :-) The various DSO_METHODs have been updated for this mechanism except VMS which is deliberately broken for now, Richard is going to look at how to fit it in (the source comments in there explain "the issue"). Basically, the new callback scheme allows the filename conversion to (a) be turned off altogether through the use of the DSO_FLAG_NO_NAME_TRANSLATION flag, (b) be handled in the default way using the default DSO_METHOD's converter (c) overriden per-DSO by setting the override callback (d) a mix of (b) and (c) - eg. implement an override callback that; (i) checks if we're win32 "if(strstr(dso->meth->name, "win32"))..." and if so, convert "blah" into "blah32.dll" (the default is otherwise to make it "blah.dll"). (ii) default to the normal behaviour - eg. we're not on win32, so finish with (return dso->meth->dso_name_converter(dso,NULL)). (e) be retried a number of times by writing a new DSO_METHOD where the "dso_load()" handler will call the converter repeatedly. Then the custom converter could use state information in the DSO to suggest different conversions or paths each time it is invoked.
-
- 26 10月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 24 10月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
-
- 23 10月, 2000 6 次提交
-
-
由 Bodo Möller 提交于
Whether Steve is still working on 'proper' verification is up to him to decide ...
-
由 Ulf Möller 提交于
-
由 Bodo Möller 提交于
-
由 Bodo Möller 提交于
(although maybe this static variable should be abolished totally, it was introduced before RAND_status existed).
-
由 Richard Levitte 提交于
ld warns that -Fl "may not be supported in future releases". We know that, and are doing things in HP-UX 11 (64bit), so turn off that warning with +vnocompatwarnings.
-
由 Richard Levitte 提交于
Use egrep instead.
-
- 22 10月, 2000 10 次提交
-
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
RAND_status() hasn't. Reported by Dale Stimson <dale@accentre.com>.
-
由 Richard Levitte 提交于
since NetBSD 1.5.
-
由 Richard Levitte 提交于
you should defined _THREAD_SAFE (I found that in an include file, and that's what everybody tells me) or _THREADSAFE (that's what the gcc manual says in the FreeBSD-specific section), so I defined both, just to be safe.
-
由 Richard Levitte 提交于
N.B.: This has not been tested at all, that's my next step.
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
-
- 20 10月, 2000 4 次提交
-
-
由 Dr. Stephen Henson 提交于
causes MASM to complain and not produce valid debug info. Hopefully this wont break anything else... Also fix typo in e_rd.c
-
由 Dr. Stephen Henson 提交于
-
由 Ulf Möller 提交于
-
由 Ulf Möller 提交于
-
- 19 10月, 2000 8 次提交
-
-
由 Ulf Möller 提交于
-
由 Richard Levitte 提交于
pointers at the end of the structure.
-
由 Richard Levitte 提交于
by providing a function pointer that is given a name instead of a BIO. For example, this could be used to load configuration data from an LDAP server.
-
由 Richard Levitte 提交于
NCONF_get_number_e() is defined (_e for "error checking") and is promoted strongly. The old NCONF_get_number is kept around for binary backward compatibility.
-
由 Ulf Möller 提交于
-
由 Ulf Möller 提交于
-
由 Ulf Möller 提交于
-
由 Richard Levitte 提交于
Free to OPENSSL_free in the SSL demos.
-
- 18 10月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 17 10月, 2000 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 16 10月, 2000 2 次提交
-
-
由 Ben Laurie 提交于
Submitted by: Reviewed by: PR:
-
由 Richard Levitte 提交于
-
- 15 10月, 2000 2 次提交
-
-
由 Dr. Stephen Henson 提交于
-
由 Richard Levitte 提交于
make update done.
-
- 14 10月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
to have the full extension information, so residual shared libraries can be removed so the applications and test programs do not get linked against them by mistake...
-