summaryrefslogtreecommitdiffstats
path: root/mail/dovecot/patches/001-configure_in.patch
blob: 70642d648f067237713566cf27f5dce5ec774a54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--- a/configure.ac
+++ b/configure.ac
@@ -504,9 +504,9 @@ have_ioloop=no
 
 if test "$ioloop" = "best" || test "$ioloop" = "epoll"; then
   AC_CACHE_CHECK([whether we can use epoll],i_cv_epoll_works,[
-    AC_TRY_RUN([
+    AC_TRY_LINK([
       #include <sys/epoll.h>
-  
+    ], [
       int main()
       {
 	return epoll_create(5) < 1;
@@ -639,7 +639,7 @@ fi
 dnl * Old glibcs have broken posix_fallocate(). Make sure not to use it.
 dnl * It may also be broken in AIX.
 AC_CACHE_CHECK([whether posix_fallocate() works],i_cv_posix_fallocate_works,[
-  AC_TRY_RUN([
+  AC_TRY_LINK([
     #define _XOPEN_SOURCE 600
     #include <stdio.h>
     #include <stdlib.h>
@@ -648,6 +648,7 @@ AC_CACHE_CHECK([whether posix_fallocate(
     #if defined(__GLIBC__) && (__GLIBC__ < 2 || __GLIBC_MINOR__ < 7)
       possibly broken posix_fallocate
     #endif
+  ], [
     int main() {
       int fd = creat("conftest.temp", 0600);
       int ret;