Changeset 44 in Main for trunk


Ignore:
Timestamp:
Sep 18, 2024, 6:37:09 PM (2 months ago)
Author:
Nishi
Message:

fix strptime

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r43 r44  
    1717
    1818./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 ../`"
    2020
    2121./Module:: ./Common
  • trunk/Server/Makefile

    r43 r44  
    1111
    1212tewi$(EXEC): $(OBJS) ../Common/common.a
    13         $(CC) $(LDFLAGS) -o $@ $(OBJS) $(EXTLIBS) $(LIBS) ../Common/common.a
     13        $(CC) $(LDFLAGS) $(EXTLDFLAGS) -o $@ $(OBJS) $(EXTLIBS) $(LIBS) ../Common/common.a
    1414
    1515.c.o:
    16         $(CC) $(CFLAGS) -c -o $@ $<
     16        $(CC) $(CFLAGS) $(EXTCFLAGS) -c -o $@ $<
    1717
    1818clean:
  • trunk/Server/option.c

    r43 r44  
    1717        } else if(strcmp(argv[1], "ldflags") == 0) {
    1818#ifndef NO_SSL
    19                 printf("-I %s/openssl/lib", argv[2]);
     19                printf("-L %s/openssl/lib", argv[2]);
    2020#endif
    2121        } else if(strcmp(argv[1], "objs") == 0) {
  • trunk/Server/strptime.c

    r34 r44  
    636636                 */
    637637                ep = find_string(bp, &i,
    638                              (const char * const *)tzname,
     638                             (const char * const *)NULL,
    639639                              NULL, 2);
    640640                if (ep != NULL) {
Note: See TracChangeset for help on using the changeset viewer.