summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-08-26 16:46:46 +0000
committerYang Tse <yangsita@gmail.com>2008-08-26 16:46:46 +0000
commit243cf297939eba776c1d40a90212fe9025221d61 (patch)
tree9f064d29952278bd2d58ecf0cd4470f17ef9db86
parent9ded8fbe58bdbbc792e873147ea6b085f4a8fbca (diff)
downloadcurl-243cf297939eba776c1d40a90212fe9025221d61.tar.gz
Windows build targets don't use the 'SONAME' mechanism.
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 6d7dd0e35..18ab1f61c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2003,7 +2003,8 @@ AC_CHECK_SIZEOF(time_t)
AC_CHECK_SIZEOF(off_t)
soname_bump=no
-if test $ac_cv_sizeof_off_t -ne $curl_sizeof_curl_off_t; then
+if test x"$ac_cv_native_windows" != "xyes" &&
+ test $ac_cv_sizeof_off_t -ne $curl_sizeof_curl_off_t; then
AC_MSG_WARN([This libcurl built is probably not ABI compatible with previous])
AC_MSG_WARN([builds! You MUST read lib/README.curl_off_t to figure it out.])
soname_bump=yes