mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Update some MINGW symbols
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@9257 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
821cec41af
commit
b25543ee23
3 changed files with 18 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2001-02-28 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Source/win32-load.h (__objc_dynamic_get_symbol_path): New function.
|
||||
|
||||
* Source/GSHTTPURLHandle.m ([GSHTTPURLHandle -loadInBackground]): Use
|
||||
GSUnixSSLHandle only if not __MINGW__
|
||||
|
||||
2001-02-27 Jonathan Gapen <jagapen@home.com>
|
||||
|
||||
* NSCharacterSets/README.CharSet: Update notes.
|
||||
|
|
|
@ -255,16 +255,18 @@ static NSLock *urlLock = nil;
|
|||
document = RETAIN([parser document]);
|
||||
[self beginLoadInBackground];
|
||||
[sock closeFile];
|
||||
RELEASE(sock);
|
||||
DESTROY(sock);
|
||||
contentLength = 0;
|
||||
if ([request objectForKey: GSHTTPPropertyProxyHostKey] == nil)
|
||||
{
|
||||
if ([[url scheme] isEqualToString: @"https"])
|
||||
{
|
||||
#ifndef __MINGW__
|
||||
sock = [GSUnixSSLHandle
|
||||
fileHandleAsClientInBackgroundAtAddress: [url host]
|
||||
service: [url scheme]
|
||||
protocol: @"tcp"];
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -282,12 +284,14 @@ static NSLock *urlLock = nil;
|
|||
}
|
||||
if ([[url scheme] isEqualToString: @"https"])
|
||||
{
|
||||
#ifndef __MINGW__
|
||||
sock = [GSUnixSSLHandle
|
||||
fileHandleAsClientInBackgroundAtAddress:
|
||||
[request objectForKey: GSHTTPPropertyProxyHostKey]
|
||||
service:
|
||||
[request objectForKey: GSHTTPPropertyProxyPortKey]
|
||||
protocol: @"tcp"];
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -52,6 +52,12 @@ __objc_dynamic_unlink(dl_handle_t handle)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static char *
|
||||
__objc_dynamic_get_symbol_path(dl_handle_t handle, dl_symbol_t symbol)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* Print an error message (prefaced by 'error_string') relevant to the
|
||||
last error encountered
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue