diff options
author | Yang Tse <yangsita@gmail.com> | 2009-10-27 16:38:42 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-10-27 16:38:42 +0000 |
commit | b2f430898053258622eebee3328f03441367a32c (patch) | |
tree | 5edb80da68f40d6f5fda70da1fa73c907cc0f4e9 /lib/easy.c | |
parent | 6a37135f4d56e89a85db50a38b800fd49eeafe3a (diff) | |
download | curl-b2f430898053258622eebee3328f03441367a32c.tar.gz |
Fix Pelles C Win32 target compilation issues
Diffstat (limited to 'lib/easy.c')
-rw-r--r-- | lib/easy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/easy.c b/lib/easy.c index ff808f9a5..0fee13f3e 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -206,7 +206,7 @@ static long init_flags; #define system_strdup strdup #endif -#if defined(_MSC_VER) && defined(_DLL) +#if defined(_MSC_VER) && defined(_DLL) && !defined(__POCC__) # pragma warning(disable:4232) /* MSVC extension, dllimport identity */ #endif @@ -232,7 +232,7 @@ curl_strdup_callback Curl_cstrdup; curl_calloc_callback Curl_ccalloc; #endif -#if defined(_MSC_VER) && defined(_DLL) +#if defined(_MSC_VER) && defined(_DLL) && !defined(__POCC__) # pragma warning(default:4232) /* MSVC extension, dllimport identity */ #endif |