Changeset 44 in Main for trunk/Server
- Timestamp:
- Sep 18, 2024, 6:37:09 PM (2 months ago)
- Location:
- trunk/Server
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Server/Makefile
r43 r44 11 11 12 12 tewi$(EXEC): $(OBJS) ../Common/common.a 13 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(EXTLIBS) $(LIBS) ../Common/common.a13 $(CC) $(LDFLAGS) $(EXTLDFLAGS) -o $@ $(OBJS) $(EXTLIBS) $(LIBS) ../Common/common.a 14 14 15 15 .c.o: 16 $(CC) $(CFLAGS) -c -o $@ $<16 $(CC) $(CFLAGS) $(EXTCFLAGS) -c -o $@ $< 17 17 18 18 clean: -
trunk/Server/option.c
r43 r44 17 17 } else if(strcmp(argv[1], "ldflags") == 0) { 18 18 #ifndef NO_SSL 19 printf("- I%s/openssl/lib", argv[2]);19 printf("-L %s/openssl/lib", argv[2]); 20 20 #endif 21 21 } else if(strcmp(argv[1], "objs") == 0) { -
trunk/Server/strptime.c
r34 r44 636 636 */ 637 637 ep = find_string(bp, &i, 638 (const char * const *) tzname,638 (const char * const *)NULL, 639 639 NULL, 2); 640 640 if (ep != NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.