mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
af48d07bc5
Disable -ffast-math in release builds, as it was causing problems. Added a build config that disables a number of things that might trigger antivirus FALSE-positives (including all http+tcp support, process forking, tls/crypto), for use in SDL builds where any further system interactions is deferred to SDL. For crippled builds. Made the output of the version command more verbose to reflect networking features. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5485 fc73d0e0-1445-4013-8a0c-d673dee63da5
17 lines
437 B
C
17 lines
437 B
C
// Build-Config file for FTE's webless nearly-standard builds.
|
|
// these builds have crippled networking options to see if they fare better with malware false positives.
|
|
// to use: make FTE_CONFIG=fteqw_noweb
|
|
|
|
#include "config_fteqw.h"
|
|
|
|
#undef WEBCLIENT
|
|
#undef HAVE_HTTPSV
|
|
#undef TCPCONNECT
|
|
#undef FTPSERVER
|
|
#undef HAVE_TCP
|
|
#undef HAVE_GNUTLS
|
|
#undef HAVE_OPENSSL
|
|
#undef HAVE_WINSSPI
|
|
#undef SUPPORT_ICE
|
|
#undef SUBSERVERS
|
|
|