diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2008-08-26 22:36:03 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2008-08-26 22:36:03 +0000 |
commit | 74d3b80d707a1018cd08fe53685e4744131f378b (patch) | |
tree | 895e8c7174f49e202f78e2e2a937d95df3ece834 /include | |
parent | 4b01dfe369896a8a93a3c82228c755a03da731e9 (diff) |
Treat all ARM compilers (RVCT, GCC) equally on Symbian OS. They are both
compatible, and otherwise the dependency generation phase of the build
would throw warnings since the actual compiler isn't known at that time.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curlbuild.h.dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/curl/curlbuild.h.dist b/include/curl/curlbuild.h.dist index d5dc57597..eacf6ad3b 100644 --- a/include/curl/curlbuild.h.dist +++ b/include/curl/curlbuild.h.dist @@ -266,7 +266,7 @@ # define CURL_SUFFIX_CURL_OFF_TU UL #elif defined(__SYMBIAN32__) -# if defined(__GCC32__) +# if defined(__EABI__) /* Treat all ARM compilers equally */ # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long long # define CURL_FORMAT_CURL_OFF_T "lld" |