summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorbje <bje>1998-10-04 02:05:52 +0000
committerbje <bje>1998-10-04 02:05:52 +0000
commitc6332c1963c7c13261192f2a406f3dbaf3a18a97 (patch)
treed11e18e6094e2b363c55cf9ecc560c3aded9f0be /configure.in
parent767652887cd3d21913bcb70519c6cb74d25f26e8 (diff)
1998-10-04 Ben Elliston <bje@cygnus.com>
* configure.in: Test for __stdcall, not _stdcall. Typo. * configure: Regenerate.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index f3726f6..76c78ea 100644
--- a/configure.in
+++ b/configure.in
@@ -16,11 +16,11 @@ then
fi
fi
AC_CACHE_CHECK(for _stdcall keyword, p32_cv_stdcall,
- AC_TRY_COMPILE( ,[int _stdcall foo();],
+ AC_TRY_COMPILE( ,[int __stdcall foo();],
p32_cv_stdcall=yes, p32_cv_stdcall=no))
if test x$p32_cv_stdcall = xyes ; then
- AC_DEFINE(STDCALL, _stdcall)
+ AC_DEFINE(STDCALL, __stdcall)
else
AC_DEFINE(STDCALL,)
fi