Few configure.ac adjustments

- Use the extensions autoconf finds for object and executable files.
- Remove the sorev variable, and replace SOREV definition with sorev's.
- Default to je_ prefix on win32.
This commit is contained in:
Mike Hommey
2012-04-30 12:38:27 +02:00
committed by Jason Evans
parent a14bce85e8
commit 7cdea3973c
3 changed files with 9 additions and 15 deletions

View File

@@ -161,9 +161,9 @@ get_errno(void)
{
#ifdef _WIN32
return GetLastError();
return (GetLastError());
#else
return errno;
return (errno);
#endif
}
#endif