forked from conan-io/conan-center-index
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from uilianries/b64-2.0.0.1
[b64] Add patch for Windows
- Loading branch information
Showing
2 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/include/b64/ccommon.h b/include/b64/ccommon.h | ||
index 2b614df..28a9936 100644 | ||
--- a/include/b64/ccommon.h | ||
+++ b/include/b64/ccommon.h | ||
@@ -14,7 +14,7 @@ For details, see http://sourceforge.net/projects/libb64 | ||
#ifndef HAVE_SIZE_T | ||
#ifdef _WIN32 | ||
#include <crtdefs.h> | ||
- #elseif defined (__unix__) || (defined (__APPLE__) && defined (__MACH__)) | ||
+ #elif defined (__unix__) || (defined (__APPLE__) && defined (__MACH__)) | ||
#include <stdlib.h> | ||
#else | ||
typedef unsigned long size_t; |