Subversion Repositories Tewi

Rev

Rev 43 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 43 Rev 44
Line 1... Line 1...
1
/* $Id: option.c 43 2024-09-18 09:19:03Z nishi $ */
1
/* $Id: option.c 44 2024-09-18 09:37:09Z nishi $ */
2
/* This file is not intended to be in the server. */
2
/* This file is not intended to be in the server. */
3
 
3
 
4
#include <stdio.h>
4
#include <stdio.h>
5
#include <string.h>
5
#include <string.h>
6
 
6
 
Line 14... Line 14...
14
#ifndef NO_SSL
14
#ifndef NO_SSL
15
		printf("-I %s/openssl/include", argv[2]);
15
		printf("-I %s/openssl/include", argv[2]);
16
#endif
16
#endif
17
	} else if(strcmp(argv[1], "ldflags") == 0) {
17
	} else if(strcmp(argv[1], "ldflags") == 0) {
18
#ifndef NO_SSL
18
#ifndef NO_SSL
19
		printf("-I %s/openssl/lib", argv[2]);
19
		printf("-L %s/openssl/lib", argv[2]);
20
#endif
20
#endif
21
	} else if(strcmp(argv[1], "objs") == 0) {
21
	} else if(strcmp(argv[1], "objs") == 0) {
22
#ifndef NO_SSL
22
#ifndef NO_SSL
23
		printf("ssl.o");
23
		printf("ssl.o");
24
#endif
24
#endif