Fix some bsdsocket.library usage
NetSurf now builds against libcurl-AmiSSL
This commit is contained in:
parent
0a72449f4b
commit
178d4bc25c
|
@ -116,6 +116,11 @@
|
|||
#include "content/content.h"
|
||||
#include "content/urldb.h"
|
||||
|
||||
#ifdef WITH_AMISSL
|
||||
/* AmiSSL needs everything to be using bsdsocket directly to avoid conflicts */
|
||||
#include <proto/bsdsocket.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* cookie entry.
|
||||
*
|
||||
|
|
|
@ -40,6 +40,12 @@
|
|||
#include <proto/utility.h>
|
||||
#include <proto/wb.h>
|
||||
|
||||
#ifdef WITH_AMISSL
|
||||
/* AmiSSL needs everything to use bsdsocket.library directly to avoid problems */
|
||||
#include <proto/bsdsocket.h>
|
||||
#define waitselect WaitSelect
|
||||
#endif
|
||||
|
||||
/* Other OS includes */
|
||||
#include <datatypes/textclass.h>
|
||||
#include <devices/inputevent.h>
|
||||
|
|
Loading…
Reference in New Issue