diff options
author | bje <bje> | 1998-10-04 02:05:52 +0000 |
---|---|---|
committer | bje <bje> | 1998-10-04 02:05:52 +0000 |
commit | c6332c1963c7c13261192f2a406f3dbaf3a18a97 (patch) | |
tree | d11e18e6094e2b363c55cf9ecc560c3aded9f0be /configure | |
parent | 767652887cd3d21913bcb70519c6cb74d25f26e8 (diff) |
1998-10-04 Ben Elliston <bje@cygnus.com>
* configure.in: Test for __stdcall, not _stdcall. Typo.
* configure: Regenerate.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -945,7 +945,7 @@ else #include "confdefs.h" int main() { -int _stdcall foo(); +int __stdcall foo(); ; return 0; } EOF if { (eval echo configure:952: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then @@ -964,7 +964,7 @@ echo "$ac_t""$p32_cv_stdcall" 1>&6 if test x$p32_cv_stdcall = xyes ; then cat >> confdefs.h <<\EOF -#define STDCALL _stdcall +#define STDCALL __stdcall EOF else |