summaryrefslogtreecommitdiff
path: root/mswin
diff options
context:
space:
mode:
authorBryan Ischo <bryan@ischo.com>2008-08-07 14:20:31 +0000
committerBryan Ischo <bryan@ischo.com>2008-08-07 14:20:31 +0000
commit035dd9752eeefdcbb885bc234cda04563f68d319 (patch)
tree1854a13b20f9532cf9b767df55789362bfde76e6 /mswin
parent744c19acf5d8dd7c02193bf3fafd2e6a548f43e4 (diff)
downloadceph-libs3-035dd9752eeefdcbb885bc234cda04563f68d319.tar.gz
* Support build on Microsoft Windows via MingW
* Don't verify Amazon S3's SSL certificate, doing so causes problems * Added error code to properly report the case where the SSL certificate verification fails
Diffstat (limited to 'mswin')
-rw-r--r--mswin/rmrf.bat9
1 files changed, 9 insertions, 0 deletions
diff --git a/mswin/rmrf.bat b/mswin/rmrf.bat
new file mode 100644
index 0000000..204efd9
--- /dev/null
+++ b/mswin/rmrf.bat
@@ -0,0 +1,9 @@
+@echo off
+
+if exist "%1". (
+ rmdir /S /Q "%1"
+)
+
+if exist "%1". (
+ del /Q "%1"
+)