Fix some bsdsocket.library usage

NetSurf now builds against libcurl-AmiSSL
This commit is contained in:
Chris Young 2019-03-12 23:43:04 +00:00 committed by Vincent Sanders
parent 0a72449f4b
commit 178d4bc25c
2 changed files with 11 additions and 0 deletions

View File

@ -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.
*

View File

@ -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>