diff options
| author | Eli Zaretskii | 2013-03-29 14:29:23 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-03-29 14:29:23 +0300 |
| commit | c38ad11c2af0ea2ae345c6b48c59467414bf0bcf (patch) | |
| tree | 2cb3cc3e60d9df3d69c5bc9f84059d9e3c868cd6 | |
| parent | 5d611e04506c5d34c823ea06fc4b27ff715a493e (diff) | |
| download | emacs-c38ad11c2af0ea2ae345c6b48c59467414bf0bcf.tar.gz emacs-c38ad11c2af0ea2ae345c6b48c59467414bf0bcf.zip | |
Added nt/mingw-cfg.site, first few vars defined on it.
| -rw-r--r-- | nt/mingw-cfg.site | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/nt/mingw-cfg.site b/nt/mingw-cfg.site new file mode 100644 index 00000000000..e3c49c1a914 --- /dev/null +++ b/nt/mingw-cfg.site | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | #! /bin/sh | ||
| 2 | # Site defaults for the MinGW configuration of GNU Emacs. | ||
| 3 | |||
| 4 | # We want to use getopt.h from gnulib | ||
| 5 | ac_cv_header_getopt_h=no | ||
| 6 | |||
| 7 | # Implemented in w32.c | ||
| 8 | ac_cv_func_acl_set_file=yes | ||
| 9 | # Autoconf's test program is not smart enough, and fails to detect gethostname | ||
| 10 | ac_cv_func_gethostname=yes | ||
| 11 | # Implemented as sys_select in w32proc.c | ||
| 12 | ac_cv_func_select=yes | ||
| 13 | # Implemented as sys_shutdown in w32.c | ||
| 14 | ac_cv_func_shutdown=yes | ||
| 15 | # Implemented in w32proc.c | ||
| 16 | ac_cv_func_setitimer=yes | ||
| 17 | # Implemented as sys_sendto in w32.c | ||
| 18 | ac_cv_func_sendto=yes | ||
| 19 | # Implemented as sys_recfrom in w32.c | ||
| 20 | ac_cv_func_recfrom=yes | ||
| 21 | # Implemented as sys_getsockname in w32.c | ||
| 22 | ac_cv_func_getsockname=yes | ||
| 23 | # Implemented as sys_getpeername in w32.c | ||
| 24 | ac_cv_func_getpeername=yes | ||
| 25 | # Implemented in w32.c | ||
| 26 | ac_cv_func_readlink=yes | ||
| 27 | # Avoid run-time test of readlink, which will fail | ||
| 28 | gl_cv_func_readlink_works=yes | ||
| 29 | ac_cv_func_readlinkat=yes | ||
| 30 | ac_cv_func_faccessat=yes | ||
| 31 | # We don't need fdopendir | ||
| 32 | ac_cv_func_fdopendir="not needed" | ||
| 33 | gl_cv_func_fdopendir_works="no, but not needed, so yes" | ||