Subversion Repositories Tewi

Rev

Rev 244 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 244 Rev 249
Line 1... Line 1...
1
/* $Id: option.c 244 2024-10-03 20:04:15Z nishi $ */
1
/* $Id: option.c 249 2024-10-03 20:59:55Z 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 51... Line 51...
51
#else
51
#else
52
			printf(" -lws2_32");
52
			printf(" -lws2_32");
53
#endif
53
#endif
54
#ifdef BUILD_GUI
54
#ifdef BUILD_GUI
55
			printf(" -lcomctl32");
55
			printf(" -lcomctl32");
-
 
56
			printf(" -luser32");
56
#endif
57
#endif
57
		}else if(strcmp(argv[3], "WINDOWS_WATCOM") == 0){
58
		}else if(strcmp(argv[3], "WINDOWS_WATCOM") == 0){
58
#ifdef USE_WINSOCK1
59
#ifdef USE_WINSOCK1
59
			printf(" wsock32.lib");
60
			printf(" wsock32.lib");
60
#else
61
#else
61
			printf(" ws2_32.lib");
62
			printf(" ws2_32.lib");
62
#endif
63
#endif
63
#ifdef BUILD_GUI
64
#ifdef BUILD_GUI
64
			printf(" comctl32.lib");
65
			printf(" comctl32.lib");
-
 
66
			printf(" user32.lib");
65
#endif
67
#endif
66
		}
68
		}
67
	}
69
	}
68
	printf("\n");
70
	printf("\n");
69
	return 0;
71
	return 0;