Subversion Repositories Tewi

Rev

Blame | Last modification | View Log | Download | RSS feed

/* $Id: option.c 43 2024-09-18 09:19:03Z nishi $ */
/* This file is not intended to be in the server. */

#include <stdio.h>
#include <string.h>

#include "../config.h"

int main(int argc, char** argv) {
        if(argc < 3) {
                return 1;
        }
        if(strcmp(argv[1], "cflags") == 0) {
#ifndef NO_SSL
                printf("-I %s/openssl/include", argv[2]);
#endif
        } else if(strcmp(argv[1], "ldflags") == 0) {
#ifndef NO_SSL
                printf("-I %s/openssl/lib", argv[2]);
#endif
        } else if(strcmp(argv[1], "objs") == 0) {
#ifndef NO_SSL
                printf("ssl.o");
#endif
        } else if(strcmp(argv[1], "libs") == 0) {
#ifndef NO_SSL
                printf("-lssl -lcrypto");
#endif
        }
        printf("\n");
}