- Timestamp:
- Sep 18, 2024, 6:37:09 PM (2 months ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r43 r44 17 17 18 18 ./Server:: ./Common ./Server/option 19 $(MAKE) -C $@ $(FLAGS) EXTOBJS= `./Server/option objs ../` EXTLIBS=`./Server/option libs ../`19 $(MAKE) -C $@ $(FLAGS) EXTOBJS="`./Server/option objs ../`" EXTLIBS="`./Server/option libs ../`" EXTCFLAGS="`./Server/option cflags ../`" EXTLDFLAGS="`./Server/option ldflags ../`" 20 20 21 21 ./Module:: ./Common -
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.