Changeset 215 in Main for trunk/Server/config.c


Ignore:
Timestamp:
Oct 3, 2024, 4:24:43 AM (6 weeks ago)
Author:
Nishi
Message:

can be compiled using bcc32 now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/config.c

    r212 r215  
    1111#include <string.h>
    1212
    13 #ifndef _MSC_VER
     13#if !defined(_MSC_VER) && !defined(__BORLANDC__)
    1414#include <unistd.h>
    1515#endif
    1616
    17 #if defined(__MINGW32__) || defined(_MSC_VER)
     17#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__)
    1818#include <winsock2.h>
    1919#endif
     
    267267                                        ) {
    268268                                                for(i = 1; r[i] != NULL; i++) {
    269 #ifdef _MSC_VER
     269#if defined(_MSC_VER) || defined(__BORLANDC__)
    270270                                                        uint32_t port = atoi(r[i]);
    271271#else
     
    274274                                                        int j;
    275275                                                        cm_log("Config", "Going to listen at port %d%s", (int)port, cm_strcaseequ(r[0], "ListenSSL") ? " with SSL" : "");
    276 #ifdef _MSC_VER
     276#if defined(_MSC_VER) || defined(__BORLANDC__)
    277277                                                        if(cm_strcaseequ(r[0], "ListenSSL")) port |= (1UL << 31);
    278278#else
Note: See TracChangeset for help on using the changeset viewer.