Changeset 43 in Main for trunk/Server/main.c


Ignore:
Timestamp:
Sep 18, 2024, 6:19:03 PM (2 months ago)
Author:
Nishi
Message:

add NO_SSL

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/main.c

    r36 r43  
    22
    33#define SOURCE
     4
     5#include "../config.h"
    46
    57#include <stdio.h>
     
    810#include <signal.h>
    911
     12#ifndef NO_SSL
    1013#include <openssl/opensslv.h>
     14#endif
    1115
    1216#include <cm_log.h>
     
    2933                                if(!cm_do_log) {
    3034                                        cm_do_log = true;
     35#ifndef NO_SSL
    3136                                        cm_log("", "This is Tewi HTTPd, version %s, using %s", tw_get_version(), OPENSSL_VERSION_TEXT);
     37#else
     38                                        cm_log("", "This is Tewi HTTPd, version %s", tw_get_version());
     39#endif
    3240                                } else {
    3341                                        cm_do_log = true;
Note: See TracChangeset for help on using the changeset viewer.