]> granicus.if.org Git - curl/commitdiff
msvc builds: s/rawstr/strcase
authorDaniel Stenberg <daniel@haxx.se>
Mon, 31 Oct 2016 12:35:09 +0000 (13:35 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 31 Oct 2016 12:35:26 +0000 (13:35 +0100)
Follow-up to 811a693b

src/Makefile.vc6
winbuild/MakefileBuild.vc

index ff82a4df8165ec66177efa070330afd86cb4cb00..85828cedd7f1ac0509c752c24315cd713355ae7f 100644 (file)
@@ -142,7 +142,7 @@ CFLAGS = $(CFLAGS) /DUSE_WINDOWS_SSPI /I$(WINDOWS_SDK_PATH)\include
 \r
 RELEASE_OBJS= \\r
        nonblockr.obj \\r
-       rawstrr.obj \\r
+       strcaser.obj \\r
        strtoofftr.obj \\r
        warnless.obj \\r
        slist_wc.obj \\r
@@ -188,7 +188,7 @@ RELEASE_OBJS= \
 \r
 DEBUG_OBJS= \\r
        nonblockd.obj \\r
-       rawstrd.obj \\r
+       strcased.obj \\r
        strtoofftd.obj \\r
        warnlessd.obj \\r
        slist_wcd.obj \\r
@@ -363,8 +363,8 @@ debug: $(DEBUG_OBJS)
 ## Release\r
 nonblockr.obj: ../lib/nonblock.c\r
        $(CCR) $(CFLAGS) /Fo"$@" ../lib/nonblock.c\r
-rawstrr.obj: ../lib/rawstr.c\r
-       $(CCR) $(CFLAGS) /Fo"$@" ../lib/rawstr.c\r
+strcaser.obj: ../lib/strcase.c\r
+       $(CCR) $(CFLAGS) /Fo"$@" ../lib/strcase.c\r
 strtoofftr.obj: ../lib/strtoofft.c\r
        $(CCR) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c\r
 warnless.obj: ../lib/warnless.c\r
@@ -453,8 +453,8 @@ curlr.res : curl.rc
 ## Debug\r
 nonblockd.obj: ../lib/nonblock.c\r
        $(CCD) $(CFLAGS) /Fo"$@" ../lib/nonblock.c\r
-rawstrd.obj: ../lib/rawstr.c\r
-       $(CCD) $(CFLAGS) /Fo"$@" ../lib/rawstr.c\r
+strcased.obj: ../lib/strcase.c\r
+       $(CCD) $(CFLAGS) /Fo"$@" ../lib/strcase.c\r
 strtoofftd.obj: ../lib/strtoofft.c\r
        $(CCD) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c\r
 warnlessd.obj: ../lib/warnless.c\r
index 3b4fc109ccccca6d48037354d1da261760505a90..159dccd333c2ee57c8e07db226bd4f2d17def15c 100644 (file)
@@ -494,7 +494,7 @@ CURL_LIBCURL_LIBNAME=$(LIB_NAME_IMP)
 \r
 CURL_FROM_LIBCURL=$(CURL_DIROBJ)\tool_hugehelp.obj \\r
  $(CURL_DIROBJ)\nonblock.obj \\r
- $(CURL_DIROBJ)\rawstr.obj \\r
+ $(CURL_DIROBJ)\strcase.obj \\r
  $(CURL_DIROBJ)\strtoofft.obj \\r
  $(CURL_DIROBJ)\warnless.obj\r
  \r
@@ -509,8 +509,8 @@ $(CURL_DIROBJ)\tool_hugehelp.obj: $(CURL_SRC_DIR)\tool_hugehelp.c
        $(CURL_CC) $(CURL_CFLAGS) /Zm200 /Fo"$@" $(CURL_SRC_DIR)\tool_hugehelp.c\r
 $(CURL_DIROBJ)\nonblock.obj: ../lib/nonblock.c\r
        $(CURL_CC) $(CURL_CFLAGS) /Fo"$@" ../lib/nonblock.c\r
-$(CURL_DIROBJ)\rawstr.obj: ../lib/rawstr.c\r
-       $(CURL_CC) $(CURL_CFLAGS) /Fo"$@" ../lib/rawstr.c\r
+$(CURL_DIROBJ)\strcase.obj: ../lib/strcase.c\r
+       $(CURL_CC) $(CURL_CFLAGS) /Fo"$@" ../lib/strcase.c\r
 $(CURL_DIROBJ)\strtoofft.obj: ../lib/strtoofft.c\r
        $(CURL_CC) $(CURL_CFLAGS) /Fo"$@" ../lib/strtoofft.c\r
 $(CURL_DIROBJ)\warnless.obj: ../lib/warnless.c\r