unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* USE_LSB_TAG not supported on this platform
@ 2016-02-04  8:32 C. Baxter
  2016-02-04 13:24 ` Stefan Monnier
                   ` (2 more replies)
  0 siblings, 3 replies; 27+ messages in thread
From: C. Baxter @ 2016-02-04  8:32 UTC (permalink / raw)
  To: emacs-devel

I'm getting a new (for me) build error of "USE_LSB_TAG not supported on this
platform;" The suggested work round of 'configure --with-wide-int' has no
effect. The error message is generated from line 275 of src/lisp.h





^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-04  8:32 USE_LSB_TAG not supported on this platform C. Baxter
@ 2016-02-04 13:24 ` Stefan Monnier
  2016-02-04 15:51 ` Paul Eggert
  2016-02-04 22:29 ` Herbert J. Skuhra
  2 siblings, 0 replies; 27+ messages in thread
From: Stefan Monnier @ 2016-02-04 13:24 UTC (permalink / raw)
  To: emacs-devel

> I'm getting a new (for me) build error of "USE_LSB_TAG not supported on this
> platform;"

What platform is that?


        Stefan




^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-04  8:32 USE_LSB_TAG not supported on this platform C. Baxter
  2016-02-04 13:24 ` Stefan Monnier
@ 2016-02-04 15:51 ` Paul Eggert
  2016-02-04 22:29 ` Herbert J. Skuhra
  2 siblings, 0 replies; 27+ messages in thread
From: Paul Eggert @ 2016-02-04 15:51 UTC (permalink / raw)
  To: C. Baxter, emacs-devel

On 02/04/2016 12:32 AM, C. Baxter wrote:
> I'm getting a new (for me) build error of "USE_LSB_TAG not supported on this
> platform;" The suggested work round of 'configure --with-wide-int' has no
> effect. The error message is generated from line 275 of src/lisp.h
>
--with-wide-int defines WIDE_EMACS_INT and the build error is issued 
only if WIDE_EMACS_INT is not defined. So there must be something going 
wrong with that, which you can investigate by looking at src/config.h 
and config.log. Please also let us know which version of Emacs, the 
platform you're running on, and how you configured and built Emacs. For 
something like this it's typically better to send the email to 
bug-gnu-emacs@gnu.org so that we have a proper bug report.



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-04  8:32 USE_LSB_TAG not supported on this platform C. Baxter
  2016-02-04 13:24 ` Stefan Monnier
  2016-02-04 15:51 ` Paul Eggert
@ 2016-02-04 22:29 ` Herbert J. Skuhra
  2016-02-05  1:22   ` Paul Eggert
  2 siblings, 1 reply; 27+ messages in thread
From: Herbert J. Skuhra @ 2016-02-04 22:29 UTC (permalink / raw)
  To: emacs-devel

On Thu, 04 Feb 2016 09:32:46 +0100 C. Baxter wrote:
> 
> I'm getting a new (for me) build error of "USE_LSB_TAG not supported on this
> platform;" The suggested work round of 'configure --with-wide-int' has no
> effect. The error message is generated from line 275 of src/lisp.h

I also get this error building master on FreeBSD 10.3-PRERELEASE (i386)
with both clang (base) and gcc5 (ports):

In file included from lwlib.c:24:0:
../src/lisp.h:275:3: error: #error "USE_LSB_TAG not supported on this platform; please report this." "Try 'configure --with-wide-int' to work around the problem."
 # error "USE_LSB_TAG not supported on this platform; please report this." \
   ^
../src/lisp.h:277:7: error: expected '=', ',', ';', 'asm' or '__attribute__' before '!' token
 error !;
       ^
       
Commit d6585a910ed3e9e0e43c093b5fbfeb6d56b703b4 is obviously the
culprit. The workaround is successful.

-- 
Herbert



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-04 22:29 ` Herbert J. Skuhra
@ 2016-02-05  1:22   ` Paul Eggert
  2016-02-05  9:45     ` Colin Baxter
  2016-02-06 10:55     ` Herbert J. Skuhra
  0 siblings, 2 replies; 27+ messages in thread
From: Paul Eggert @ 2016-02-05  1:22 UTC (permalink / raw)
  To: Herbert J. Skuhra; +Cc: Colin Baxter, emacs-devel

On 02/04/2016 02:29 PM, Herbert J. Skuhra wrote:
> Commit d6585a910ed3e9e0e43c093b5fbfeb6d56b703b4 is obviously the
> culprit. The workaround is successful.

Thanks, but I'm not getting the connection. I don't understand why that 
commit would cause this problem. USE_LSB_TAG's value depends on 
EMACS_INT_MAX and INTPTR_MAX, neither of which should be affected by 
that commit.

I guess you're configuring with the equivalent of './configure 
--with-x-toolkit=lucid'; that would explain why you're compiling 
lwlib.c. However, when I configure that way, I don't get an error on 
Fedora 23 x86.

Can you tell us what the values of EMACS_INT_MAX and INTPTR_MAX are, in 
your environment? They should both be 2**31 - 1, but perhaps something 
has gone wrong in their configuration.

By "the workaround" do you mean back out just that commit, and keep 
later commits to master?



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-05  1:22   ` Paul Eggert
@ 2016-02-05  9:45     ` Colin Baxter
  2016-02-06 10:55     ` Herbert J. Skuhra
  1 sibling, 0 replies; 27+ messages in thread
From: Colin Baxter @ 2016-02-05  9:45 UTC (permalink / raw)
  To: Paul Eggert, Herbert J. Skuhra; +Cc: emacs-devel@gnu.org

[-- Attachment #1: Type: text/plain, Size: 958 bytes --]

I list below the outcome of today's build attempts. I attach the configure logs and screen outputs. I'm a newbie so I'm at the limit of my "computer knowledge". Sorry.

Best wishes, Colin.


A. Remove emacs git-source directory and start again
====================================================

1. rm -r -f ~/git/emacs RET
2. cd ~/git RET
3. git clone git://git.sv.gnu.org/emacs.git RET
4. cd ~/git/emacs RET
5. git pull RET
    Already up-to-date

B. First Build Attempt
======================

1. cd ~/git/emacs RET
2. make RET
   First error seen: "USE_LSB_TAG not supported on this platform"

config.log attached as config1.log
screen output attached as screen-out1.txt


C. Second Build Attempt
=======================

1. cd ~/git/emacs RET
2. make clean RET
3. make distclean RET
4. ./configure --with-wide-int RET
5. make RET
   First error seen: "alignas not defined"

config.log attached as config2.log
screen output attached as screen-out2.txt

[-- Attachment #2: screen-out1.txt --]
[-- Type: text/plain, Size: 26316 bytes --]

---------- Begin screen output 1 ---------
redknight@jetstar:~/git/emacs$ make
There seems to be no "configure" file in this directory.
Running ./autogen.sh all ...
./autogen.sh all
Checking whether you have the necessary tools...
(Read INSTALL.REPO for more details on building Emacs)
Checking for autoconf (need at least version 2.65)...
ok
Checking for automake (need at least version 1.11)...
ok
Your system has the required tools.
Running 'autoreconf -fi -I m4' ...
configure.ac:805: installing `build-aux/ar-lib'
configure.ac:773: installing `build-aux/compile'
configure.ac:139: installing `build-aux/config.guess'
configure.ac:139: installing `build-aux/config.sub'
configure.ac:136: installing `build-aux/install-sh'
configure.ac:136: installing `build-aux/missing'
lib/Makefile.am: installing `build-aux/depcomp'
Configuring local git repository...
`.git/config' -> `.git/config.~1~'
git config diff.elisp.xfuncname '^\(def[^[:space:]]+[[:space:]]+([^()[:space:]]+)'
git config diff.texinfo.xfuncname '^@node[[:space:]]+([^,[:space:]][^,]+)'
Installing git hooks...
`build-aux/git-hooks/commit-msg' -> `.git/hooks/commit-msg'
`build-aux/git-hooks/pre-commit' -> `.git/hooks/pre-commit'
`.git/hooks/applypatch-msg.sample' -> `.git/hooks/applypatch-msg'
`.git/hooks/pre-applypatch.sample' -> `.git/hooks/pre-applypatch'
You can now run './configure'.
"configure" file built.
There seems to be no Makefile in this directory.
Running ./configure ...
./configure
checking for xcrun... no
checking for GNU Make... make
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... -std=gnu11
checking for style of include used by make... GNU
checking dependency style of gcc -std=gnu11... gcc3
checking whether gcc -std=gnu11 and cc understand -c and -o together... yes
checking for putenv... yes
checking for tzset... yes
checking for fchmod... yes
checking for readlinkat... yes
checking for faccessat... yes
checking for fcntl... yes
checking for fdopendir... yes
checking for fstatat... yes
checking for fsync... yes
checking for gettimeofday... yes
checking for nanotime... no
checking for lstat... yes
checking for mkostemp... yes
checking for pipe2... yes
checking for pselect... yes
checking for readlink... yes
checking for strtoimax... yes
checking for strtoumax... yes
checking for symlink... yes
checking for localtime_r... yes
checking for timegm... yes
checking for futimes... yes
checking for futimesat... yes
checking for futimens... yes
checking for utimensat... yes
checking for lutimes... yes
checking for getdtablesize... yes
checking for secure_getenv... no
checking how to run the C preprocessor... gcc -std=gnu11 -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for Minix Amsterdam compiler... no
checking for ar... ar
checking the archiver (ar) interface... ar
checking for ar... (cached) ar
checking for ranlib... ranlib
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking whether gcc -std=gnu11 accepts -g3 -O2... yes
checking whether the compiler is clang... no
checking whether make supports nested variables... (cached) yes
checking whether ln -s works for files in the same directory... yes
checking for install-info... /home/redknight/local/bin/install-info
checking for gzip... /bin/gzip
checking for paxctl... no
checking for setfattr... no
checking for -znocombreloc... yes
checking whether addresses are sanitized... no
checking for library containing sqrt... -lm
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for machine/soundcard.h... no
checking for sys/soundcard.h... yes
checking for soundcard.h... no
checking for mmsystem.h... no
checking for _oss_ioctl in -lossaudio... no
checking for ALSA... yes
checking for malloc.h... yes
checking for sys/systeminfo.h... no
checking for sys/sysinfo.h... yes
checking for coff.h... no
checking for pty.h... yes
checking for sys/resource.h... yes
checking for sys/utsname.h... yes
checking for pwd.h... yes
checking for utmp.h... yes
checking for util.h... no
checking for sys/socket.h... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... yes
checking for pthread.h... yes
checking for malloc/malloc.h... no
checking for maillock.h... yes
checking for sys/un.h... yes
checking for dirent.h... yes
checking for execinfo.h... yes
checking for stdio_ext.h... yes
checking for getopt.h... yes
checking for sys/time.h... yes
checking for wchar.h... yes
checking for stdint.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for sys/select.h... yes
checking for sys/stat.h... (cached) yes
checking for utime.h... yes
checking if personality LINUX32 can be set... yes
checking if Linux sysinfo may be used... yes
checking for term.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether sys_siglist is declared... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for net/if.h... yes
checking for ifaddrs.h... yes
checking for net/if_dl.h... no
checking for struct ifreq.ifr_flags... yes
checking for struct ifreq.ifr_hwaddr... yes
checking for struct ifreq.ifr_netmask... yes
checking for struct ifreq.ifr_broadaddr... yes
checking for struct ifreq.ifr_addr... yes
checking for struct ifreq.ifr_addr.sa_len... no
checking whether gcc understands -MMD -MF... yes
checking for long file names... yes
checking for X... libraries , headers
checking whether malloc is Doug Lea style... yes
checking sys/vlimit.h usability... yes
checking sys/vlimit.h presence... yes
checking for sys/vlimit.h... yes
checking for data_start... yes
checking for getpagesize... yes
checking for working mmap... yes
checking for main in -lXbsd... no
checking for pthread library... -lpthread
checking whether X on GNU/Linux needs -b to link... no
checking for Xkb... yes
checking for XrmSetDatabase... yes
checking for XScreenResourceString... yes
checking for XScreenNumberOfScreen... yes
checking X11 version 6... 6 or newer
checking for RSVG... yes
checking for IMAGEMAGICK... no
checking for GTK... yes
checking whether GTK compiles... yes
configure: WARNING: Your version of Gtk+ will have problems with
       closing open displays.  This is no problem if you just use
       one display, but if you use more than one and close one of them
       Emacs may crash.
       See http://bugzilla.gnome.org/show_bug.cgi?id=85715
checking whether GTK_TYPE_FILE_SELECTION is declared... no
checking whether GTK_TYPE_HANDLE_BOX is declared... yes
checking for gtk_handle_box_new... yes
checking whether GTK_TYPE_TEAROFF_MENU_ITEM is declared... yes
checking for gtk_tearoff_menu_item_new... yes
checking for gtk_widget_get_window... yes
checking for gtk_widget_set_has_window... yes
checking for gtk_dialog_get_action_area... yes
checking for gtk_widget_get_sensitive... yes
checking for gtk_widget_get_mapped... yes
checking for gtk_adjustment_get_page_size... yes
checking for gtk_orientable_set_orientation... yes
checking for gtk_window_set_has_resize_grip... yes
checking for DBUS... yes
checking for dbus_watch_get_unix_fd... yes
checking for dbus_type_is_valid... yes
checking for dbus_validate_bus_name... yes
checking for dbus_validate_path... yes
checking for dbus_validate_interface... yes
checking for dbus_validate_member... yes
checking for GSETTINGS... yes
checking whether GSettings is in gio... yes
checking for GCONF... yes
checking for GOBJECT... yes
checking for lgetfilecon in -lselinux... yes
checking for LIBGNUTLS... yes
checking for LIBGNUTLS3... no
checking sys/inotify.h usability... yes
checking sys/inotify.h presence... yes
checking for sys/inotify.h... yes
checking for inotify_init1... yes
checking for FONTCONFIG... yes
checking for XFT... yes
checking for XRenderQueryExtension in -lXrender... yes
checking for X11/Xft/Xft.h... yes
checking for XftFontOpen in -lXft... yes
checking for FREETYPE... yes
checking for LIBOTF... yes
checking for OTF_get_variation_glyphs in -lotf... yes
checking for M17N_FLT... yes
checking X11/Xlib-xcb.h usability... no
checking X11/Xlib-xcb.h presence... no
checking for X11/Xlib-xcb.h... no
checking X11/xpm.h usability... yes
checking X11/xpm.h presence... yes
checking for X11/xpm.h... yes
checking for XpmReadFileToPixmap in -lXpm... yes
checking for XpmReturnAllocPixels preprocessor define... yes
checking for jpeglib 6b or later... -ljpeg
checking for library containing inflateEnd... -lz
checking for dladdr... yes
checking for png... yes
checking whether png_longjmp is declared... no
checking tiffio.h usability... yes
checking tiffio.h presence... yes
checking for tiffio.h... yes
checking for TIFFGetVersion in -ltiff... yes
checking gif_lib.h usability... yes
checking gif_lib.h presence... yes
checking for gif_lib.h... yes
checking for GifMakeMapObject in -lgif... no
checking for EGifPutExtensionLast in -lgif... yes
checking gpm.h usability... yes
checking gpm.h presence... yes
checking for gpm.h... yes
checking for Gpm_Open in -lgpm... yes
checking X11/SM/SMlib.h usability... yes
checking X11/SM/SMlib.h presence... yes
checking for X11/SM/SMlib.h... yes
checking for SmcOpenConnection in -lSM... yes
checking for XRANDR... yes
checking for XRRGetOutputPrimary... yes
checking for XRRGetScreenResourcesCurrent... yes
checking for XINERAMA... yes
checking for XFIXES... yes
checking for LIBXML2... yes
checking for htmlReadMemory in -lxml2... yes
checking whether netdb declares h_errno... yes
checking for maillock in -lmail... no
checking for maillock in -llockfile... yes
checking for accept4... yes
checking for fchdir... yes
checking for gethostname... yes
checking for getrusage... yes
checking for get_current_dir_name... yes
checking for lrand48... yes
checking for random... yes
checking for rint... yes
checking for select... yes
checking for getpagesize... (cached) yes
checking for setlocale... yes
checking for newlocale... yes
checking for getrlimit... yes
checking for setrlimit... yes
checking for shutdown... yes
checking for getaddrinfo... yes
checking for pthread_sigmask... (cached) yes
checking for strsignal... yes
checking for setitimer... yes
checking for sendto... yes
checking for recvfrom... yes
checking for getsockname... yes
checking for getpeername... yes
checking for getifaddrs... yes
checking for freeifaddrs... yes
checking for gai_strerror... yes
checking for sync... yes
checking for getpwent... yes
checking for endpwent... yes
checking for getgrent... yes
checking for endgrent... yes
checking for cfmakeraw... yes
checking for cfsetspeed... yes
checking for copysign... yes
checking for __executable_start... yes
checking for log2... yes
checking for aligned_alloc... no
checking for posix_memalign... yes
checking whether aligned_alloc is declared... no
checking for __builtin_unwind_init... yes
checking for _LARGEFILE_SOURCE value needed for large files... no
checking for grantpt... yes
checking for getpt... yes
checking for posix_openpt... yes
checking for library containing tputs... -ltinfo
checking for timerfd interface... yes
checking whether signals can be handled on alternate stack... yes
checking valgrind/valgrind.h usability... no
checking valgrind/valgrind.h presence... no
checking for valgrind/valgrind.h... no
checking for struct unipair.unicode... yes
checking for socket... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking arpa/inet.h usability... yes
checking arpa/inet.h presence... yes
checking for arpa/inet.h... yes
checking for pid_t... yes
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for snprintf... yes
checking whether GLib is linked in... yes
checking for nl_langinfo and CODESET... yes
checking for mbstate_t... yes
checking for signals via characters... yes
checking for _setjmp... yes
checking for sigsetjmp... yes
checking for usable FIONREAD... yes
checking for usable SIGIO... yes
checking for struct alignment... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for unsigned long long int... yes
checking whether byte ordering is bigendian... no
checking whether the preprocessor supports include_next... yes
checking whether system header files limit the line length... no
checking whether strtold conforms to C99... yes
checking if environ is properly declared... yes
checking for complete errno.h... yes
checking for mode_t... yes
checking whether fdatasync is declared... yes
checking for st_dm_mode in struct stat... no
checking whether strmode is declared... no
checking whether lstat correctly handles trailing slash... yes
checking for getopt.h... (cached) yes
checking for getopt_long_only... yes
checking whether getopt is POSIX compatible... yes
checking for working GNU getopt function... no
checking whether getenv is declared... yes
checking for C/C++ restrict keyword... __restrict
checking for struct timeval... yes
checking for wide-enough struct timeval.tv_sec member... yes
checking for long long int... yes
checking whether stdint.h conforms to C99... yes
checking whether memrchr is declared... yes
checking whether alarm is declared... yes
checking whether <sys/select.h> is self-contained... yes
checking for sigset_t... yes
checking for wchar_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for struct tm.tm_gmtoff... yes
checking whether strtoimax is declared... yes
checking whether strtoumax is declared... yes
checking whether stat file-mode macros are broken... no
checking for struct timespec in <time.h>... yes
checking whether the utimes function works... yes
checking for struct utimbuf... yes
checking type of array argument to getgroups... gid_t
checking whether getdtablesize is declared... yes
checking sys/acl.h usability... yes
checking sys/acl.h presence... yes
checking for sys/acl.h... yes
checking for library containing acl_get_file... -lacl
checking for acl_get_file... yes
checking for acl_get_fd... yes
checking for acl_set_file... yes
checking for acl_set_fd... yes
checking for acl_free... yes
checking for acl_from_mode... yes
checking for acl_from_text... yes
checking for acl_delete_def_file... yes
checking for acl_extended_file... yes
checking for acl_delete_fd_np... no
checking for acl_delete_file_np... no
checking for acl_copy_ext_native... no
checking for acl_create_entry_np... no
checking for acl_to_short_text... no
checking for acl_free_text... no
checking for working acl_get_file... yes
checking acl/libacl.h usability... yes
checking acl/libacl.h presence... yes
checking for acl/libacl.h... yes
checking for acl_entries... yes
checking for ACL_FIRST_ENTRY... yes
checking for ACL_TYPE_EXTENDED... no
checking for alloca as a compiler built-in... yes
checking byteswap.h usability... yes
checking byteswap.h presence... yes
checking for byteswap.h... yes
checking for library containing clock_gettime... -lrt
checking for clock_gettime... yes
checking for clock_settime... yes
checking whether dup2 works... yes
checking for library containing backtrace_symbols_fd... none required
checking whether fcntl handles F_DUPFD correctly... yes
checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check
checking for library containing fdatasync... none required
checking whether fdopendir is declared... yes
checking whether fdopendir works... yes
checking for __fpending... yes
checking whether __fpending is declared... yes
checking whether fstatat (..., 0) works... yes
checking for getloadavg... yes
checking sys/loadavg.h usability... no
checking sys/loadavg.h presence... no
checking for sys/loadavg.h... no
checking whether getloadavg is declared... yes
checking whether gettimeofday clobbers localtime buffer... no
checking for gettimeofday with POSIX signature... almost
checking for memrchr... yes
checking for working mktime... yes
checking whether signature of pselect conforms to POSIX... yes
checking whether pselect detects invalid fds... yes
checking whether pthread_sigmask returns error numbers... yes
checking whether pthread_sigmask unblocks signals correctly... guessing yes
checking whether readlink signature is correct... yes
checking whether readlink handles trailing slash correctly... yes
checking whether readlinkat signature is correct... yes
checking for sig2str... no
checking for volatile sig_atomic_t... yes
checking for sighandler_t... yes
checking for socklen_t... yes
checking for ssize_t... yes
checking for struct stat.st_atim.tv_nsec... yes
checking whether struct stat.st_atim is of type struct timespec... yes
checking for struct stat.st_birthtimespec.tv_nsec... no
checking for struct stat.st_birthtimensec... no
checking for struct stat.st_birthtim.tv_nsec... no
checking for working stdalign.h... no
checking for max_align_t... yes
checking whether NULL can be used in arbitrary expressions... yes
checking which flavor of printf attribute matches inttypes macros... system
checking for stpcpy... yes
checking whether strtoimax works... yes
checking whether symlink handles trailing slash correctly... yes
checking whether <sys/select.h> is self-contained... (cached) yes
checking for nlink_t... yes
checking whether localtime_r is declared... yes
checking whether localtime_r is compatible with its POSIX signature... yes
checking for timezone_t... no
checking for library containing timer_settime... -lrt
checking for timer_settime... yes
checking for variable-length arrays... yes
checking whether getdtablesize works... yes
checking whether gcc -std=gnu11 accepts -nopie... no

Configured for 'i686-pc-linux-gnu'.

  Where should the build process find the source code?    .
  What compiler should emacs be built with?               gcc -std=gnu11 -g3 -O2
  Should Emacs use the GNU version of malloc?             yes
      (Using Doug Lea's new malloc from the GNU C Library.)
  Should Emacs use a relocating allocator for buffers?    no
  Should Emacs use mmap(2) for buffer allocation?         no
  What window system should Emacs use?                    x11
  What toolkit should Emacs use?                          GTK3
  Where do we find X Windows header files?                Standard dirs
  Where do we find X Windows libraries?                   Standard dirs
  Does Emacs use -lXaw3d?                                 no
  Does Emacs use -lXpm?                                   yes
  Does Emacs use -ljpeg?                                  yes
  Does Emacs use -ltiff?                                  yes
  Does Emacs use a gif library?                           yes -lgif
  Does Emacs use a png library?                           yes -lpng12
  Does Emacs use -lrsvg-2?                                yes
  Does Emacs use cairo?                                   no
  Does Emacs use imagemagick?                             no
  Does Emacs support sound?                               yes
  Does Emacs use -lgpm?                                   yes
  Does Emacs use -ldbus?                                  yes
  Does Emacs use -lgconf?                                 yes
  Does Emacs use GSettings?                               yes
  Does Emacs use a file notification library?             yes -lglibc (inotify)
  Does Emacs use access control lists?                    yes -lacl
  Does Emacs use -lselinux?                               yes
  Does Emacs use -lgnutls?                                yes
  Does Emacs use -lxml2?                                  yes
  Does Emacs use -lfreetype?                              yes
  Does Emacs use -lm17n-flt?                              yes
  Does Emacs use -lotf?                                   yes
  Does Emacs use -lxft?                                   yes
  Does Emacs directly use zlib?                           yes
  Does Emacs have dynamic modules support?                no
  Does Emacs use toolkit scroll bars?                     yes
  Does Emacs support Xwidgets (requires gtk3)?            no


configure: creating ./config.status
config.status: creating ./doc/man/emacs.1
config.status: creating Makefile
config.status: creating lib/Makefile
config.status: creating lib-src/Makefile
config.status: creating oldXMenu/Makefile
config.status: creating doc/emacs/Makefile
config.status: creating doc/misc/Makefile
config.status: creating doc/lispintro/Makefile
config.status: creating doc/lispref/Makefile
config.status: creating src/Makefile
config.status: creating lwlib/Makefile
config.status: creating lisp/Makefile
config.status: creating leim/Makefile
config.status: creating nextstep/Makefile
config.status: creating nt/Makefile
config.status: creating test/Makefile
config.status: creating admin/charsets/Makefile
config.status: creating admin/unidata/Makefile
config.status: creating admin/grammars/Makefile
config.status: creating src/config.h
config.status: executing depfiles commands
config.status: executing src/epaths.h commands
make[1]: Entering directory `/home/redknight/git/emacs'
make[1]: Leaving directory `/home/redknight/git/emacs'
config.status: executing src/.gdbinit commands
config.status: executing doc/emacs/emacsver.texi commands
config.status: executing etc-refcards-emacsver.tex commands
Makefile built.
make -f Makefile
make[1]: Entering directory `/home/redknight/git/emacs'
make -C lib all
make[2]: Entering directory `/home/redknight/git/emacs/lib'
  GEN    alloca.h
  GEN    c++defs.h
  GEN    arg-nonnull.h
  GEN    warn-on-use.h
  GEN    dirent.h
  GEN    fcntl.h
  GEN    getopt.h
  GEN    inttypes.h
  GEN    signal.h
  GEN    stdalign.h
  GEN    stdio.h
  GEN    stdlib.h
  GEN    string.h
  GEN    sys/select.h
  GEN    sys/stat.h
  GEN    sys/time.h
  GEN    sys/types.h
  GEN    time.h
  GEN    unistd.h
make  all-am
make[3]: Entering directory `/home/redknight/git/emacs/lib'
  CC     acl-errno-valid.o
  CC     acl-internal.o
  CC     get-permissions.o
  CC     set-permissions.o
  CC     allocator.o
  CC     binary-io.o
  CC     c-ctype.o
  CC     c-strcasecmp.o
  CC     c-strncasecmp.o
  CC     careadlinkat.o
  CC     close-stream.o
  CC     count-one-bits.o
  CC     count-trailing-zeros.o
  CC     md5.o
  CC     sha1.o
  CC     sha256.o
  CC     sha512.o
  CC     dtoastr.o
  CC     dtotimespec.o
  CC     filemode.o
  CC     gettime.o
  CC     pipe2.o
  CC     qcopy-acl.o
  CC     stat-time.o
  CC     strftime.o
  CC     timespec.o
  CC     timespec-add.o
  CC     timespec-sub.o
  CC     u64.o
  CC     unistd.o
  CC     utimens.o
  CC     openat-die.o
  CC     save-cwd.o
  CC     fcntl.o
  CC     getopt.o
  CC     getopt1.o
  CC     sig2str.o
  CC     time_rz.o
  AR     libgnu.a
make[3]: Leaving directory `/home/redknight/git/emacs/lib'
make[2]: Leaving directory `/home/redknight/git/emacs/lib'
make -C lib-src all
make[2]: Entering directory `/home/redknight/git/emacs/lib-src'
  CC       regex.o
  CCLD     etags
  CCLD     ctags
  CCLD     emacsclient
  CCLD     ebrowse
  CCLD     profile
  CC       pop.o
  CCLD     movemail
  CCLD     hexl
  CCLD     update-game-score
  CCLD     make-docfile
make[2]: Leaving directory `/home/redknight/git/emacs/lib-src'
make -C src VCSWITNESS='$(srcdir)/../.git/logs/HEAD' all
make[2]: Entering directory `/home/redknight/git/emacs/src'
  GEN      lisp.mk
make[2]: Leaving directory `/home/redknight/git/emacs/src'
make[2]: Entering directory `/home/redknight/git/emacs/src'
  GEN      globals.h
  CC       vm-limit.o
In file included from vm-limit.c:21:0:
lisp.h:275:3: error: #error "USE_LSB_TAG not supported on this platform; please report this." "Try 'configure --with-wide-int' to work around the problem."
lisp.h:277:7: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘!’ token
lisp.h:281:3: error: #error "alignas not defined"
In file included from lisp.h:758:0,
		 from vm-limit.c:21:
globals.h:1050:29: error: expected declaration specifiers or ‘...’ before numeric constant
In file included from vm-limit.c:21:0:
lisp.h: In function ‘XSYMBOL’:
lisp.h:955:22: error: ‘lispsym’ undeclared (first use in this function)
lisp.h:955:22: note: each undeclared identifier is reported only once for each function it appears in
lisp.h: In function ‘make_lisp_symbol’:
lisp.h:1122:24: error: ‘lispsym’ undeclared (first use in this function)
lisp.h: In function ‘builtin_lisp_symbol’:
lisp.h:1130:28: error: ‘lispsym’ undeclared (first use in this function)
lisp.h: At top level:
lisp.h:1590:22: error: ‘lispsym’ undeclared here (not in a function)
lisp.h: In function ‘memclear’:
lisp.h:1598:3: error: static assertion failed: "verify (NIL_IS_ZERO)"
make[2]: *** [vm-limit.o] Error 1
make[2]: Leaving directory `/home/redknight/git/emacs/src'
make[1]: *** [src] Error 2
make[1]: Leaving directory `/home/redknight/git/emacs'
make: *** [default] Error 2
redknight@jetstar:~/git/emacs$
---------- End screen output 1 -----------

[-- Attachment #3: config1.log --]
[-- Type: text/plain, Size: 748649 bytes --]

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by GNU Emacs configure 25.1.50, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ./configure 

## --------- ##
## Platform. ##
## --------- ##

hostname = jetstar
uname -m = i686
uname -r = 3.2.0-4-686-pae
uname -s = Linux
uname -v = #1 SMP Debian 3.2.73-2+deb7u2

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /home/redknight/local/bin
PATH: /usr/local/texlive/2013/bin/i386-linux
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:3800: checking for xcrun
configure:3830: result: no
configure:3897: checking for GNU Make
configure:3947: result: make
configure:3973: checking for a BSD-compatible install
configure:4041: result: /usr/bin/install -c
configure:4052: checking whether build environment is sane
configure:4102: result: yes
configure:4243: checking for a thread-safe mkdir -p
configure:4282: result: /bin/mkdir -p
configure:4295: checking for gawk
configure:4325: result: no
configure:4295: checking for mawk
configure:4311: found /usr/bin/mawk
configure:4322: result: mawk
configure:4411: checking build system type
configure:4425: result: i686-pc-linux-gnu
configure:4445: checking host system type
configure:4458: result: i686-pc-linux-gnu
configure:5374: checking for gcc
configure:5390: found /usr/bin/gcc
configure:5401: result: gcc
configure:5432: checking for C compiler version
configure:5441: gcc --version >&5
gcc (Debian 4.7.2-5) 4.7.2
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:5452: $? = 0
configure:5441: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i486-linux-gnu/4.7/lto-wrapper
Target: i486-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.7.2-5' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --enable-targets=all --with-arch-32=i586 --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu
Thread model: posix
gcc version 4.7.2 (Debian 4.7.2-5) 
configure:5452: $? = 0
configure:5441: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:5452: $? = 4
configure:5441: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:5452: $? = 4
configure:5441: gcc -version >&5
gcc: error: unrecognized command line option '-version'
gcc: fatal error: no input files
compilation terminated.
configure:5452: $? = 4
configure:5472: checking whether the C compiler works
configure:5494: gcc    conftest.c  >&5
configure:5498: $? = 0
configure:5546: result: yes
configure:5549: checking for C compiler default output file name
configure:5551: result: a.out
configure:5557: checking for suffix of executables
configure:5564: gcc -o conftest    conftest.c  >&5
configure:5568: $? = 0
configure:5590: result: 
configure:5612: checking whether we are cross compiling
configure:5620: gcc -o conftest    conftest.c  >&5
configure:5624: $? = 0
configure:5631: ./conftest
configure:5635: $? = 0
configure:5650: result: no
configure:5655: checking for suffix of object files
configure:5677: gcc -c   conftest.c >&5
configure:5681: $? = 0
configure:5702: result: o
configure:5706: checking whether we are using the GNU C compiler
configure:5725: gcc -c   conftest.c >&5
configure:5725: $? = 0
configure:5734: result: yes
configure:5743: checking whether gcc accepts -g
configure:5763: gcc -c -g  conftest.c >&5
configure:5763: $? = 0
configure:5804: result: yes
configure:5821: checking for gcc option to enable C11 features
configure:6021: gcc  -c -g -O2  conftest.c >&5
conftest.c:62:29: error: expected ';', ',' or ')' before 'text'
conftest.c:136:29: error: 'syntax' undeclared here (not in a function)
conftest.c:136:29: error: expected ',' or ';' before 'error'
conftest.c: In function 'main':
conftest.c:163:18: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar'
conftest.c:163:18: error: 'newvar' undeclared (first use in this function)
conftest.c:163:18: note: each undeclared identifier is reported only once for each function it appears in
conftest.c:173:3: error: 'for' loop initial declarations are only allowed in C99 mode
conftest.c:173:3: note: use option -std=c99 or -std=gnu99 to compile your code
configure:6021: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| /* end confdefs.h.  */
| #include <stdarg.h>
| #include <stdbool.h>
| #include <stdlib.h>
| #include <wchar.h>
| #include <stdio.h>
| 
| // Check varargs macros.  These examples are taken from C99 6.10.3.5.
| #define debug(...) fprintf (stderr, __VA_ARGS__)
| #define showlist(...) puts (#__VA_ARGS__)
| #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__))
| static void
| test_varargs_macros (void)
| {
|   int x = 1234;
|   int y = 5678;
|   debug ("Flag");
|   debug ("X = %d\n", x);
|   showlist (The first, second, and third items.);
|   report (x>y, "x is %d but y is %d", x, y);
| }
| 
| // Check long long types.
| #define BIG64 18446744073709551615ull
| #define BIG32 4294967295ul
| #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0)
| #if !BIG_OK
|   your preprocessor is broken;
| #endif
| #if BIG_OK
| #else
|   your preprocessor is broken;
| #endif
| static long long int bignum = -9223372036854775807LL;
| static unsigned long long int ubignum = BIG64;
| 
| struct incomplete_array
| {
|   int datasize;
|   double data[];
| };
| 
| struct named_init {
|   int number;
|   const wchar_t *name;
|   double average;
| };
| 
| typedef const char *ccp;
| 
| static inline int
| test_restrict (ccp restrict text)
| {
|   // See if C++-style comments work.
|   // Iterate through items via the restricted pointer.
|   // Also check for declarations in for loops.
|   for (unsigned int i = 0; *(text+i) != '\0'; ++i)
|     continue;
|   return 0;
| }
| 
| // Check varargs and va_copy.
| static bool
| test_varargs (const char *format, ...)
| {
|   va_list args;
|   va_start (args, format);
|   va_list args_copy;
|   va_copy (args_copy, args);
| 
|   const char *str = "";
|   int number = 0;
|   float fnumber = 0;
| 
|   while (*format)
|     {
|       switch (*format++)
| 	{
| 	case 's': // string
| 	  str = va_arg (args_copy, const char *);
| 	  break;
| 	case 'd': // int
| 	  number = va_arg (args_copy, int);
| 	  break;
| 	case 'f': // float
| 	  fnumber = va_arg (args_copy, double);
| 	  break;
| 	default:
| 	  break;
| 	}
|     }
|   va_end (args_copy);
|   va_end (args);
| 
|   return *str && number && fnumber;
| }
| // Check _Alignas.
| char _Alignas (double) aligned_as_double;
| char _Alignas (0) no_special_alignment;
| extern char aligned_as_int;
| char _Alignas (0) _Alignas (int) aligned_as_int;
| 
| // Check _Alignof.
| enum
| {
|   int_alignment = _Alignof (int),
|   int_array_alignment = _Alignof (int[100]),
|   char_alignment = _Alignof (char)
| };
| _Static_assert (0 < -_Alignof (int), "_Alignof is signed");
| 
| // Check _Noreturn.
| int _Noreturn does_not_return (void) { for (;;) continue; }
| 
| // Check _Static_assert.
| struct test_static_assert
| {
|   int x;
|   _Static_assert (sizeof (int) <= sizeof (long int),
|                   "_Static_assert does not work in struct");
|   long int y;
| };
| 
| // Check UTF-8 literals.
| #define u8 syntax error!
| char const utf8_literal[] = u8"happens to be ASCII" "another string";
| 
| // Check duplicate typedefs.
| typedef long *long_ptr;
| typedef long int *long_ptr;
| typedef long_ptr long_ptr;
| 
| // Anonymous structures and unions -- taken from C11 6.7.2.1 Example 1.
| struct anonymous
| {
|   union {
|     struct { int i; int j; };
|     struct { int k; long int l; } w;
|   };
|   int m;
| } v1;
| 
| int
| main ()
| {
| 
|   // Check bool.
|   _Bool success = false;
| 
|   // Check restrict.
|   if (test_restrict ("String literal") == 0)
|     success = true;
|   char *restrict newvar = "Another string";
| 
|   // Check varargs.
|   success &= test_varargs ("s, d' f .", "string", 65, 34.234);
|   test_varargs_macros ();
| 
|   // Check flexible array members.
|   struct incomplete_array *ia =
|     malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
|   ia->datasize = 10;
|   for (int i = 0; i < ia->datasize; ++i)
|     ia->data[i] = i * 1.234;
| 
|   // Check named initializers.
|   struct named_init ni = {
|     .number = 34,
|     .name = L"Test wide string",
|     .average = 543.34343,
|   };
| 
|   ni.number = 58;
| 
|   int dynamic_array[ni.number];
|   dynamic_array[ni.number - 1] = 543;
| 
|   // work around unused variable warnings
|   return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x'
| 	  || dynamic_array[ni.number - 1] != 543);
| 
|   v1.i = 2;
|   v1.w.k = 5;
|   _Static_assert (&v1.i == &v1.w.k, "Anonymous union alignment botch");
| 
|   ;
|   return 0;
| }
configure:6021: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:6021: $? = 0
configure:6043: result: -std=gnu11
configure:6252: checking for style of include used by make
configure:6280: result: GNU
configure:6306: checking dependency style of gcc -std=gnu11
configure:6417: result: gcc3
configure:6484: checking whether gcc -std=gnu11 and cc understand -c and -o together
configure:6515: gcc -std=gnu11 -c conftest.c -o conftest2.o >&5
configure:6519: $? = 0
configure:6525: gcc -std=gnu11 -c conftest.c -o conftest2.o >&5
configure:6529: $? = 0
configure:6540: cc -c conftest.c >&5
configure:6544: $? = 0
configure:6552: cc -c conftest.c -o conftest2.o >&5
configure:6556: $? = 0
configure:6562: cc -c conftest.c -o conftest2.o >&5
configure:6566: $? = 0
configure:6584: result: yes
configure:6645: checking for putenv
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for tzset
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for fchmod
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for readlinkat
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for faccessat
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for fcntl
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for fdopendir
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for fstatat
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for fsync
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for gettimeofday
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for nanotime
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
/tmp/ccboF8tO.o: In function `main':
/home/redknight/git/emacs/conftest.c:56: undefined reference to `nanotime'
collect2: error: ld returned 1 exit status
configure:6645: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| /* end confdefs.h.  */
| /* Define nanotime to an innocuous variant, in case <limits.h> declares nanotime.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define nanotime innocuous_nanotime
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char nanotime (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef nanotime
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char nanotime ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_nanotime || defined __stub___nanotime
| choke me
| #endif
| 
| int
| main ()
| {
| return nanotime ();
|   ;
|   return 0;
| }
configure:6645: result: no
configure:6645: checking for lstat
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for mkostemp
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for pipe2
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for pselect
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for readlink
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for strtoimax
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for strtoumax
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for symlink
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for localtime_r
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for timegm
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for futimes
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for futimesat
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for futimens
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for utimensat
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for lutimes
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for getdtablesize
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for secure_getenv
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
/tmp/ccznAFIw.o: In function `main':
/home/redknight/git/emacs/conftest.c:72: undefined reference to `secure_getenv'
collect2: error: ld returned 1 exit status
configure:6645: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| /* end confdefs.h.  */
| /* Define secure_getenv to an innocuous variant, in case <limits.h> declares secure_getenv.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define secure_getenv innocuous_secure_getenv
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char secure_getenv (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef secure_getenv
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char secure_getenv ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_secure_getenv || defined __stub___secure_getenv
| choke me
| #endif
| 
| int
| main ()
| {
| return secure_getenv ();
|   ;
|   return 0;
| }
configure:6645: result: no
configure:6665: checking how to run the C preprocessor
configure:6696: gcc -std=gnu11 -E  conftest.c
configure:6696: $? = 0
configure:6710: gcc -std=gnu11 -E  conftest.c
conftest.c:38:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:6710: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:6735: result: gcc -std=gnu11 -E
configure:6755: gcc -std=gnu11 -E  conftest.c
configure:6755: $? = 0
configure:6769: gcc -std=gnu11 -E  conftest.c
conftest.c:38:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:6769: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:6798: checking for grep that handles long lines and -e
configure:6856: result: /bin/grep
configure:6861: checking for egrep
configure:6923: result: /bin/grep -E
configure:6928: checking for ANSI C header files
configure:6948: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:6948: $? = 0
configure:7021: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:7021: $? = 0
configure:7021: ./conftest
configure:7021: $? = 0
configure:7032: result: yes
configure:7045: checking for sys/types.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for sys/stat.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for stdlib.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for string.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for memory.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for strings.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for inttypes.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for stdint.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for unistd.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7058: checking minix/config.h usability
configure:7058: gcc -std=gnu11 -c -g -O2  conftest.c >&5
conftest.c:81:26: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:7058: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:7058: result: no
configure:7058: checking minix/config.h presence
configure:7058: gcc -std=gnu11 -E  conftest.c
conftest.c:48:26: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:7058: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <minix/config.h>
configure:7058: result: no
configure:7058: checking for minix/config.h
configure:7058: result: no
configure:7082: checking whether it is safe to define __EXTENSIONS__
configure:7100: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7100: $? = 0
configure:7107: result: yes
configure:7124: checking whether _XOPEN_SOURCE should be defined
configure:7143: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7143: $? = 0
configure:7167: result: no
configure:7182: checking for Minix Amsterdam compiler
configure:7206: result: no
configure:7266: checking for ar
configure:7282: found /usr/bin/ar
configure:7293: result: ar
configure:7319: checking the archiver (ar) interface
configure:7329: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7329: $? = 0
configure:7331: ar cru libconftest.a conftest.o >&5
configure:7334: $? = 0
configure:7357: result: ar
configure:7422: checking for ar
configure:7449: result: ar
configure:7524: checking for ranlib
configure:7540: found /usr/bin/ranlib
configure:7551: result: ranlib
configure:7584: checking for special C compiler options needed for large files
configure:7629: result: no
configure:7635: checking for _FILE_OFFSET_BITS value needed for large files
configure:7660: gcc -std=gnu11 -c -g -O2  conftest.c >&5
conftest.c:61:3: warning: left shift count >= width of type [enabled by default]
conftest.c:61:3: warning: left shift count >= width of type [enabled by default]
conftest.c:62:24: warning: left shift count >= width of type [enabled by default]
conftest.c:62:24: warning: left shift count >= width of type [enabled by default]
conftest.c:61:7: error: variably modified 'off_t_is_large' at file scope
configure:7660: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|  /* Check that off_t can represent 2**63 - 1 correctly.
|     We can't simply define LARGE_OFF_T to be 9223372036854775807,
|     since some C++ compilers masquerading as C compilers
|     incorrectly reject 9223372036854775807.  */
| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
|   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
|                        && LARGE_OFF_T % 2147483647 == 1)
|                       ? 1 : -1];
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:7684: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7684: $? = 0
configure:7692: result: 64
configure:7922: checking whether gcc -std=gnu11 accepts -g3 -O2
configure:7938: gcc -std=gnu11 -o conftest -g3 -O2   conftest.c  >&5
configure:7938: $? = 0
configure:7946: result: yes
configure:8010: checking whether the compiler is clang
configure:8030: gcc -std=gnu11 -c -g3 -O2  conftest.c >&5
conftest.c:59:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before string constant
configure:8030: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| /* end confdefs.h.  */
| 
| 	  #ifndef __clang__
| 	    error "not clang";
| 	  #endif
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:8037: result: no
configure:9224: checking whether make supports nested variables
configure:9241: result: yes
configure:9263: checking whether ln -s works for files in the same directory
configure:9288: result: yes
configure:9305: checking for install-info
configure:9323: found /home/redknight/local/bin/install-info
configure:9336: result: /home/redknight/local/bin/install-info
configure:9346: checking for gzip
configure:9364: found /bin/gzip
configure:9376: result: /bin/gzip
configure:9391: checking for paxctl
configure:9424: result: no
configure:9454: checking for setfattr
configure:9466: result: no
configure:9542: checking for -znocombreloc
configure:9555: gcc -std=gnu11 -o conftest -g3 -O2   -Wl,-znocombreloc conftest.c  >&5
configure:9555: $? = 0
configure:9556: result: yes
configure:9568: checking whether addresses are sanitized
configure:9591: gcc -std=gnu11 -c -g3 -O2  conftest.c >&5
conftest.c:62:11: error: expected '=', ',', ';', 'asm' or '__attribute__' before string constant
configure:9591: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| /* end confdefs.h.  */
| #ifndef __has_feature
| 	  #define __has_feature(f) 0
| 	  #endif
| 	  #if defined __SANITIZE_ADDRESS__ || __has_feature (address_sanitizer)
| 	  #else
| 	   error "Addresses are not sanitized.";
| 	  #endif
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:9598: result: no
configure:9778: checking for library containing sqrt
configure:9809: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c  >&5 
conftest.c:64:6: warning: conflicting types for built-in function 'sqrt' [enabled by default]
/tmp/ccNOTIRz.o: In function `main':
/home/redknight/git/emacs/conftest.c:68: undefined reference to `sqrt'
collect2: error: ld returned 1 exit status
configure:9809: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char sqrt ();
| int
| main ()
| {
| return sqrt ();
|   ;
|   return 0;
| }
configure:9809: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c -lm   >&5 
conftest.c:64:6: warning: conflicting types for built-in function 'sqrt' [enabled by default]
configure:9809: $? = 0
configure:9826: result: -lm
configure:9937: checking for pkg-config
configure:9955: found /usr/bin/pkg-config
configure:9967: result: /usr/bin/pkg-config
configure:9992: checking pkg-config is at least version 0.9.0
configure:9995: result: yes
configure:10012: checking for machine/soundcard.h
configure:10012: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:65:31: fatal error: machine/soundcard.h: No such file or directory
compilation terminated.
configure:10012: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| /* end confdefs.h.  */
| 
|     #ifdef __MINGW32__
|     #define WIN32_LEAN_AND_MEAN
|     #include <windows.h>
|     #endif
| 
| 
| #include <machine/soundcard.h>
configure:10012: result: no
configure:10012: checking for sys/soundcard.h
configure:10012: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10012: $? = 0
configure:10012: result: yes
configure:10012: checking for soundcard.h
configure:10012: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:66:23: fatal error: soundcard.h: No such file or directory
compilation terminated.
configure:10012: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| /* end confdefs.h.  */
| 
|     #ifdef __MINGW32__
|     #define WIN32_LEAN_AND_MEAN
|     #include <windows.h>
|     #endif
| 
| 
| #include <soundcard.h>
configure:10012: result: no
configure:10012: checking for mmsystem.h
configure:10012: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:66:22: fatal error: mmsystem.h: No such file or directory
compilation terminated.
configure:10012: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| /* end confdefs.h.  */
| 
|     #ifdef __MINGW32__
|     #define WIN32_LEAN_AND_MEAN
|     #include <windows.h>
|     #endif
| 
| 
| #include <mmsystem.h>
configure:10012: result: no
configure:10033: checking for _oss_ioctl in -lossaudio
configure:10058: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c -lossaudio   >&5 
/usr/bin/ld: cannot find -lossaudio
collect2: error: ld returned 1 exit status
configure:10058: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char _oss_ioctl ();
| int
| main ()
| {
| return _oss_ioctl ();
|   ;
|   return 0;
| }
configure:10067: result: no
configure:10085: checking for ALSA
configure:10092: $PKG_CONFIG --exists --print-errors "$ALSA_MODULES"
configure:10095: $? = 0
configure:10109: $PKG_CONFIG --exists --print-errors "$ALSA_MODULES"
configure:10112: $? = 0
configure:10150: result: yes
configure:10171: gcc -std=gnu11 -c -I/usr/include/alsa   -g3 -O2    conftest.c >&5
configure:10171: $? = 0
configure:10232: checking for malloc.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for sys/systeminfo.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:96:28: fatal error: sys/systeminfo.h: No such file or directory
compilation terminated.
configure:10232: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| 
| #include <sys/systeminfo.h>
configure:10232: result: no
configure:10232: checking for sys/sysinfo.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for coff.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:97:18: fatal error: coff.h: No such file or directory
compilation terminated.
configure:10232: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| 
| #include <coff.h>
configure:10232: result: no
configure:10232: checking for pty.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for sys/resource.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for sys/utsname.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for pwd.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for utmp.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for util.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:102:18: fatal error: util.h: No such file or directory
compilation terminated.
configure:10232: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| 
| #include <util.h>
configure:10232: result: no
configure:10232: checking for sys/socket.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for stdlib.h
configure:10232: result: yes
configure:10232: checking for unistd.h
configure:10232: result: yes
configure:10232: checking for sys/param.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for pthread.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for malloc/malloc.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:107:27: fatal error: malloc/malloc.h: No such file or directory
compilation terminated.
configure:10232: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| 
| #include <malloc/malloc.h>
configure:10232: result: no
configure:10232: checking for maillock.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for sys/un.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for dirent.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for execinfo.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for stdio_ext.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for getopt.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for sys/time.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for wchar.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for stdint.h
configure:10232: result: yes
configure:10232: checking for inttypes.h
configure:10232: result: yes
configure:10232: checking for sys/select.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for sys/stat.h
configure:10232: result: yes
configure:10232: checking for utime.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10265: checking if personality LINUX32 can be set
configure:10278: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10278: $? = 0
configure:10284: result: yes
configure:10297: checking if Linux sysinfo may be used
configure:10312: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10312: $? = 0
configure:10318: result: yes
configure:10335: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10335: $? = 0
configure:10346: checking for term.h
configure:10346: gcc -std=gnu11 -E    conftest.c
configure:10346: $? = 0
configure:10346: result: yes
configure:10356: checking whether time.h and sys/time.h may both be included
configure:10376: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10376: $? = 0
configure:10383: result: yes
configure:10391: checking whether sys_siglist is declared
configure:10391: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10391: $? = 0
configure:10391: result: yes
configure:10420: checking for sys/wait.h that is POSIX.1 compatible
configure:10446: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10446: $? = 0
configure:10453: result: yes
configure:10467: checking for net/if.h
configure:10467: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10467: $? = 0
configure:10467: result: yes
configure:10483: checking for ifaddrs.h
configure:10483: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10483: $? = 0
configure:10483: result: yes
configure:10499: checking for net/if_dl.h
configure:10499: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:132:23: fatal error: net/if_dl.h: No such file or directory
compilation terminated.
configure:10499: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| 
| #include <net/if_dl.h>
configure:10499: result: no
configure:10514: checking for struct ifreq.ifr_flags
configure:10514: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10514: $? = 0
configure:10514: result: yes
configure:10530: checking for struct ifreq.ifr_hwaddr
configure:10530: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:140:5: error: used struct type value where scalar is required
configure:10530: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| #if HAVE_NET_IF_H
| #include <net/if.h>
| #endif
| 
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (ac_aggr.ifr_hwaddr)
| return 0;
|   ;
|   return 0;
| }
configure:10530: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10530: $? = 0
configure:10530: result: yes
configure:10546: checking for struct ifreq.ifr_netmask
configure:10546: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:141:5: error: used struct type value where scalar is required
configure:10546: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| #if HAVE_NET_IF_H
| #include <net/if.h>
| #endif
| 
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (ac_aggr.ifr_netmask)
| return 0;
|   ;
|   return 0;
| }
configure:10546: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10546: $? = 0
configure:10546: result: yes
configure:10562: checking for struct ifreq.ifr_broadaddr
configure:10562: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:142:5: error: used struct type value where scalar is required
configure:10562: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| #if HAVE_NET_IF_H
| #include <net/if.h>
| #endif
| 
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (ac_aggr.ifr_broadaddr)
| return 0;
|   ;
|   return 0;
| }
configure:10562: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10562: $? = 0
configure:10562: result: yes
configure:10578: checking for struct ifreq.ifr_addr
configure:10578: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:143:5: error: used struct type value where scalar is required
configure:10578: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| #if HAVE_NET_IF_H
| #include <net/if.h>
| #endif
| 
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (ac_aggr.ifr_addr)
| return 0;
|   ;
|   return 0;
| }
configure:10578: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10578: $? = 0
configure:10578: result: yes
configure:10594: checking for struct ifreq.ifr_addr.sa_len
configure:10594: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:144:21: error: 'struct sockaddr' has no member named 'sa_len'
configure:10594: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| #if HAVE_NET_IF_H
| #include <net/if.h>
| #endif
| 
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (ac_aggr.ifr_addr.sa_len)
| return 0;
|   ;
|   return 0;
| }
configure:10594: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:144:28: error: 'struct sockaddr' has no member named 'sa_len'
configure:10594: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| #if HAVE_NET_IF_H
| #include <net/if.h>
| #endif
| 
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (sizeof ac_aggr.ifr_addr.sa_len)
| return 0;
|   ;
|   return 0;
| }
configure:10594: result: no
configure:10616: checking whether gcc understands -MMD -MF
configure:10631: gcc -std=gnu11 -c -g3 -O2 -MMD -MF deps.d -MP    conftest.c >&5
configure:10631: $? = 0
configure:10640: result: yes
configure:10648: checking for long file names
configure:10680: result: yes
configure:10697: checking for X
configure:10836: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c -lX11  >&5 
configure:10836: $? = 0
configure:10886: result: libraries , headers 
configure:11585: checking whether malloc is Doug Lea style
configure:11606: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c  >&5 
configure:11606: $? = 0
configure:11613: result: yes
configure:11657: checking sys/vlimit.h usability
configure:11657: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:11657: $? = 0
configure:11657: result: yes
configure:11657: checking sys/vlimit.h presence
configure:11657: gcc -std=gnu11 -E    conftest.c
configure:11657: $? = 0
configure:11657: result: yes
configure:11657: checking for sys/vlimit.h
configure:11657: result: yes
configure:11667: checking for data_start
configure:11683: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c  >&5 
configure:11683: $? = 0
configure:11691: result: yes
configure:11747: checking for getpagesize
configure:11747: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c  >&5 
configure:11747: $? = 0
configure:11747: result: yes
configure:11756: checking for working mmap
configure:11903: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c  >&5 
configure:11903: $? = 0
configure:11903: ./conftest
configure:11903: $? = 0
configure:11913: result: yes
configure:11931: checking for main in -lXbsd
configure:11950: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c -lXbsd    >&5 
/usr/bin/ld: cannot find -lXbsd
collect2: error: ld returned 1 exit status
configure:11950: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| /* end confdefs.h.  */
| 
| 
| int
| main ()
| {
| return main ();
|   ;
|   return 0;
| }
configure:11959: result: no
configure:11971: checking for pthread library
configure:12007: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c   >&5 
/tmp/cc2q0Evl.o: In function `main':
/home/redknight/git/emacs/conftest.c:115: undefined reference to `pthread_create'
/home/redknight/git/emacs/conftest.c:116: undefined reference to `pthread_sigmask'
/home/redknight/git/emacs/conftest.c:117: undefined reference to `pthread_kill'
collect2: error: ld returned 1 exit status
configure:12007: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| /* end confdefs.h.  */
| #include <pthread.h>
| 	      #include <signal.h>
| 	      sigset_t old_mask, new_mask;
| 	      void noop (void) {}
| int
| main ()
| {
| pthread_t th = pthread_self ();
| 	      int status = 0;
| 	      status += pthread_create (&th, 0, 0, 0);
| 	      status += pthread_sigmask (SIG_BLOCK, &new_mask, &old_mask);
| 	      status += pthread_kill (th, 0);
| 	      #if ! (defined SYSTEM_MALLOC || defined HYBRID_MALLOC 		     || defined DOUG_LEA_MALLOC)
| 	      /* Test for pthread_atfork only if gmalloc uses it,
| 		 as older-style hosts like MirBSD 10 lack it.  */
| 	      status += pthread_atfork (noop, noop, noop);
| 	      #endif
| 	      return status;
|   ;
|   return 0;
| }
configure:12007: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c   -lpthread >&5 
configure:12007: $? = 0
configure:12018: result: -lpthread
configure:12109: checking whether X on GNU/Linux needs -b to link
configure:12122: gcc -std=gnu11 -o conftest  -g3 -O2       conftest.c -lX11   >&5 
conftest.c: In function 'main':
conftest.c:111:1: warning: implicit declaration of function 'XOpenDisplay' [-Wimplicit-function-declaration]
configure:12122: $? = 0
configure:12166: result: no
configure:12173: checking for Xkb
configure:12187: gcc -std=gnu11 -o conftest  -g3 -O2       conftest.c -lX11   >&5 
configure:12187: $? = 0
configure:12194: result: yes
configure:12206: checking for XrmSetDatabase
configure:12206: gcc -std=gnu11 -o conftest  -g3 -O2       conftest.c -lX11   >&5 
configure:12206: $? = 0
configure:12206: result: yes
configure:12206: checking for XScreenResourceString
configure:12206: gcc -std=gnu11 -o conftest  -g3 -O2       conftest.c -lX11   >&5 
configure:12206: $? = 0
configure:12206: result: yes
configure:12206: checking for XScreenNumberOfScreen
configure:12206: gcc -std=gnu11 -o conftest  -g3 -O2       conftest.c -lX11   >&5 
configure:12206: $? = 0
configure:12206: result: yes
configure:12218: checking X11 version 6
configure:12237: gcc -std=gnu11 -o conftest  -g3 -O2       conftest.c -lX11   >&5 
configure:12237: $? = 0
configure:12247: result: 6 or newer
configure:12280: checking for RSVG
configure:12287: $PKG_CONFIG --exists --print-errors "$RSVG_MODULE"
configure:12290: $? = 0
configure:12304: $PKG_CONFIG --exists --print-errors "$RSVG_MODULE"
configure:12307: $? = 0
configure:12345: result: yes
configure:12374: checking for IMAGEMAGICK
configure:12381: $PKG_CONFIG --exists --print-errors "$IMAGEMAGICK_MODULE"
Package Wand was not found in the pkg-config search path.
Perhaps you should add the directory containing `Wand.pc'
to the PKG_CONFIG_PATH environment variable
No package 'Wand' found
Package Wand was not found in the pkg-config search path.
Perhaps you should add the directory containing `Wand.pc'
to the PKG_CONFIG_PATH environment variable
No package 'Wand' found
configure:12384: $? = 1
configure:12398: $PKG_CONFIG --exists --print-errors "$IMAGEMAGICK_MODULE"
Package Wand was not found in the pkg-config search path.
Perhaps you should add the directory containing `Wand.pc'
to the PKG_CONFIG_PATH environment variable
No package 'Wand' found
Package Wand was not found in the pkg-config search path.
Perhaps you should add the directory containing `Wand.pc'
to the PKG_CONFIG_PATH environment variable
No package 'Wand' found
configure:12401: $? = 1
configure:12415: result: no
No package 'Wand' found
No package 'Wand' found
configure:12487: checking for GTK
configure:12494: $PKG_CONFIG --exists --print-errors "$GTK_MODULES"
configure:12497: $? = 0
configure:12511: $PKG_CONFIG --exists --print-errors "$GTK_MODULES"
configure:12514: $? = 0
configure:12552: result: yes
configure:12675: checking whether GTK compiles
configure:12703: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12703: $? = 0
configure:12708: result: yes
configure:12728: WARNING: Your version of Gtk+ will have problems with
       closing open displays.  This is no problem if you just use
       one display, but if you use more than one and close one of them
       Emacs may crash.
       See http://bugzilla.gnome.org/show_bug.cgi?id=85715
configure:12748: checking whether GTK_TYPE_FILE_SELECTION is declared
configure:12748: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12       conftest.c >&5
conftest.c: In function 'main':
conftest.c:161:10: error: 'GTK_TYPE_FILE_SELECTION' undeclared (first use in this function)
conftest.c:161:10: note: each undeclared identifier is reported only once for each function it appears in
configure:12748: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <gtk/gtk.h>
| 
| int
| main ()
| {
| #ifndef GTK_TYPE_FILE_SELECTION
| #ifdef __cplusplus
|   (void) GTK_TYPE_FILE_SELECTION;
| #else
|   (void) GTK_TYPE_FILE_SELECTION;
| #endif
| #endif
| 
|   ;
|   return 0;
| }
configure:12748: result: no
configure:12772: checking whether GTK_TYPE_HANDLE_BOX is declared
configure:12772: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12       conftest.c >&5
configure:12772: $? = 0
configure:12772: result: yes
configure:12784: checking for gtk_handle_box_new
configure:12784: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12784: $? = 0
configure:12784: result: yes
configure:12796: checking whether GTK_TYPE_TEAROFF_MENU_ITEM is declared
configure:12796: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12       conftest.c >&5
configure:12796: $? = 0
configure:12796: result: yes
configure:12808: checking for gtk_tearoff_menu_item_new
configure:12808: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12808: $? = 0
configure:12808: result: yes
configure:12826: checking for gtk_widget_get_window
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_widget_set_has_window
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_dialog_get_action_area
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_widget_get_sensitive
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_widget_get_mapped
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_adjustment_get_page_size
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_orientable_set_orientation
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_window_set_has_resize_grip
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12939: checking for DBUS
configure:12946: $PKG_CONFIG --exists --print-errors "dbus-1 >= 1.0"
configure:12949: $? = 0
configure:12963: $PKG_CONFIG --exists --print-errors "dbus-1 >= 1.0"
configure:12966: $? = 0
configure:13004: result: yes
configure:13023: checking for dbus_watch_get_unix_fd
configure:13023: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ldbus-1   >&5 
configure:13023: $? = 0
configure:13023: result: yes
configure:13023: checking for dbus_type_is_valid
configure:13023: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ldbus-1   >&5 
configure:13023: $? = 0
configure:13023: result: yes
configure:13023: checking for dbus_validate_bus_name
configure:13023: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ldbus-1   >&5 
configure:13023: $? = 0
configure:13023: result: yes
configure:13023: checking for dbus_validate_path
configure:13023: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ldbus-1   >&5 
configure:13023: $? = 0
configure:13023: result: yes
configure:13023: checking for dbus_validate_interface
configure:13023: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ldbus-1   >&5 
configure:13023: $? = 0
configure:13023: result: yes
configure:13023: checking for dbus_validate_member
configure:13023: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ldbus-1   >&5 
configure:13023: $? = 0
configure:13023: result: yes
configure:13044: checking for GSETTINGS
configure:13051: $PKG_CONFIG --exists --print-errors "gio-2.0 >= 2.26"
configure:13054: $? = 0
configure:13068: $PKG_CONFIG --exists --print-errors "gio-2.0 >= 2.26"
configure:13071: $? = 0
configure:13109: result: yes
configure:13119: checking whether GSettings is in gio
configure:13138: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include         conftest.c -lX11   -lgio-2.0 -lgobject-2.0 -lglib-2.0   >&5 
configure:13138: $? = 0
configure:13145: result: yes
configure:13164: checking for GCONF
configure:13171: $PKG_CONFIG --exists --print-errors "gconf-2.0 >= 2.13"
configure:13174: $? = 0
configure:13188: $PKG_CONFIG --exists --print-errors "gconf-2.0 >= 2.13"
configure:13191: $? = 0
configure:13229: result: yes
configure:13246: checking for GOBJECT
configure:13253: $PKG_CONFIG --exists --print-errors "gobject-2.0 >= 2.0"
configure:13256: $? = 0
configure:13270: $PKG_CONFIG --exists --print-errors "gobject-2.0 >= 2.0"
configure:13273: $? = 0
configure:13311: result: yes
configure:13334: checking for lgetfilecon in -lselinux
configure:13359: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lselinux  -lX11   >&5 
configure:13359: $? = 0
configure:13368: result: yes
configure:13389: checking for LIBGNUTLS
configure:13396: $PKG_CONFIG --exists --print-errors "gnutls >= 2.6.6"
configure:13399: $? = 0
configure:13413: $PKG_CONFIG --exists --print-errors "gnutls >= 2.6.6"
configure:13416: $? = 0
configure:13454: result: yes
configure:13465: checking for LIBGNUTLS3
configure:13472: $PKG_CONFIG --exists --print-errors "gnutls >= 3.0.0"
Requested 'gnutls >= 3.0.0' but version of GnuTLS is 2.12.20
You may find new versions of GnuTLS at http://www.gnu.org/software/gnutls/
configure:13475: $? = 1
configure:13489: $PKG_CONFIG --exists --print-errors "gnutls >= 3.0.0"
Requested 'gnutls >= 3.0.0' but version of GnuTLS is 2.12.20
You may find new versions of GnuTLS at http://www.gnu.org/software/gnutls/
configure:13492: $? = 1
configure:13506: result: no
Requested 'gnutls >= 3.0.0' but version of GnuTLS is 2.12.20
You may find new versions of GnuTLS at http://www.gnu.org/software/gnutls/
configure:13575: checking sys/inotify.h usability
configure:13575: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:13575: $? = 0
configure:13575: result: yes
configure:13575: checking sys/inotify.h presence
configure:13575: gcc -std=gnu11 -E     conftest.c
configure:13575: $? = 0
configure:13575: result: yes
configure:13575: checking for sys/inotify.h
configure:13575: result: yes
configure:13582: checking for inotify_init1
configure:13582: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:13582: $? = 0
configure:13582: result: yes
configure:14291: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:14291: $? = 0
configure:14340: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   --pedantic-errors     conftest.c >&5
conftest.c: In function 'main':
conftest.c:164:4: error: passing argument 5 of 'XRegisterIMInstantiateCallback' from incompatible pointer type
In file included from conftest.c:146:0:
/usr/include/X11/Xlib.h:3939:13: note: expected 'XIDProc' but argument is of type 'XIMProc'
conftest.c:164:4: error: passing argument 6 of 'XRegisterIMInstantiateCallback' from incompatible pointer type
In file included from conftest.c:146:0:
/usr/include/X11/Xlib.h:3939:13: note: expected 'XPointer' but argument is of type 'char **'
configure:14340: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| /* end confdefs.h.  */
| 
| #include <X11/Xlib.h>
| #include <X11/Xresource.h>
| int
| main ()
| {
| Display *display;
| XrmDatabase db;
| char *res_name;
| char *res_class;
| XIMProc  callback;
| XPointer *client_data;
| #ifndef __GNUC__
| /* If we're not using GCC, it's probably not XFree86, and this is
|    probably right, but we can't use something like --pedantic-errors.  */
| extern Bool XRegisterIMInstantiateCallback(Display*, XrmDatabase, char*,
|                                            char*, XIMProc, XPointer*);
| #endif
| (void)XRegisterIMInstantiateCallback(display, db, res_name, res_class, callback,
|    client_data);
|   ;
|   return 0;
| }
configure:14369: checking for FONTCONFIG
configure:14376: $PKG_CONFIG --exists --print-errors "fontconfig >= 2.2.0"
configure:14379: $? = 0
configure:14393: $PKG_CONFIG --exists --print-errors "fontconfig >= 2.2.0"
configure:14396: $? = 0
configure:14434: result: yes
configure:14446: checking for XFT
configure:14453: $PKG_CONFIG --exists --print-errors "xft >= 0.13.0"
configure:14456: $? = 0
configure:14470: $PKG_CONFIG --exists --print-errors "xft >= 0.13.0"
configure:14473: $? = 0
configure:14511: result: yes
configure:14519: checking for XRenderQueryExtension in -lXrender
configure:14544: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lXrender  -lX11   >&5 
configure:14544: $? = 0
configure:14553: result: yes
configure:14567: checking for X11/Xft/Xft.h
configure:14567: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -I/usr/include/freetype2       -I/usr/include/freetype2   conftest.c >&5
configure:14567: $? = 0
configure:14567: result: yes
configure:14570: checking for XftFontOpen in -lXft
configure:14595: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -I/usr/include/freetype2       -I/usr/include/freetype2     conftest.c -lXft -lXrender -lXft   -lXrender -lXft   -lX11   >&5 
configure:14595: $? = 0
configure:14604: result: yes
configure:14635: checking for FREETYPE
configure:14642: $PKG_CONFIG --exists --print-errors "freetype2"
configure:14645: $? = 0
configure:14659: $PKG_CONFIG --exists --print-errors "freetype2"
configure:14662: $? = 0
configure:14700: result: yes
configure:14717: checking for LIBOTF
configure:14724: $PKG_CONFIG --exists --print-errors "libotf"
configure:14727: $? = 0
configure:14741: $PKG_CONFIG --exists --print-errors "libotf"
configure:14744: $? = 0
configure:14782: result: yes
configure:14791: checking for OTF_get_variation_glyphs in -lotf
configure:14816: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lotf  -lX11   >&5 
configure:14816: $? = 0
configure:14825: result: yes
configure:14847: checking for M17N_FLT
configure:14854: $PKG_CONFIG --exists --print-errors "m17n-flt"
configure:14857: $? = 0
configure:14871: $PKG_CONFIG --exists --print-errors "m17n-flt"
configure:14874: $? = 0
configure:14912: result: yes
configure:15035: checking X11/Xlib-xcb.h usability
configure:15035: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
conftest.c:184:26: fatal error: X11/Xlib-xcb.h: No such file or directory
compilation terminated.
configure:15035: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <X11/Xlib-xcb.h>
configure:15035: result: no
configure:15035: checking X11/Xlib-xcb.h presence
configure:15035: gcc -std=gnu11 -E     conftest.c
conftest.c:151:26: fatal error: X11/Xlib-xcb.h: No such file or directory
compilation terminated.
configure:15035: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| /* end confdefs.h.  */
| #include <X11/Xlib-xcb.h>
configure:15035: result: no
configure:15035: checking for X11/Xlib-xcb.h
configure:15035: result: no
configure:15234: checking X11/xpm.h usability
configure:15234: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:15234: $? = 0
configure:15234: result: yes
configure:15234: checking X11/xpm.h presence
configure:15234: gcc -std=gnu11 -E     conftest.c
configure:15234: $? = 0
configure:15234: result: yes
configure:15234: checking for X11/xpm.h
configure:15234: result: yes
configure:15236: checking for XpmReadFileToPixmap in -lXpm
configure:15261: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lXpm -lX11 -lX11   >&5 
configure:15261: $? = 0
configure:15270: result: yes
configure:15280: checking for XpmReturnAllocPixels preprocessor define
configure:15300: result: yes
configure:15350: checking for jpeglib 6b or later
configure:15383: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
/tmp/ccGNmraT.o: In function `main':
/home/redknight/git/emacs/conftest.c:163: undefined reference to `jpeg_CreateDecompress'
/home/redknight/git/emacs/conftest.c:165: undefined reference to `jpeg_destroy_decompress'
collect2: error: ld returned 1 exit status
configure:15383: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| /* end confdefs.h.  */
| #undef HAVE_STDLIB_H /* Avoid config.h/jpeglib.h collision.  */
| 	      #include <stdio.h> /* jpeglib.h needs FILE and size_t.  */
| 	      #include <jpeglib.h>
| 	      #include <jerror.h>
| 	      char verify[JPEG_LIB_VERSION < 62 ? -1 : 1];
| 	      struct jpeg_decompress_struct cinfo;
| 
| int
| main ()
| {
| 
| 	      jpeg_create_decompress (&cinfo);
| 	      WARNMS (&cinfo, JWRN_JPEG_EOF);
| 	      jpeg_destroy_decompress (&cinfo);
| 
|   ;
|   return 0;
| }
configure:15383: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ljpeg >&5 
configure:15383: $? = 0
configure:15394: result: -ljpeg
configure:15414: checking for library containing inflateEnd
configure:15445: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
/tmp/ccPN8IQ1.o: In function `main':
/home/redknight/git/emacs/conftest.c:164: undefined reference to `inflateEnd'
collect2: error: ld returned 1 exit status
configure:15445: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char inflateEnd ();
| int
| main ()
| {
| return inflateEnd ();
|   ;
|   return 0;
| }
configure:15445: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lz  -lX11   >&5 
configure:15445: $? = 0
configure:15462: result: -lz
configure:15550: checking for dladdr
configure:15550: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:15550: $? = 0
configure:15550: result: yes
configure:15576: checking for png
configure:15606: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -I/usr/include/libpng12       conftest.c -lpng12 -lz -lm -lX11   >&5 
configure:15606: $? = 0
configure:15621: result: yes
configure:15632: checking whether png_longjmp is declared
configure:15632: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -I/usr/include/libpng12     conftest.c >&5
conftest.c: In function 'main':
conftest.c:166:10: error: 'png_longjmp' undeclared (first use in this function)
conftest.c:166:10: note: each undeclared identifier is reported only once for each function it appears in
configure:15632: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| /* end confdefs.h.  */
| #include <png.h>
| 
| 
| int
| main ()
| {
| #ifndef png_longjmp
| #ifdef __cplusplus
|   (void) png_longjmp;
| #else
|   (void) png_longjmp;
| #endif
| #endif
| 
|   ;
|   return 0;
| }
configure:15632: result: no
configure:15670: checking tiffio.h usability
configure:15670: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:15670: $? = 0
configure:15670: result: yes
configure:15670: checking tiffio.h presence
configure:15670: gcc -std=gnu11 -E     conftest.c
configure:15670: $? = 0
configure:15670: result: yes
configure:15670: checking for tiffio.h
configure:15670: result: yes
configure:15675: checking for TIFFGetVersion in -ltiff
configure:15700: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -ltiff -ljpeg -lz -lm -lX11   >&5 
configure:15700: $? = 0
configure:15709: result: yes
configure:15751: checking gif_lib.h usability
configure:15751: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:15751: $? = 0
configure:15751: result: yes
configure:15751: checking gif_lib.h presence
configure:15751: gcc -std=gnu11 -E     conftest.c
configure:15751: $? = 0
configure:15751: result: yes
configure:15751: checking for gif_lib.h
configure:15751: result: yes
configure:15755: checking for GifMakeMapObject in -lgif
configure:15780: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lgif  -lX11   >&5 
/tmp/ccCCN0L5.o: In function `main':
/home/redknight/git/emacs/conftest.c:169: undefined reference to `GifMakeMapObject'
collect2: error: ld returned 1 exit status
configure:15780: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char GifMakeMapObject ();
| int
| main ()
| {
| return GifMakeMapObject ();
|   ;
|   return 0;
| }
configure:15789: result: no
configure:15794: checking for EGifPutExtensionLast in -lgif
configure:15819: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lgif  -lX11   >&5 
configure:15819: $? = 0
configure:15828: result: yes
configure:15927: checking gpm.h usability
configure:15927: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:15927: $? = 0
configure:15927: result: yes
configure:15927: checking gpm.h presence
configure:15927: gcc -std=gnu11 -E     conftest.c
configure:15927: $? = 0
configure:15927: result: yes
configure:15927: checking for gpm.h
configure:15927: result: yes
configure:15929: checking for Gpm_Open in -lgpm
configure:15954: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lgpm  -lX11   >&5 
configure:15954: $? = 0
configure:15963: result: yes
configure:16016: checking X11/SM/SMlib.h usability
configure:16016: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:16016: $? = 0
configure:16016: result: yes
configure:16016: checking X11/SM/SMlib.h presence
configure:16016: gcc -std=gnu11 -E     conftest.c
configure:16016: $? = 0
configure:16016: result: yes
configure:16016: checking for X11/SM/SMlib.h
configure:16016: result: yes
configure:16018: checking for SmcOpenConnection in -lSM
configure:16043: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lSM -lICE -lX11   >&5 
configure:16043: $? = 0
configure:16052: result: yes
configure:16078: checking for XRANDR
configure:16085: $PKG_CONFIG --exists --print-errors "$XRANDR_MODULES"
configure:16088: $? = 0
configure:16102: $PKG_CONFIG --exists --print-errors "$XRANDR_MODULES"
configure:16105: $? = 0
configure:16143: result: yes
configure:16211: checking for XRRGetOutputPrimary
configure:16211: gcc -std=gnu11 -o conftest    -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lXrandr   -lX11   >&5 
configure:16211: $? = 0
configure:16211: result: yes
configure:16211: checking for XRRGetScreenResourcesCurrent
configure:16211: gcc -std=gnu11 -o conftest    -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lXrandr   -lX11   >&5 
configure:16211: $? = 0
configure:16211: result: yes
configure:16238: checking for XINERAMA
configure:16245: $PKG_CONFIG --exists --print-errors "$XINERAMA_MODULES"
configure:16248: $? = 0
configure:16262: $PKG_CONFIG --exists --print-errors "$XINERAMA_MODULES"
configure:16265: $? = 0
configure:16303: result: yes
configure:16375: checking for XFIXES
configure:16382: $PKG_CONFIG --exists --print-errors "$XFIXES_MODULES"
configure:16385: $? = 0
configure:16399: $PKG_CONFIG --exists --print-errors "$XFIXES_MODULES"
configure:16402: $? = 0
configure:16440: result: yes
configure:16512: checking for LIBXML2
configure:16519: $PKG_CONFIG --exists --print-errors "libxml-2.0 > 2.6.17"
configure:16522: $? = 0
configure:16536: $PKG_CONFIG --exists --print-errors "libxml-2.0 > 2.6.17"
configure:16539: $? = 0
configure:16577: result: yes
configure:16612: checking for htmlReadMemory in -lxml2
configure:16637: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lxml2 -lxml2   -lX11   >&5 
configure:16637: $? = 0
configure:16646: result: yes
configure:16675: checking whether netdb declares h_errno
configure:16691: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:16691: $? = 0
configure:16699: result: yes
configure:16709: checking for maillock in -lmail
configure:16734: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lmail  -lX11   >&5 
/usr/bin/ld: cannot find -lmail
collect2: error: ld returned 1 exit status
configure:16734: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char maillock ();
| int
| main ()
| {
| return maillock ();
|   ;
|   return 0;
| }
configure:16743: result: no
configure:16774: checking for maillock in -llockfile
configure:16799: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -llockfile  -lX11   >&5 
configure:16799: $? = 0
configure:16808: result: yes
configure:16939: checking for accept4
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for fchdir
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for gethostname
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getrusage
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for get_current_dir_name
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for lrand48
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for random
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for rint
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
conftest.c:199:6: warning: conflicting types for built-in function 'rint' [enabled by default]
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for select
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getpagesize
configure:16939: result: yes
configure:16939: checking for setlocale
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for newlocale
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getrlimit
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for setrlimit
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for shutdown
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getaddrinfo
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for pthread_sigmask
configure:16939: result: yes
configure:16939: checking for strsignal
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for setitimer
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for sendto
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for recvfrom
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getsockname
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getpeername
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getifaddrs
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for freeifaddrs
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for gai_strerror
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for sync
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getpwent
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for endpwent
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getgrent
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for endgrent
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for cfmakeraw
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for cfsetspeed
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for copysign
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
conftest.c:225:6: warning: conflicting types for built-in function 'copysign' [enabled by default]
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for __executable_start
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for log2
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
conftest.c:227:6: warning: conflicting types for built-in function 'log2' [enabled by default]
configure:16939: $? = 0
configure:16939: result: yes
configure:16953: checking for aligned_alloc
configure:16953: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
/tmp/ccbV6T7w.o: In function `main':
/home/redknight/git/emacs/conftest.c:239: undefined reference to `aligned_alloc'
collect2: error: ld returned 1 exit status
configure:16953: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| /* end confdefs.h.  */
| /* Define aligned_alloc to an innocuous variant, in case <limits.h> declares aligned_alloc.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define aligned_alloc innocuous_aligned_alloc
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char aligned_alloc (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef aligned_alloc
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char aligned_alloc ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_aligned_alloc || defined __stub___aligned_alloc
| choke me
| #endif
| 
| int
| main ()
| {
| return aligned_alloc ();
|   ;
|   return 0;
| }
configure:16953: result: no
configure:16953: checking for posix_memalign
configure:16953: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:16953: $? = 0
configure:16953: result: yes
configure:16962: checking whether aligned_alloc is declared
configure:16962: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
conftest.c: In function 'main':
conftest.c:215:10: error: 'aligned_alloc' undeclared (first use in this function)
conftest.c:215:10: note: each undeclared identifier is reported only once for each function it appears in
configure:16962: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| /* end confdefs.h.  */
| #include <stdlib.h>
| 
| int
| main ()
| {
| #ifndef aligned_alloc
| #ifdef __cplusplus
|   (void) aligned_alloc;
| #else
|   (void) aligned_alloc;
| #endif
| #endif
| 
|   ;
|   return 0;
| }
configure:16962: result: no
configure:16975: checking for __builtin_unwind_init
configure:16991: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:16991: $? = 0
configure:16999: result: yes
configure:17011: checking for _LARGEFILE_SOURCE value needed for large files
configure:17030: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:17030: $? = 0
configure:17058: result: no
configure:17083: checking for grantpt
configure:17083: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:17083: $? = 0
configure:17083: result: yes
configure:17097: checking for getpt
configure:17097: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:17097: $? = 0
configure:17097: result: yes
configure:17097: checking for posix_openpt
configure:17097: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:17097: $? = 0
configure:17097: result: yes
configure:17112: checking for library containing tputs
configure:17168: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
/tmp/cc0Eix6t.o: In function `main':
/home/redknight/git/emacs/conftest.c:217: undefined reference to `tputs'
collect2: error: ld returned 1 exit status
configure:17168: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| /* end confdefs.h.  */
| 
|   extern void tputs (const char *, int, int (*)(int));
|        int main (int argc, char **argv)
|        {
| 	  if (argc == 10000)
| 	    tputs (argv[0], 0, 0);
| 	  return 0;
|        }
| 
configure:17168: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -ltinfo -lX11   >&5 
configure:17168: $? = 0
configure:17168: ./conftest
configure:17168: $? = 0
configure:17183: result: -ltinfo
configure:17290: checking for timerfd interface
configure:17309: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:17309: $? = 0
configure:17316: result: yes
configure:17325: checking whether signals can be handled on alternate stack
configure:17348: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
conftest.c: In function 'main':
conftest.c:221:4: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
conftest.c:221:15: warning: incompatible implicit declaration of built-in function 'malloc' [enabled by default]
configure:17348: $? = 0
configure:17355: result: yes
configure:17378: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:17378: $? = 0
configure:18067: checking valgrind/valgrind.h usability
configure:18067: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
conftest.c:248:31: fatal error: valgrind/valgrind.h: No such file or directory
compilation terminated.
configure:18067: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <valgrind/valgrind.h>
configure:18067: result: no
configure:18067: checking valgrind/valgrind.h presence
configure:18067: gcc -std=gnu11 -E     conftest.c
conftest.c:215:31: fatal error: valgrind/valgrind.h: No such file or directory
compilation terminated.
configure:18067: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| /* end confdefs.h.  */
| #include <valgrind/valgrind.h>
configure:18067: result: no
configure:18067: checking for valgrind/valgrind.h
configure:18067: result: no
configure:18078: checking for struct unipair.unicode
configure:18078: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:18078: $? = 0
configure:18078: result: yes
configure:18095: checking for socket
configure:18095: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:18095: $? = 0
configure:18095: result: yes
configure:18103: checking netinet/in.h usability
configure:18103: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:18103: $? = 0
configure:18103: result: yes
configure:18103: checking netinet/in.h presence
configure:18103: gcc -std=gnu11 -E     conftest.c
configure:18103: $? = 0
configure:18103: result: yes
configure:18103: checking for netinet/in.h
configure:18103: result: yes
configure:18113: checking arpa/inet.h usability
configure:18113: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:18113: $? = 0
configure:18113: result: yes
configure:18113: checking arpa/inet.h presence
configure:18113: gcc -std=gnu11 -E     conftest.c
configure:18113: $? = 0
configure:18113: result: yes
configure:18113: checking for arpa/inet.h
configure:18113: result: yes
configure:18128: checking for pid_t
configure:18128: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:18128: $? = 0
configure:18128: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
conftest.c: In function 'main':
conftest.c:253:20: error: expected expression before ')' token
configure:18128: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((pid_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:18128: result: yes
configure:18141: checking vfork.h usability
configure:18141: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
conftest.c:250:19: fatal error: vfork.h: No such file or directory
compilation terminated.
configure:18141: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <vfork.h>
configure:18141: result: no
configure:18141: checking vfork.h presence
configure:18141: gcc -std=gnu11 -E     conftest.c
conftest.c:217:19: fatal error: vfork.h: No such file or directory
compilation terminated.
configure:18141: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| /* end confdefs.h.  */
| #include <vfork.h>
configure:18141: result: no
configure:18141: checking for vfork.h
configure:18141: result: no
configure:18154: checking for fork
configure:18154: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
conftest.c:240:6: warning: conflicting types for built-in function 'fork' [enabled by default]
configure:18154: $? = 0
configure:18154: result: yes
configure:18154: checking for vfork
configure:18154: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:18154: $? = 0
configure:18154: result: yes
configure:18164: checking for working fork
configure:18186: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:18186: $? = 0
configure:18186: ./conftest
configure:18186: $? = 0
configure:18196: result: yes
configure:18217: checking for working vfork
configure:18327: result: yes
configure:18355: checking for snprintf
configure:18355: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
conftest.c:244:6: warning: conflicting types for built-in function 'snprintf' [enabled by default]
configure:18355: $? = 0
configure:18355: result: yes
configure:18372: checking whether GLib is linked in
configure:18386: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12   -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include   -pthread -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include           conftest.c -lX11   -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lrsvg-2 -lm -lgio-2.0 -lgdk_pixbuf-2.0 -lcairo -lgobject-2.0 -lglib-2.0   -ldbus-1   -lgio-2.0 -lgobject-2.0 -lglib-2.0   -lgconf-2 -lglib-2.0   -lgobject-2.0 -lglib-2.0     >&5 
configure:18386: $? = 0
configure:18393: result: yes
configure:18407: checking for nl_langinfo and CODESET
configure:18423: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:18423: $? = 0
configure:18432: result: yes
configure:18440: checking for mbstate_t
configure:18457: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:18457: $? = 0
configure:18464: result: yes
configure:18769: checking for signals via characters
configure:18787: gcc -std=gnu11 -E     conftest.c
configure:18787: $? = 0
configure:18794: result: yes
configure:18832: gcc -std=gnu11 -E     conftest.c
conftest.c:248:3: error: #error "not ia64"
configure:18832: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| /* end confdefs.h.  */
| 
| #ifndef __ia64__
| # error "not ia64"
| #endif
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:18873: gcc -std=gnu11 -E     conftest.c
configure:18873: $? = 0
configure:18893: checking for _setjmp
configure:18915: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:18915: $? = 0
configure:18923: result: yes
configure:18932: checking for sigsetjmp
configure:18951: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:18951: $? = 0
configure:18959: result: yes
configure:19095: checking for usable FIONREAD
configure:19126: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:19126: $? = 0
configure:19135: result: yes
configure:19143: checking for usable SIGIO
configure:19161: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:19161: $? = 0
configure:19168: result: yes
configure:19393: checking for struct alignment
configure:19413: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:19413: $? = 0
configure:19420: result: yes
configure:19511: checking for working alloca.h
configure:19528: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:19528: $? = 0
configure:19536: result: yes
configure:19544: checking for alloca
configure:19581: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:19581: $? = 0
configure:19589: result: yes
configure:19702: checking for unsigned long long int
configure:19741: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:19741: $? = 0
configure:19750: result: yes
configure:19759: checking whether byte ordering is bigendian
configure:19774: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:267:9: error: unknown type name 'not'
conftest.c:267:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
conftest.c:267:15: error: unknown type name 'universal'
configure:19774: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| /* end confdefs.h.  */
| #ifndef __APPLE_CC__
| 	       not a universal capable compiler
| 	     #endif
| 	     typedef int dummy;
| 
configure:19819: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:19819: $? = 0
configure:19837: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:273:4: error: unknown type name 'not'
conftest.c:273:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
configure:19837: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| 		#include <sys/param.h>
| 
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| 		 not big endian
| 		#endif
| 
|   ;
|   return 0;
| }
configure:19965: result: no
configure:20135: checking whether the preprocessor supports include_next
configure:20173: gcc -std=gnu11 -c -g3 -O2    -Iconftestd1b -Iconftestd2 conftest.c >&5
configure:20173: $? = 0
configure:20194: result: yes
configure:20215: checking whether system header files limit the line length
configure:20238: result: no
configure:20250: checking whether strtold conforms to C99
configure:20277: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:20277: $? = 0
configure:20285: result: yes
configure:20300: checking if environ is properly declared
configure:20323: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:273:39: error: conflicting types for 'environ'
In file included from conftest.c:268:0:
/usr/include/unistd.h:542:15: note: previous declaration of 'environ' was here
configure:20323: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| /* end confdefs.h.  */
| #if HAVE_UNISTD_H
|      #include <unistd.h>
|      #endif
|      /* mingw, BeOS, Haiku declare environ in <stdlib.h>, not in <unistd.h>.  */
|      #include <stdlib.h>
| 
|            extern struct { int foo; } environ;
| int
| main ()
| {
| environ.foo = 1;
|   ;
|   return 0;
| }
configure:20331: result: yes
configure:20346: checking for complete errno.h
configure:20419: result: yes
configure:20741: checking for mode_t
configure:20741: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:20741: $? = 0
configure:20741: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:304:21: error: expected expression before ')' token
configure:20741: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((mode_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:20741: result: yes
configure:20752: checking whether fdatasync is declared
configure:20752: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:20752: $? = 0
configure:20752: result: yes
configure:20765: checking for st_dm_mode in struct stat
configure:20783: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:275:17: error: 'struct stat' has no member named 'st_dm_mode'
configure:20783: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| /* end confdefs.h.  */
| 
| #include <sys/types.h>
| #include <sys/stat.h>
| int
| main ()
| {
| struct stat s; s.st_dm_mode;
|   ;
|   return 0;
| }
configure:20790: result: no
configure:20800: checking whether strmode is declared
configure:20800: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:309:10: error: 'strmode' undeclared (first use in this function)
conftest.c:309:10: note: each undeclared identifier is reported only once for each function it appears in
configure:20800: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| #ifndef strmode
| #ifdef __cplusplus
|   (void) strmode;
| #else
|   (void) strmode;
| #endif
| #endif
| 
|   ;
|   return 0;
| }
configure:20800: result: no
configure:20849: checking whether lstat correctly handles trailing slash
configure:20885: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:20885: $? = 0
configure:20885: ./conftest
configure:20885: $? = 0
configure:20897: result: yes
configure:21089: checking for getopt.h
configure:21089: result: yes
configure:21106: checking for getopt_long_only
configure:21106: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:21106: $? = 0
configure:21106: result: yes
configure:21120: checking whether getopt is POSIX compatible
configure:21162: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:21162: $? = 0
configure:21162: ./conftest
configure:21162: $? = 0
configure:21221: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:21221: $? = 0
configure:21221: ./conftest
configure:21221: $? = 0
configure:21263: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:21263: $? = 0
configure:21263: ./conftest
program: option requires an argument -- 'b'
configure:21263: $? = 0
configure:21281: result: yes
configure:21289: checking for working GNU getopt function
configure:21510: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:21510: $? = 0
configure:21510: ./conftest
configure:21510: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| /* end confdefs.h.  */
| #include <getopt.h>
|                            #include <stddef.h>
|                            #include <string.h>
| 
| #include <stdlib.h>
| #if defined __MACH__ && defined __APPLE__
| /* Avoid a crash on Mac OS X.  */
| #include <mach/mach.h>
| #include <mach/mach_error.h>
| #include <mach/thread_status.h>
| #include <mach/exception.h>
| #include <mach/task.h>
| #include <pthread.h>
| /* The exception port on which our thread listens.  */
| static mach_port_t our_exception_port;
| /* The main function of the thread listening for exceptions of type
|    EXC_BAD_ACCESS.  */
| static void *
| mach_exception_thread (void *arg)
| {
|   /* Buffer for a message to be received.  */
|   struct {
|     mach_msg_header_t head;
|     mach_msg_body_t msgh_body;
|     char data[1024];
|   } msg;
|   mach_msg_return_t retval;
|   /* Wait for a message on the exception port.  */
|   retval = mach_msg (&msg.head, MACH_RCV_MSG | MACH_RCV_LARGE, 0, sizeof (msg),
|                      our_exception_port, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
|   if (retval != MACH_MSG_SUCCESS)
|     abort ();
|   exit (1);
| }
| static void
| nocrash_init (void)
| {
|   mach_port_t self = mach_task_self ();
|   /* Allocate a port on which the thread shall listen for exceptions.  */
|   if (mach_port_allocate (self, MACH_PORT_RIGHT_RECEIVE, &our_exception_port)
|       == KERN_SUCCESS) {
|     /* See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/mach_port_insert_right.html.  */
|     if (mach_port_insert_right (self, our_exception_port, our_exception_port,
|                                 MACH_MSG_TYPE_MAKE_SEND)
|         == KERN_SUCCESS) {
|       /* The exceptions we want to catch.  Only EXC_BAD_ACCESS is interesting
|          for us.  */
|       exception_mask_t mask = EXC_MASK_BAD_ACCESS;
|       /* Create the thread listening on the exception port.  */
|       pthread_attr_t attr;
|       pthread_t thread;
|       if (pthread_attr_init (&attr) == 0
|           && pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED) == 0
|           && pthread_create (&thread, &attr, mach_exception_thread, NULL) == 0) {
|         pthread_attr_destroy (&attr);
|         /* Replace the exception port info for these exceptions with our own.
|            Note that we replace the exception port for the entire task, not only
|            for a particular thread.  This has the effect that when our exception
|            port gets the message, the thread specific exception port has already
|            been asked, and we don't need to bother about it.
|            See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/task_set_exception_ports.html.  */
|         task_set_exception_ports (self, mask, our_exception_port,
|                                   EXCEPTION_DEFAULT, MACHINE_THREAD_STATE);
|       }
|     }
|   }
| }
| #elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| /* Avoid a crash on native Windows.  */
| #define WIN32_LEAN_AND_MEAN
| #include <windows.h>
| #include <winerror.h>
| static LONG WINAPI
| exception_filter (EXCEPTION_POINTERS *ExceptionInfo)
| {
|   switch (ExceptionInfo->ExceptionRecord->ExceptionCode)
|     {
|     case EXCEPTION_ACCESS_VIOLATION:
|     case EXCEPTION_IN_PAGE_ERROR:
|     case EXCEPTION_STACK_OVERFLOW:
|     case EXCEPTION_GUARD_PAGE:
|     case EXCEPTION_PRIV_INSTRUCTION:
|     case EXCEPTION_ILLEGAL_INSTRUCTION:
|     case EXCEPTION_DATATYPE_MISALIGNMENT:
|     case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
|     case EXCEPTION_NONCONTINUABLE_EXCEPTION:
|       exit (1);
|     }
|   return EXCEPTION_CONTINUE_SEARCH;
| }
| static void
| nocrash_init (void)
| {
|   SetUnhandledExceptionFilter ((LPTOP_LEVEL_EXCEPTION_FILTER) exception_filter);
| }
| #else
| /* Avoid a crash on POSIX systems.  */
| #include <signal.h>
| /* A POSIX signal handler.  */
| static void
| exception_handler (int sig)
| {
|   exit (1);
| }
| static void
| nocrash_init (void)
| {
| #ifdef SIGSEGV
|   signal (SIGSEGV, exception_handler);
| #endif
| #ifdef SIGBUS
|   signal (SIGBUS, exception_handler);
| #endif
| }
| #endif
| 
| 
| int
| main ()
| {
| 
|              int result = 0;
| 
|              nocrash_init();
| 
|              /* This code succeeds on glibc 2.8, OpenBSD 4.0, Cygwin, mingw,
|                 and fails on Mac OS X 10.5, AIX 5.2, HP-UX 11, IRIX 6.5,
|                 OSF/1 5.1, Solaris 10.  */
|              {
|                static char conftest[] = "conftest";
|                static char plus[] = "-+";
|                char *argv[3] = { conftest, plus, NULL };
|                opterr = 0;
|                if (getopt (2, argv, "+a") != '?')
|                  result |= 1;
|              }
|              /* This code succeeds on glibc 2.8, mingw,
|                 and fails on Mac OS X 10.5, OpenBSD 4.0, AIX 5.2, HP-UX 11,
|                 IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x.  */
|              {
|                static char program[] = "program";
|                static char p[] = "-p";
|                static char foo[] = "foo";
|                static char bar[] = "bar";
|                char *argv[] = { program, p, foo, bar, NULL };
| 
|                optind = 1;
|                if (getopt (4, argv, "p::") != 'p')
|                  result |= 2;
|                else if (optarg != NULL)
|                  result |= 4;
|                else if (getopt (4, argv, "p::") != -1)
|                  result |= 6;
|                else if (optind != 2)
|                  result |= 8;
|              }
|              /* This code succeeds on glibc 2.8 and fails on Cygwin 1.7.0.  */
|              {
|                static char program[] = "program";
|                static char foo[] = "foo";
|                static char p[] = "-p";
|                char *argv[] = { program, foo, p, NULL };
|                optind = 0;
|                if (getopt (3, argv, "-p") != 1)
|                  result |= 16;
|                else if (getopt (3, argv, "-p") != 'p')
|                  result |= 16;
|              }
|              /* This code fails on glibc 2.11.  */
|              {
|                static char program[] = "program";
|                static char b[] = "-b";
|                static char a[] = "-a";
|                char *argv[] = { program, b, a, NULL };
|                optind = opterr = 0;
|                if (getopt (3, argv, "+:a:b") != 'b')
|                  result |= 32;
|                else if (getopt (3, argv, "+:a:b") != ':')
|                  result |= 32;
|              }
|              /* This code dumps core on glibc 2.14.  */
|              {
|                static char program[] = "program";
|                static char w[] = "-W";
|                static char dummy[] = "dummy";
|                char *argv[] = { program, w, dummy, NULL };
|                optind = opterr = 1;
|                if (getopt (3, argv, "W;") != 'W')
|                  result |= 64;
|              }
|              return result;
| 
|   ;
|   return 0;
| }
configure:21526: result: no
configure:21616: checking whether getenv is declared
configure:21616: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:21616: $? = 0
configure:21616: result: yes
configure:21632: checking for C/C++ restrict keyword
configure:21659: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:21659: $? = 0
configure:21667: result: __restrict
configure:21805: checking for struct timeval
configure:21828: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:21828: $? = 0
configure:21836: result: yes
configure:21841: checking for wide-enough struct timeval.tv_sec member
configure:21868: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:21868: $? = 0
configure:21876: result: yes
configure:21890: checking for long long int
configure:21928: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:21928: $? = 0
configure:21928: ./conftest
configure:21928: $? = 0
configure:21940: result: yes
configure:21962: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:278:10: error: unknown type name 'not'
conftest.c:278:16: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
conftest.c:278:16: error: unknown type name 'universal'
configure:21962: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| /* end confdefs.h.  */
| #ifndef __APPLE_CC__
|          not a universal capable compiler
|         #endif
|         typedef int dummy;
| 
configure:22119: checking whether stdint.h conforms to C99
configure:22288: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:22288: $? = 0
configure:22368: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:22368: $? = 0
configure:22368: ./conftest
configure:22368: $? = 0
configure:22380: result: yes
configure:22953: checking whether memrchr is declared
configure:22953: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:22953: $? = 0
configure:22953: result: yes
configure:22986: checking whether alarm is declared
configure:22986: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:22986: $? = 0
configure:22986: result: yes
configure:23011: checking whether <sys/select.h> is self-contained
configure:23028: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23028: $? = 0
configure:23047: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23047: $? = 0
configure:23077: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:23077: $? = 0
configure:23090: result: yes
configure:23233: checking for sigset_t
configure:23233: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23233: $? = 0
configure:23233: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:288:23: error: expected expression before ')' token
configure:23233: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| /* end confdefs.h.  */
| 
|       #include <signal.h>
|       /* Mingw defines sigset_t not in <signal.h>, but in <sys/types.h>.  */
|       #include <sys/types.h>
| 
| 
| int
| main ()
| {
| if (sizeof ((sigset_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:23233: result: yes
configure:23277: checking for wchar_t
configure:23294: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23294: $? = 0
configure:23301: result: yes
configure:23412: checking whether struct tm is in sys/time.h or time.h
configure:23432: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23432: $? = 0
configure:23439: result: time.h
configure:23447: checking for struct tm.tm_zone
configure:23447: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23447: $? = 0
configure:23447: result: yes
configure:23515: checking for struct tm.tm_gmtoff
configure:23515: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23515: $? = 0
configure:23515: result: yes
configure:23603: checking whether strtoimax is declared
configure:23603: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23603: $? = 0
configure:23603: result: yes
configure:23616: checking whether strtoumax is declared
configure:23616: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23616: $? = 0
configure:23616: result: yes
configure:23629: checking whether stat file-mode macros are broken
configure:23656: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23656: $? = 0
configure:23663: result: no
configure:23763: checking for struct timespec in <time.h>
configure:23780: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23780: $? = 0
configure:23787: result: yes
configure:23973: checking whether the utimes function works
configure:24102: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:24102: $? = 0
configure:24102: ./conftest
configure:24102: $? = 0
configure:24112: result: yes
configure:24125: checking for struct utimbuf
configure:24148: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:24148: $? = 0
configure:24155: result: yes
configure:24174: checking type of array argument to getgroups
configure:24208: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:24208: $? = 0
configure:24208: ./conftest
configure:24208: $? = 0
configure:24233: result: gid_t
configure:24243: checking whether getdtablesize is declared
configure:24243: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:24243: $? = 0
configure:24243: result: yes
configure:24287: checking sys/acl.h usability
configure:24287: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:24287: $? = 0
configure:24287: result: yes
configure:24287: checking sys/acl.h presence
configure:24287: gcc -std=gnu11 -E    conftest.c
configure:24287: $? = 0
configure:24287: result: yes
configure:24287: checking for sys/acl.h
configure:24287: result: yes
configure:24301: checking for library containing acl_get_file
configure:24332: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
/tmp/cccAJrH8.o: In function `main':
/home/redknight/git/emacs/conftest.c:302: undefined reference to `acl_get_file'
collect2: error: ld returned 1 exit status
configure:24332: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_get_file ();
| int
| main ()
| {
| return acl_get_file ();
|   ;
|   return 0;
| }
configure:24332: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl  -lpthread  >&5 
configure:24332: $? = 0
configure:24349: result: -lacl
configure:24365: checking for acl_get_file
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_get_fd
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_set_file
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_set_fd
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_free
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_from_mode
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_from_text
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_delete_def_file
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_extended_file
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_delete_fd_np
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
/tmp/ccRJTafu.o: In function `main':
/home/redknight/git/emacs/conftest.c:334: undefined reference to `acl_delete_fd_np'
collect2: error: ld returned 1 exit status
configure:24365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| /* end confdefs.h.  */
| /* Define acl_delete_fd_np to an innocuous variant, in case <limits.h> declares acl_delete_fd_np.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define acl_delete_fd_np innocuous_acl_delete_fd_np
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char acl_delete_fd_np (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef acl_delete_fd_np
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_delete_fd_np ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_acl_delete_fd_np || defined __stub___acl_delete_fd_np
| choke me
| #endif
| 
| int
| main ()
| {
| return acl_delete_fd_np ();
|   ;
|   return 0;
| }
configure:24365: result: no
configure:24365: checking for acl_delete_file_np
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
/tmp/cclrfb4F.o: In function `main':
/home/redknight/git/emacs/conftest.c:334: undefined reference to `acl_delete_file_np'
collect2: error: ld returned 1 exit status
configure:24365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| /* end confdefs.h.  */
| /* Define acl_delete_file_np to an innocuous variant, in case <limits.h> declares acl_delete_file_np.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define acl_delete_file_np innocuous_acl_delete_file_np
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char acl_delete_file_np (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef acl_delete_file_np
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_delete_file_np ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_acl_delete_file_np || defined __stub___acl_delete_file_np
| choke me
| #endif
| 
| int
| main ()
| {
| return acl_delete_file_np ();
|   ;
|   return 0;
| }
configure:24365: result: no
configure:24365: checking for acl_copy_ext_native
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
/tmp/ccngaBxM.o: In function `main':
/home/redknight/git/emacs/conftest.c:334: undefined reference to `acl_copy_ext_native'
collect2: error: ld returned 1 exit status
configure:24365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| /* end confdefs.h.  */
| /* Define acl_copy_ext_native to an innocuous variant, in case <limits.h> declares acl_copy_ext_native.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define acl_copy_ext_native innocuous_acl_copy_ext_native
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char acl_copy_ext_native (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef acl_copy_ext_native
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_copy_ext_native ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_acl_copy_ext_native || defined __stub___acl_copy_ext_native
| choke me
| #endif
| 
| int
| main ()
| {
| return acl_copy_ext_native ();
|   ;
|   return 0;
| }
configure:24365: result: no
configure:24365: checking for acl_create_entry_np
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
/tmp/ccZjVd4W.o: In function `main':
/home/redknight/git/emacs/conftest.c:334: undefined reference to `acl_create_entry_np'
collect2: error: ld returned 1 exit status
configure:24365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| /* end confdefs.h.  */
| /* Define acl_create_entry_np to an innocuous variant, in case <limits.h> declares acl_create_entry_np.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define acl_create_entry_np innocuous_acl_create_entry_np
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char acl_create_entry_np (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef acl_create_entry_np
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_create_entry_np ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_acl_create_entry_np || defined __stub___acl_create_entry_np
| choke me
| #endif
| 
| int
| main ()
| {
| return acl_create_entry_np ();
|   ;
|   return 0;
| }
configure:24365: result: no
configure:24365: checking for acl_to_short_text
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
/tmp/ccIMVnrW.o: In function `main':
/home/redknight/git/emacs/conftest.c:334: undefined reference to `acl_to_short_text'
collect2: error: ld returned 1 exit status
configure:24365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| /* end confdefs.h.  */
| /* Define acl_to_short_text to an innocuous variant, in case <limits.h> declares acl_to_short_text.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define acl_to_short_text innocuous_acl_to_short_text
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char acl_to_short_text (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef acl_to_short_text
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_to_short_text ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_acl_to_short_text || defined __stub___acl_to_short_text
| choke me
| #endif
| 
| int
| main ()
| {
| return acl_to_short_text ();
|   ;
|   return 0;
| }
configure:24365: result: no
configure:24365: checking for acl_free_text
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
/tmp/cccCLF32.o: In function `main':
/home/redknight/git/emacs/conftest.c:334: undefined reference to `acl_free_text'
collect2: error: ld returned 1 exit status
configure:24365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| /* end confdefs.h.  */
| /* Define acl_free_text to an innocuous variant, in case <limits.h> declares acl_free_text.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define acl_free_text innocuous_acl_free_text
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char acl_free_text (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef acl_free_text
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_free_text ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_acl_free_text || defined __stub___acl_free_text
| choke me
| #endif
| 
| int
| main ()
| {
| return acl_free_text ();
|   ;
|   return 0;
| }
configure:24365: result: no
configure:24376: checking for working acl_get_file
configure:24399: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24399: $? = 0
configure:24409: result: yes
configure:24418: checking acl/libacl.h usability
configure:24418: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:24418: $? = 0
configure:24418: result: yes
configure:24418: checking acl/libacl.h presence
configure:24418: gcc -std=gnu11 -E    conftest.c
configure:24418: $? = 0
configure:24418: result: yes
configure:24418: checking for acl/libacl.h
configure:24418: result: yes
configure:24438: checking for acl_entries
configure:24438: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24438: $? = 0
configure:24438: result: yes
configure:24452: checking for ACL_FIRST_ENTRY
configure:24470: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:24470: $? = 0
configure:24477: result: yes
configure:24484: checking for ACL_TYPE_EXTENDED
configure:24502: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:305:12: error: 'ACL_TYPE_EXTENDED' undeclared here (not in a function)
configure:24502: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/acl.h>
| int type = ACL_TYPE_EXTENDED;
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:24509: result: no
configure:24722: checking for alloca as a compiler built-in
configure:24746: result: yes
configure:24772: checking byteswap.h usability
configure:24772: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:24772: $? = 0
configure:24772: result: yes
configure:24772: checking byteswap.h presence
configure:24772: gcc -std=gnu11 -E    conftest.c
configure:24772: $? = 0
configure:24772: result: yes
configure:24772: checking for byteswap.h
configure:24772: result: yes
configure:24811: checking for library containing clock_gettime
configure:24842: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
/tmp/ccIEpe1V.o: In function `main':
/home/redknight/git/emacs/conftest.c:317: undefined reference to `clock_gettime'
collect2: error: ld returned 1 exit status
configure:24842: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char clock_gettime ();
| int
| main ()
| {
| return clock_gettime ();
|   ;
|   return 0;
| }
configure:24842: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lrt  -lpthread  >&5 
configure:24842: $? = 0
configure:24859: result: -lrt
configure:24871: checking for clock_gettime
configure:24871: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lrt -lpthread  >&5 
configure:24871: $? = 0
configure:24871: result: yes
configure:24871: checking for clock_settime
configure:24871: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lrt -lpthread  >&5 
configure:24871: $? = 0
configure:24871: result: yes
configure:25018: checking whether dup2 works
configure:25106: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:25106: $? = 0
configure:25106: ./conftest
configure:25106: $? = 0
configure:25117: result: yes
configure:25184: checking for library containing backtrace_symbols_fd
configure:25215: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:25215: $? = 0
configure:25232: result: none required
configure:25339: checking whether fcntl handles F_DUPFD correctly
configure:25397: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:25397: $? = 0
configure:25397: ./conftest
configure:25397: $? = 0
configure:25407: result: yes
configure:25425: checking whether fcntl understands F_DUPFD_CLOEXEC
configure:25446: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:25446: $? = 0
configure:25464: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:315:1: error: unknown type name 'choke'
conftest.c:318:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'int'
configure:25464: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| /* end confdefs.h.  */
| 
| #ifdef __linux__
| /* The Linux kernel only added F_DUPFD_CLOEXEC in 2.6.24, so we always replace
|    it to support the semantics on older kernels that failed with EINVAL.  */
| choke me
| #endif
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:25475: result: needs runtime check
configure:25620: checking for library containing fdatasync
configure:25651: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:25651: $? = 0
configure:25668: result: none required
configure:25708: checking whether fdopendir is declared
configure:25708: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:25708: $? = 0
configure:25708: result: yes
configure:25731: checking whether fdopendir works
configure:25772: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:25772: $? = 0
configure:25772: ./conftest
configure:25772: $? = 0
configure:25782: result: yes
configure:25834: checking for __fpending
configure:25851: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:25851: $? = 0
configure:25860: result: yes
configure:25863: checking whether __fpending is declared
configure:25863: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:25863: $? = 0
configure:25863: result: yes
configure:25978: checking whether fstatat (..., 0) works
configure:26003: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:26003: $? = 0
configure:26003: ./conftest
configure:26003: $? = 0
configure:26014: result: yes
configure:26095: checking for getloadavg
configure:26095: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:26095: $? = 0
configure:26095: result: yes
configure:26453: checking sys/loadavg.h usability
configure:26453: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:347:25: fatal error: sys/loadavg.h: No such file or directory
compilation terminated.
configure:26453: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/loadavg.h>
configure:26453: result: no
configure:26453: checking sys/loadavg.h presence
configure:26453: gcc -std=gnu11 -E    conftest.c
conftest.c:314:25: fatal error: sys/loadavg.h: No such file or directory
compilation terminated.
configure:26453: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| /* end confdefs.h.  */
| #include <sys/loadavg.h>
configure:26453: result: no
configure:26453: checking for sys/loadavg.h
configure:26453: result: no
configure:26468: checking whether getloadavg is declared
configure:26468: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:26468: $? = 0
configure:26468: result: yes
configure:26718: checking whether gettimeofday clobbers localtime buffer
configure:26757: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:26757: $? = 0
configure:26757: ./conftest
configure:26757: $? = 0
configure:26767: result: no
configure:26783: checking for gettimeofday with POSIX signature
configure:26811: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:317:19: error: conflicting types for 'gettimeofday'
In file included from conftest.c:315:0:
/usr/include/i386-linux-gnu/sys/time.h:73:12: note: previous declaration of 'gettimeofday' was here
configure:26811: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| /* end confdefs.h.  */
| #include <sys/time.h>
|               struct timeval c;
|               int gettimeofday (struct timeval *restrict, void *restrict);
| 
| int
| main ()
| {
| /* glibc uses struct timezone * rather than the POSIX void *
|                  if _GNU_SOURCE is defined.  However, since the only portable
|                  use of gettimeofday uses NULL as the second parameter, and
|                  since the glibc definition is actually more typesafe, it is
|                  not worth wrapping this to get a compliant signature.  */
|               int (*f) (struct timeval *restrict, void *restrict)
|                 = gettimeofday;
|               int x = f (&c, 0);
|               return !(x | c.tv_sec | c.tv_usec);
| 
|   ;
|   return 0;
| }
configure:26827: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:26827: $? = 0
configure:26836: result: almost
configure:26953: checking for memrchr
configure:26953: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:26953: $? = 0
configure:26953: result: yes
configure:27041: checking for working mktime
configure:27249: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:27249: $? = 0
configure:27249: ./conftest
configure:27249: $? = 0
configure:27260: result: yes
configure:27321: checking whether signature of pselect conforms to POSIX
configure:27341: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:27341: $? = 0
configure:27349: result: yes
configure:27352: checking whether pselect detects invalid fds
configure:27397: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:27397: $? = 0
configure:27397: ./conftest
configure:27397: $? = 0
configure:27408: result: yes
configure:27521: checking whether pthread_sigmask returns error numbers
configure:27553: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread   >&5 
configure:27553: $? = 0
configure:27553: ./conftest
configure:27553: $? = 0
configure:27565: result: yes
configure:27576: checking whether pthread_sigmask unblocks signals correctly
configure:27629: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:27629: $? = 0
configure:27629: ./conftest
configure:27629: $? = 0
configure:27641: result: guessing yes
configure:27726: checking whether readlink signature is correct
configure:27744: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:27744: $? = 0
configure:27751: result: yes
configure:27753: checking whether readlink handles trailing slash correctly
configure:27783: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:27783: $? = 0
configure:27783: ./conftest
configure:27783: $? = 0
configure:27794: result: yes
configure:27845: checking whether readlinkat signature is correct
configure:27863: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:27863: $? = 0
configure:27870: result: yes
configure:27912: checking for sig2str
configure:27912: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
/tmp/cck9OYsE.o: In function `main':
/home/redknight/git/emacs/conftest.c:352: undefined reference to `sig2str'
collect2: error: ld returned 1 exit status
configure:27912: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| /* end confdefs.h.  */
| /* Define sig2str to an innocuous variant, in case <limits.h> declares sig2str.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define sig2str innocuous_sig2str
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char sig2str (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef sig2str
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char sig2str ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_sig2str || defined __stub___sig2str
| choke me
| #endif
| 
| int
| main ()
| {
| return sig2str ();
|   ;
|   return 0;
| }
configure:27912: result: no
configure:28014: checking for volatile sig_atomic_t
configure:28014: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28014: $? = 0
configure:28014: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:325:36: error: expected expression before ')' token
configure:28014: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| /* end confdefs.h.  */
| 
| #include <signal.h>
| 
| 
| int
| main ()
| {
| if (sizeof ((volatile sig_atomic_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:28014: result: yes
configure:28030: checking for sighandler_t
configure:28030: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28030: $? = 0
configure:28030: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:325:27: error: expected expression before ')' token
configure:28030: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| /* end confdefs.h.  */
| 
| #include <signal.h>
| 
| 
| int
| main ()
| {
| if (sizeof ((sighandler_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:28030: result: yes
configure:28043: checking for socklen_t
configure:28043: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28043: $? = 0
configure:28043: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:333:24: error: expected expression before ')' token
configure:28043: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| /* end confdefs.h.  */
| 
| /* <sys/types.h> is not needed according to POSIX, but the
|    <sys/socket.h> in i386-unknown-freebsd4.10 and
|    powerpc-apple-darwin5.5 required it. */
| #include <sys/types.h>
| #if HAVE_SYS_SOCKET_H
| # include <sys/socket.h>
| #elif HAVE_WS2TCPIP_H
| # include <ws2tcpip.h>
| #endif
| 
| 
| int
| main ()
| {
| if (sizeof ((socklen_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:28043: result: yes
configure:28107: checking for ssize_t
configure:28124: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28124: $? = 0
configure:28131: result: yes
configure:28143: checking for struct stat.st_atim.tv_nsec
configure:28143: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28143: $? = 0
configure:28143: result: yes
configure:28152: checking whether struct stat.st_atim is of type struct timespec
configure:28179: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28179: $? = 0
configure:28186: result: yes
configure:28238: checking for struct stat.st_birthtimespec.tv_nsec
configure:28238: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:327:12: error: 'struct stat' has no member named 'st_birthtimespec'
configure:28238: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|      #include <sys/stat.h>
| 
| int
| main ()
| {
| static struct stat ac_aggr;
| if (ac_aggr.st_birthtimespec.tv_nsec)
| return 0;
|   ;
|   return 0;
| }
configure:28238: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:327:19: error: 'struct stat' has no member named 'st_birthtimespec'
configure:28238: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|      #include <sys/stat.h>
| 
| int
| main ()
| {
| static struct stat ac_aggr;
| if (sizeof ac_aggr.st_birthtimespec.tv_nsec)
| return 0;
|   ;
|   return 0;
| }
configure:28238: result: no
configure:28249: checking for struct stat.st_birthtimensec
configure:28249: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:327:12: error: 'struct stat' has no member named 'st_birthtimensec'
configure:28249: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|         #include <sys/stat.h>
| 
| int
| main ()
| {
| static struct stat ac_aggr;
| if (ac_aggr.st_birthtimensec)
| return 0;
|   ;
|   return 0;
| }
configure:28249: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:327:19: error: 'struct stat' has no member named 'st_birthtimensec'
configure:28249: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|         #include <sys/stat.h>
| 
| int
| main ()
| {
| static struct stat ac_aggr;
| if (sizeof ac_aggr.st_birthtimensec)
| return 0;
|   ;
|   return 0;
| }
configure:28249: result: no
configure:28260: checking for struct stat.st_birthtim.tv_nsec
configure:28260: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:327:12: error: 'struct stat' has no member named 'st_birthtim'
configure:28260: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|           #include <sys/stat.h>
| 
| int
| main ()
| {
| static struct stat ac_aggr;
| if (ac_aggr.st_birthtim.tv_nsec)
| return 0;
|   ;
|   return 0;
| }
configure:28260: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:327:19: error: 'struct stat' has no member named 'st_birthtim'
configure:28260: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|           #include <sys/stat.h>
| 
| int
| main ()
| {
| static struct stat ac_aggr;
| if (sizeof ac_aggr.st_birthtim.tv_nsec)
| return 0;
|   ;
|   return 0;
| }
configure:28260: result: no
configure:28278: checking for working stdalign.h
configure:28323: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:332:18: error: size of array 'test_double' is negative
configure:28323: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <stdalign.h>
|             #include <stddef.h>
| 
|             /* Test that alignof yields a result consistent with offsetof.
|                This catches GCC bug 52023
|                <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52023>.  */
|             #ifdef __cplusplus
|                template <class t> struct alignof_helper { char a; t b; };
|             # define ao(type) offsetof (alignof_helper<type>, b)
|             #else
|             # define ao(type) offsetof (struct { char a; type b; }, b)
|             #endif
|             char test_double[ao (double) % _Alignof (double) == 0 ? 1 : -1];
|             char test_long[ao (long int) % _Alignof (long int) == 0 ? 1 : -1];
|             char test_alignof[alignof (double) == _Alignof (double) ? 1 : -1];
| 
|             /* Test _Alignas only on platforms where gnulib can help.  */
|             #if                 ((defined __cplusplus && 201103 <= __cplusplus)                  || (defined __APPLE__ && defined __MACH__                      ? 4 < __GNUC__ + (1 <= __GNUC_MINOR__)                      : __GNUC__)                  || __HP_cc || __HP_aCC || __IBMC__ || __IBMCPP__                  || __ICC || 0x5110 <= __SUNPRO_C                  || 1300 <= _MSC_VER)
|               struct alignas_test { char c; char alignas (8) alignas_8; };
|               char test_alignas[offsetof (struct alignas_test, alignas_8) == 8
|                                 ? 1 : -1];
|             #endif
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28330: result: no
configure:28353: checking for max_align_t
configure:28353: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28353: $? = 0
configure:28353: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:326:26: error: expected expression before ')' token
configure:28353: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <stddef.h>
| 
| 
| int
| main ()
| {
| if (sizeof ((max_align_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:28353: result: yes
configure:28366: checking whether NULL can be used in arbitrary expressions
configure:28384: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28384: $? = 0
configure:28391: result: yes
configure:28557: checking which flavor of printf attribute matches inttypes macros
configure:28584: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28584: $? = 0
configure:28591: result: system
configure:28721: checking for stpcpy
configure:28721: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
conftest.c:345:6: warning: conflicting types for built-in function 'stpcpy' [enabled by default]
configure:28721: $? = 0
configure:28721: result: yes
configure:28788: checking whether strtoimax works
configure:28842: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:28842: $? = 0
configure:28842: ./conftest
configure:28842: $? = 0
configure:28853: result: yes
configure:28958: checking whether symlink handles trailing slash correctly
configure:28992: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:28992: $? = 0
configure:28992: ./conftest
configure:28992: $? = 0
configure:29003: result: yes
configure:29039: checking whether <sys/select.h> is self-contained
configure:29118: result: yes
configure:29331: checking for nlink_t
configure:29331: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:29331: $? = 0
configure:29331: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:330:22: error: expected expression before ')' token
configure:29331: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| #define GNULIB_FSCANF 1
| #define GNULIB_SCANF 1
| #define HAVE_STPCPY 1
| #define my_strftime nstrftime
| /* end confdefs.h.  */
| #include <sys/types.h>
|      #include <sys/stat.h>
| 
| int
| main ()
| {
| if (sizeof ((nlink_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:29331: result: yes
configure:29361: checking whether localtime_r is declared
configure:29361: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:29361: $? = 0
configure:29361: result: yes
configure:29380: checking whether localtime_r is compatible with its POSIX signature
configure:29404: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:29404: $? = 0
configure:29412: result: yes
configure:29455: checking for timezone_t
configure:29455: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:330:13: error: 'timezone_t' undeclared (first use in this function)
conftest.c:330:13: note: each undeclared identifier is reported only once for each function it appears in
configure:29455: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| #define GNULIB_FSCANF 1
| #define GNULIB_SCANF 1
| #define HAVE_STPCPY 1
| #define my_strftime nstrftime
| #define HAVE_DECL_LOCALTIME_R 1
| /* end confdefs.h.  */
| #include <time.h>
| 
| int
| main ()
| {
| if (sizeof (timezone_t))
| 	 return 0;
|   ;
|   return 0;
| }
configure:29455: result: no
configure:29542: checking for library containing timer_settime
configure:29573: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
/tmp/ccnVEsUQ.o: In function `main':
/home/redknight/git/emacs/conftest.c:336: undefined reference to `timer_settime'
collect2: error: ld returned 1 exit status
configure:29573: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| #define GNULIB_FSCANF 1
| #define GNULIB_SCANF 1
| #define HAVE_STPCPY 1
| #define my_strftime nstrftime
| #define HAVE_DECL_LOCALTIME_R 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char timer_settime ();
| int
| main ()
| {
| return timer_settime ();
|   ;
|   return 0;
| }
configure:29573: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lrt  -lpthread  >&5 
configure:29573: $? = 0
configure:29590: result: -lrt
configure:29602: checking for timer_settime
configure:29602: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lrt -lpthread  >&5 
configure:29602: $? = 0
configure:29602: result: yes
configure:29772: checking for variable-length arrays
configure:29828: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:29828: $? = 0
configure:29838: result: yes
configure:30308: checking whether getdtablesize works
configure:30337: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:30337: $? = 0
configure:30337: ./conftest
configure:30337: $? = 0
configure:30348: result: yes
configure:31344: checking whether gcc -std=gnu11 accepts -nopie
configure:31364: gcc -std=gnu11 -o conftest -g3 -O2      -nopie conftest.c   >&5 
gcc: error: unrecognized command line option '-nopie'
configure:31364: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS ""
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| #define GNULIB_FSCANF 1
| #define GNULIB_SCANF 1
| #define HAVE_STPCPY 1
| #define my_strftime nstrftime
| #define HAVE_DECL_LOCALTIME_R 1
| #define HAVE_TIMER_SETTIME 1
| #define HAVE_C_VARARRAYS 1
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:31374: result: no
configure:31911: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by GNU Emacs config.status 25.1.50, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on jetstar

config.status:2070: creating ./doc/man/emacs.1
config.status:2070: creating Makefile
config.status:2070: creating lib/Makefile
config.status:2070: creating lib-src/Makefile
config.status:2070: creating oldXMenu/Makefile
config.status:2070: creating doc/emacs/Makefile
config.status:2070: creating doc/misc/Makefile
config.status:2070: creating doc/lispintro/Makefile
config.status:2070: creating doc/lispref/Makefile
config.status:2070: creating src/Makefile
config.status:2070: creating lwlib/Makefile
config.status:2070: creating lisp/Makefile
config.status:2070: creating leim/Makefile
config.status:2070: creating nextstep/Makefile
config.status:2070: creating nt/Makefile
config.status:2070: creating test/Makefile
config.status:2070: creating admin/charsets/Makefile
config.status:2070: creating admin/unidata/Makefile
config.status:2070: creating admin/grammars/Makefile
config.status:2070: creating src/config.h
config.status:2299: executing depfiles commands
config.status:2299: executing src/epaths.h commands
config.status:2299: executing src/.gdbinit commands
config.status:2299: executing doc/emacs/emacsver.texi commands
config.status:2299: executing etc-refcards-emacsver.tex commands

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=i686-pc-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_c_restrict=__restrict
ac_cv_c_vararrays=yes
ac_cv_env_ALSA_CFLAGS_set=
ac_cv_env_ALSA_CFLAGS_value=
ac_cv_env_ALSA_LIBS_set=
ac_cv_env_ALSA_LIBS_value=
ac_cv_env_CAIRO_CFLAGS_set=
ac_cv_env_CAIRO_CFLAGS_value=
ac_cv_env_CAIRO_LIBS_set=
ac_cv_env_CAIRO_LIBS_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_DBUS_CFLAGS_set=
ac_cv_env_DBUS_CFLAGS_value=
ac_cv_env_DBUS_LIBS_set=
ac_cv_env_DBUS_LIBS_value=
ac_cv_env_FONTCONFIG_CFLAGS_set=
ac_cv_env_FONTCONFIG_CFLAGS_value=
ac_cv_env_FONTCONFIG_LIBS_set=
ac_cv_env_FONTCONFIG_LIBS_value=
ac_cv_env_FREETYPE_CFLAGS_set=
ac_cv_env_FREETYPE_CFLAGS_value=
ac_cv_env_FREETYPE_LIBS_set=
ac_cv_env_FREETYPE_LIBS_value=
ac_cv_env_GCONF_CFLAGS_set=
ac_cv_env_GCONF_CFLAGS_value=
ac_cv_env_GCONF_LIBS_set=
ac_cv_env_GCONF_LIBS_value=
ac_cv_env_GFILENOTIFY_CFLAGS_set=
ac_cv_env_GFILENOTIFY_CFLAGS_value=
ac_cv_env_GFILENOTIFY_LIBS_set=
ac_cv_env_GFILENOTIFY_LIBS_value=
ac_cv_env_GOBJECT_CFLAGS_set=
ac_cv_env_GOBJECT_CFLAGS_value=
ac_cv_env_GOBJECT_LIBS_set=
ac_cv_env_GOBJECT_LIBS_value=
ac_cv_env_GSETTINGS_CFLAGS_set=
ac_cv_env_GSETTINGS_CFLAGS_value=
ac_cv_env_GSETTINGS_LIBS_set=
ac_cv_env_GSETTINGS_LIBS_value=
ac_cv_env_GTK_CFLAGS_set=
ac_cv_env_GTK_CFLAGS_value=
ac_cv_env_GTK_LIBS_set=
ac_cv_env_GTK_LIBS_value=
ac_cv_env_IMAGEMAGICK_CFLAGS_set=
ac_cv_env_IMAGEMAGICK_CFLAGS_value=
ac_cv_env_IMAGEMAGICK_LIBS_set=
ac_cv_env_IMAGEMAGICK_LIBS_value=
ac_cv_env_KQUEUE_CFLAGS_set=
ac_cv_env_KQUEUE_CFLAGS_value=
ac_cv_env_KQUEUE_LIBS_set=
ac_cv_env_KQUEUE_LIBS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBGNUTLS3_CFLAGS_set=
ac_cv_env_LIBGNUTLS3_CFLAGS_value=
ac_cv_env_LIBGNUTLS3_LIBS_set=
ac_cv_env_LIBGNUTLS3_LIBS_value=
ac_cv_env_LIBGNUTLS_CFLAGS_set=
ac_cv_env_LIBGNUTLS_CFLAGS_value=
ac_cv_env_LIBGNUTLS_LIBS_set=
ac_cv_env_LIBGNUTLS_LIBS_value=
ac_cv_env_LIBOTF_CFLAGS_set=
ac_cv_env_LIBOTF_CFLAGS_value=
ac_cv_env_LIBOTF_LIBS_set=
ac_cv_env_LIBOTF_LIBS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_LIBXML2_CFLAGS_set=
ac_cv_env_LIBXML2_CFLAGS_value=
ac_cv_env_LIBXML2_LIBS_set=
ac_cv_env_LIBXML2_LIBS_value=
ac_cv_env_M17N_FLT_CFLAGS_set=
ac_cv_env_M17N_FLT_CFLAGS_value=
ac_cv_env_M17N_FLT_LIBS_set=
ac_cv_env_M17N_FLT_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=
ac_cv_env_PKG_CONFIG_LIBDIR_value=
ac_cv_env_PKG_CONFIG_PATH_set=
ac_cv_env_PKG_CONFIG_PATH_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_RSVG_CFLAGS_set=
ac_cv_env_RSVG_CFLAGS_value=
ac_cv_env_RSVG_LIBS_set=
ac_cv_env_RSVG_LIBS_value=
ac_cv_env_WEBKIT_CFLAGS_set=
ac_cv_env_WEBKIT_CFLAGS_value=
ac_cv_env_WEBKIT_LIBS_set=
ac_cv_env_WEBKIT_LIBS_value=
ac_cv_env_XFIXES_CFLAGS_set=
ac_cv_env_XFIXES_CFLAGS_value=
ac_cv_env_XFIXES_LIBS_set=
ac_cv_env_XFIXES_LIBS_value=
ac_cv_env_XFT_CFLAGS_set=
ac_cv_env_XFT_CFLAGS_value=
ac_cv_env_XFT_LIBS_set=
ac_cv_env_XFT_LIBS_value=
ac_cv_env_XINERAMA_CFLAGS_set=
ac_cv_env_XINERAMA_CFLAGS_value=
ac_cv_env_XINERAMA_LIBS_set=
ac_cv_env_XINERAMA_LIBS_value=
ac_cv_env_XMKMF_set=
ac_cv_env_XMKMF_value=
ac_cv_env_XRANDR_CFLAGS_set=
ac_cv_env_XRANDR_CFLAGS_value=
ac_cv_env_XRANDR_LIBS_set=
ac_cv_env_XRANDR_LIBS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func_XRRGetOutputPrimary=yes
ac_cv_func_XRRGetScreenResourcesCurrent=yes
ac_cv_func_XScreenNumberOfScreen=yes
ac_cv_func_XScreenResourceString=yes
ac_cv_func_XrmSetDatabase=yes
ac_cv_func___executable_start=yes
ac_cv_func_accept4=yes
ac_cv_func_acl_copy_ext_native=no
ac_cv_func_acl_create_entry_np=no
ac_cv_func_acl_delete_def_file=yes
ac_cv_func_acl_delete_fd_np=no
ac_cv_func_acl_delete_file_np=no
ac_cv_func_acl_entries=yes
ac_cv_func_acl_extended_file=yes
ac_cv_func_acl_free=yes
ac_cv_func_acl_free_text=no
ac_cv_func_acl_from_mode=yes
ac_cv_func_acl_from_text=yes
ac_cv_func_acl_get_fd=yes
ac_cv_func_acl_get_file=yes
ac_cv_func_acl_set_fd=yes
ac_cv_func_acl_set_file=yes
ac_cv_func_acl_to_short_text=no
ac_cv_func_aligned_alloc=no
ac_cv_func_alloca_works=yes
ac_cv_func_cfmakeraw=yes
ac_cv_func_cfsetspeed=yes
ac_cv_func_clock_gettime=yes
ac_cv_func_clock_settime=yes
ac_cv_func_copysign=yes
ac_cv_func_dbus_type_is_valid=yes
ac_cv_func_dbus_validate_bus_name=yes
ac_cv_func_dbus_validate_interface=yes
ac_cv_func_dbus_validate_member=yes
ac_cv_func_dbus_validate_path=yes
ac_cv_func_dbus_watch_get_unix_fd=yes
ac_cv_func_dladdr=yes
ac_cv_func_endgrent=yes
ac_cv_func_endpwent=yes
ac_cv_func_faccessat=yes
ac_cv_func_fchdir=yes
ac_cv_func_fchmod=yes
ac_cv_func_fcntl=yes
ac_cv_func_fdopendir=yes
ac_cv_func_fork=yes
ac_cv_func_fork_works=yes
ac_cv_func_freeifaddrs=yes
ac_cv_func_fstatat=yes
ac_cv_func_fsync=yes
ac_cv_func_futimens=yes
ac_cv_func_futimes=yes
ac_cv_func_futimesat=yes
ac_cv_func_gai_strerror=yes
ac_cv_func_get_current_dir_name=yes
ac_cv_func_getaddrinfo=yes
ac_cv_func_getdtablesize=yes
ac_cv_func_getgrent=yes
ac_cv_func_gethostname=yes
ac_cv_func_getifaddrs=yes
ac_cv_func_getloadavg=yes
ac_cv_func_getopt_long_only=yes
ac_cv_func_getpagesize=yes
ac_cv_func_getpeername=yes
ac_cv_func_getpt=yes
ac_cv_func_getpwent=yes
ac_cv_func_getrlimit=yes
ac_cv_func_getrusage=yes
ac_cv_func_getsockname=yes
ac_cv_func_gettimeofday=yes
ac_cv_func_grantpt=yes
ac_cv_func_gtk_adjustment_get_page_size=yes
ac_cv_func_gtk_dialog_get_action_area=yes
ac_cv_func_gtk_handle_box_new=yes
ac_cv_func_gtk_orientable_set_orientation=yes
ac_cv_func_gtk_tearoff_menu_item_new=yes
ac_cv_func_gtk_widget_get_mapped=yes
ac_cv_func_gtk_widget_get_sensitive=yes
ac_cv_func_gtk_widget_get_window=yes
ac_cv_func_gtk_widget_set_has_window=yes
ac_cv_func_gtk_window_set_has_resize_grip=yes
ac_cv_func_inotify_init1=yes
ac_cv_func_localtime_r=yes
ac_cv_func_log2=yes
ac_cv_func_lrand48=yes
ac_cv_func_lstat=yes
ac_cv_func_lutimes=yes
ac_cv_func_memrchr=yes
ac_cv_func_mkostemp=yes
ac_cv_func_mmap_fixed_mapped=yes
ac_cv_func_nanotime=no
ac_cv_func_newlocale=yes
ac_cv_func_pipe2=yes
ac_cv_func_posix_memalign=yes
ac_cv_func_posix_openpt=yes
ac_cv_func_pselect=yes
ac_cv_func_pthread_sigmask=yes
ac_cv_func_putenv=yes
ac_cv_func_random=yes
ac_cv_func_readlink=yes
ac_cv_func_readlinkat=yes
ac_cv_func_recvfrom=yes
ac_cv_func_rint=yes
ac_cv_func_secure_getenv=no
ac_cv_func_select=yes
ac_cv_func_sendto=yes
ac_cv_func_setitimer=yes
ac_cv_func_setlocale=yes
ac_cv_func_setrlimit=yes
ac_cv_func_shutdown=yes
ac_cv_func_sig2str=no
ac_cv_func_snprintf=yes
ac_cv_func_socket=yes
ac_cv_func_stpcpy=yes
ac_cv_func_strsignal=yes
ac_cv_func_strtoimax=yes
ac_cv_func_strtoumax=yes
ac_cv_func_symlink=yes
ac_cv_func_sync=yes
ac_cv_func_timegm=yes
ac_cv_func_timer_settime=yes
ac_cv_func_tzset=yes
ac_cv_func_utimensat=yes
ac_cv_func_vfork=yes
ac_cv_func_vfork_works=yes
ac_cv_have_decl_GTK_TYPE_FILE_SELECTION=no
ac_cv_have_decl_GTK_TYPE_HANDLE_BOX=yes
ac_cv_have_decl_GTK_TYPE_TEAROFF_MENU_ITEM=yes
ac_cv_have_decl___fpending=yes
ac_cv_have_decl_alarm=yes
ac_cv_have_decl_aligned_alloc=no
ac_cv_have_decl_fdatasync=yes
ac_cv_have_decl_fdopendir=yes
ac_cv_have_decl_getdtablesize=yes
ac_cv_have_decl_getenv=yes
ac_cv_have_decl_getloadavg=yes
ac_cv_have_decl_localtime_r=yes
ac_cv_have_decl_memrchr=yes
ac_cv_have_decl_png_longjmp=no
ac_cv_have_decl_strmode=no
ac_cv_have_decl_strtoimax=yes
ac_cv_have_decl_strtoumax=yes
ac_cv_have_decl_sys_siglist=yes
ac_cv_have_x='have_x=yes	ac_x_includes='\'''\''	ac_x_libraries='\'''\'''
ac_cv_header_X11_SM_SMlib_h=yes
ac_cv_header_X11_Xft_Xft_h=yes
ac_cv_header_X11_Xlib_xcb_h=no
ac_cv_header_X11_xpm_h=yes
ac_cv_header_acl_libacl_h=yes
ac_cv_header_arpa_inet_h=yes
ac_cv_header_byteswap_h=yes
ac_cv_header_coff_h=no
ac_cv_header_dirent_h=yes
ac_cv_header_execinfo_h=yes
ac_cv_header_getopt_h=yes
ac_cv_header_gif_lib_h=yes
ac_cv_header_gpm_h=yes
ac_cv_header_ifaddrs_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_machine_soundcard_h=no
ac_cv_header_maillock_h=yes
ac_cv_header_malloc_h=yes
ac_cv_header_malloc_malloc_h=no
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_mmsystem_h=no
ac_cv_header_net_if_dl_h=no
ac_cv_header_net_if_h=yes
ac_cv_header_netinet_in_h=yes
ac_cv_header_pthread_h=yes
ac_cv_header_pty_h=yes
ac_cv_header_pwd_h=yes
ac_cv_header_soundcard_h=no
ac_cv_header_stat_broken=no
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdio_ext_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_acl_h=yes
ac_cv_header_sys_inotify_h=yes
ac_cv_header_sys_loadavg_h=no
ac_cv_header_sys_param_h=yes
ac_cv_header_sys_resource_h=yes
ac_cv_header_sys_select_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_soundcard_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_sysinfo_h=yes
ac_cv_header_sys_systeminfo_h=no
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_un_h=yes
ac_cv_header_sys_utsname_h=yes
ac_cv_header_sys_vlimit_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_term_h=yes
ac_cv_header_tiffio_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_header_util_h=no
ac_cv_header_utime_h=yes
ac_cv_header_utmp_h=yes
ac_cv_header_valgrind_valgrind_h=no
ac_cv_header_vfork_h=no
ac_cv_header_wchar_h=yes
ac_cv_host=i686-pc-linux-gnu
ac_cv_lib_SM_SmcOpenConnection=yes
ac_cv_lib_Xbsd_main=no
ac_cv_lib_Xft_XftFontOpen=yes
ac_cv_lib_Xpm_XpmReadFileToPixmap=yes
ac_cv_lib_Xrender_XRenderQueryExtension=yes
ac_cv_lib_gif_EGifPutExtensionLast=yes
ac_cv_lib_gif_GifMakeMapObject=no
ac_cv_lib_gpm_Gpm_Open=yes
ac_cv_lib_lockfile_maillock=yes
ac_cv_lib_mail_maillock=no
ac_cv_lib_ossaudio__oss_ioctl=no
ac_cv_lib_otf_OTF_get_variation_glyphs=yes
ac_cv_lib_selinux_lgetfilecon=yes
ac_cv_lib_tiff_TIFFGetVersion=yes
ac_cv_lib_xml2_htmlReadMemory=yes
ac_cv_member_struct_ifreq_ifr_addr=yes
ac_cv_member_struct_ifreq_ifr_addr_sa_len=no
ac_cv_member_struct_ifreq_ifr_broadaddr=yes
ac_cv_member_struct_ifreq_ifr_flags=yes
ac_cv_member_struct_ifreq_ifr_hwaddr=yes
ac_cv_member_struct_ifreq_ifr_netmask=yes
ac_cv_member_struct_stat_st_atim_tv_nsec=yes
ac_cv_member_struct_stat_st_birthtim_tv_nsec=no
ac_cv_member_struct_stat_st_birthtimensec=no
ac_cv_member_struct_stat_st_birthtimespec_tv_nsec=no
ac_cv_member_struct_tm_tm_gmtoff=yes
ac_cv_member_struct_tm_tm_zone=yes
ac_cv_member_struct_unipair_unicode=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_GZIP_PROG=/bin/gzip
ac_cv_path_INSTALL_INFO=/home/redknight/local/bin/install-info
ac_cv_path_MAKE=make
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=mawk
ac_cv_prog_CPP='gcc -std=gnu11 -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_c11=-std=gnu11
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_gcc_c_o=yes
ac_cv_prog_cc_stdc=-std=gnu11
ac_cv_safe_to_define___extensions__=yes
ac_cv_search_acl_get_file=-lacl
ac_cv_search_backtrace_symbols_fd='none required'
ac_cv_search_clock_gettime=-lrt
ac_cv_search_fdatasync='none required'
ac_cv_search_inflateEnd=-lz
ac_cv_search_sqrt=-lm
ac_cv_search_timer_settime=-lrt
ac_cv_should_define__xopen_source=no
ac_cv_struct_st_dm_mode=no
ac_cv_struct_tm=time.h
ac_cv_sys_file_offset_bits=64
ac_cv_sys_largefile_CC=no
ac_cv_sys_largefile_source=no
ac_cv_sys_long_file_names=yes
ac_cv_type_getgroups=gid_t
ac_cv_type_long_long_int=yes
ac_cv_type_max_align_t=yes
ac_cv_type_mbstate_t=yes
ac_cv_type_mode_t=yes
ac_cv_type_nlink_t=yes
ac_cv_type_pid_t=yes
ac_cv_type_sighandler_t=yes
ac_cv_type_sigset_t=yes
ac_cv_type_socklen_t=yes
ac_cv_type_timezone_t=no
ac_cv_type_unsigned_long_long_int=yes
ac_cv_type_volatile_sig_atomic_t=yes
ac_cv_typeof_struct_stat_st_atim_is_struct_timespec=yes
ac_cv_working_alloca_h=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_ar_interface=ar
am_cv_make_support_nested_variables=yes
emacs_cv_alternate_stack=yes
emacs_cv_clang=no
emacs_cv_data_start=yes
emacs_cv_func___builtin_unwind_init=yes
emacs_cv_func__setjmp=yes
emacs_cv_func_sigsetjmp=yes
emacs_cv_have_timerfd=yes
emacs_cv_jpeglib=-ljpeg
emacs_cv_langinfo_codeset=yes
emacs_cv_linux_sysinfo=yes
emacs_cv_netdb_declares_h_errno=yes
emacs_cv_personality_linux32=yes
emacs_cv_prog_cc_g3=yes
emacs_cv_prog_cc_nopie=no
emacs_cv_prog_setfattr=no
emacs_cv_pthread_lib=-lpthread
emacs_cv_sanitize_address=no
emacs_cv_struct_alignment=yes
emacs_cv_usable_FIONREAD=yes
emacs_cv_usable_SIGIO=yes
emacs_cv_var_doug_lea_malloc=yes
emacs_cv_x11_version_6=yes
gl_cv_acl_ACL_FIRST_ENTRY=yes
gl_cv_acl_ACL_TYPE_EXTENDED=no
gl_cv_c_amsterdam_compiler=no
gl_cv_c_multiarch=no
gl_cv_decl_null_works=yes
gl_cv_decl_readlink_works=yes
gl_cv_decl_readlinkat_works=yes
gl_cv_func___fpending=yes
gl_cv_func_c99_strtold=yes
gl_cv_func_dup2_works=yes
gl_cv_func_fcntl_f_dupfd_cloexec='needs runtime check'
gl_cv_func_fcntl_f_dupfd_works=yes
gl_cv_func_fdopendir_works=yes
gl_cv_func_fstatat_zero_flag=yes
gl_cv_func_getdtablesize_works=yes
gl_cv_func_getopt_gnu=no
gl_cv_func_getopt_posix=yes
gl_cv_func_gettimeofday_clobber=no
gl_cv_func_gettimeofday_posix_signature=almost
gl_cv_func_lstat_dereferences_slashed_symlink=yes
gl_cv_func_printf_attribute_flavor=system
gl_cv_func_pselect_detects_ebadf=yes
gl_cv_func_pthread_sigmask_return_works=yes
gl_cv_func_pthread_sigmask_unblock_works='guessing yes'
gl_cv_func_readlink_works=yes
gl_cv_func_strtoimax=yes
gl_cv_func_symlink_works=yes
gl_cv_func_working_acl_get_file=yes
gl_cv_func_working_mktime=yes
gl_cv_func_working_utimes=yes
gl_cv_have_include_next=yes
gl_cv_header_errno_h_complete=yes
gl_cv_header_sys_select_h_selfcontained=yes
gl_cv_header_working_stdalign_h=no
gl_cv_header_working_stdint_h=yes
gl_cv_next_dirent_h='<dirent.h>'
gl_cv_next_fcntl_h='<fcntl.h>'
gl_cv_next_getopt_h='<getopt.h>'
gl_cv_next_inttypes_h='<inttypes.h>'
gl_cv_next_signal_h='<signal.h>'
gl_cv_next_stdint_h='<stdint.h>'
gl_cv_next_stdio_h='<stdio.h>'
gl_cv_next_stdlib_h='<stdlib.h>'
gl_cv_next_string_h='<string.h>'
gl_cv_next_sys_select_h='<sys/select.h>'
gl_cv_next_sys_stat_h='<sys/stat.h>'
gl_cv_next_sys_time_h='<sys/time.h>'
gl_cv_next_sys_types_h='<sys/types.h>'
gl_cv_next_time_h='<time.h>'
gl_cv_next_unistd_h='<unistd.h>'
gl_cv_pragma_columns=no
gl_cv_rpl_alloca=yes
gl_cv_sig_pselect=yes
gl_cv_sys_struct_timespec_in_time_h=yes
gl_cv_sys_struct_timeval=yes
gl_cv_sys_struct_timeval_tv_sec=yes
gl_cv_sys_struct_utimbuf=yes
gl_cv_time_r_posix=yes
gl_cv_type_sigset_t=yes
gt_cv_c_wchar_t=yes
gt_cv_ssize_t=yes
gt_cv_var_environ_declaration=yes
pkg_cv_ALSA_CFLAGS='-I/usr/include/alsa  '
pkg_cv_ALSA_LIBS='-lasound  '
pkg_cv_DBUS_CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include  '
pkg_cv_DBUS_LIBS='-ldbus-1  '
pkg_cv_FONTCONFIG_CFLAGS=' '
pkg_cv_FONTCONFIG_LIBS='-lfontconfig  '
pkg_cv_FREETYPE_CFLAGS='-I/usr/include/freetype2  '
pkg_cv_FREETYPE_LIBS='-lfreetype  '
pkg_cv_GCONF_CFLAGS='-pthread -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
pkg_cv_GCONF_LIBS='-lgconf-2 -lglib-2.0  '
pkg_cv_GOBJECT_CFLAGS='-I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
pkg_cv_GOBJECT_LIBS='-lgobject-2.0 -lglib-2.0  '
pkg_cv_GSETTINGS_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
pkg_cv_GSETTINGS_LIBS='-lgio-2.0 -lgobject-2.0 -lglib-2.0  '
pkg_cv_GTK_CFLAGS='-pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12  '
pkg_cv_GTK_LIBS='-lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0  '
pkg_cv_LIBGNUTLS_CFLAGS='-I/usr/include/p11-kit-1  '
pkg_cv_LIBGNUTLS_LIBS='-lgnutls  '
pkg_cv_LIBOTF_CFLAGS='-I/usr/include/freetype2  '
pkg_cv_LIBOTF_LIBS='-lz -lotf -lfreetype  '
pkg_cv_LIBXML2_CFLAGS='-I/usr/include/libxml2  '
pkg_cv_LIBXML2_LIBS='-lxml2  '
pkg_cv_M17N_FLT_CFLAGS=' '
pkg_cv_M17N_FLT_LIBS='-lm17n-flt -lm17n-core  '
pkg_cv_RSVG_CFLAGS='-pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2  '
pkg_cv_RSVG_LIBS='-lrsvg-2 -lm -lgio-2.0 -lgdk_pixbuf-2.0 -lcairo -lgobject-2.0 -lglib-2.0  '
pkg_cv_XFIXES_CFLAGS=' '
pkg_cv_XFIXES_LIBS='-lXfixes  '
pkg_cv_XFT_CFLAGS='-I/usr/include/freetype2  '
pkg_cv_XFT_LIBS='-lXft  '
pkg_cv_XINERAMA_CFLAGS=' '
pkg_cv_XINERAMA_LIBS='-lXinerama  '
pkg_cv_XRANDR_CFLAGS=' '
pkg_cv_XRANDR_LIBS='-lXrandr  '

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /home/redknight/git/emacs/build-aux/missing --run aclocal-1.11'
ACLOCAL_PATH=''
ALLOCA=''
ALLOCA_H='alloca.h'
ALSA_CFLAGS='-I/usr/include/alsa  '
ALSA_LIBS='-lasound  '
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='0'
AM_V='$(V)'
APPLE_UNIVERSAL_BUILD='0'
AR='ar'
ARFLAGS='cr'
AUTOCONF='${SHELL} /home/redknight/git/emacs/build-aux/missing --run autoconf'
AUTOHEADER='${SHELL} /home/redknight/git/emacs/build-aux/missing --run autoheader'
AUTOMAKE='${SHELL} /home/redknight/git/emacs/build-aux/missing --run automake-1.11'
AUTO_DEPEND='yes'
AWK='mawk'
BITSIZEOF_PTRDIFF_T=''
BITSIZEOF_SIG_ATOMIC_T=''
BITSIZEOF_SIZE_T=''
BITSIZEOF_WCHAR_T=''
BITSIZEOF_WINT_T=''
BLESSMAIL_TARGET='need-blessmail'
BUILDING_FOR_WINDOWSNT_FALSE=''
BUILDING_FOR_WINDOWSNT_TRUE='#'
BYTESWAP_H=''
CAIRO_CFLAGS=''
CAIRO_LIBS=''
CANNOT_DUMP='no'
CC='gcc -std=gnu11'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g3 -O2'
CFLAGS_SOUND=' -I/usr/include/alsa  '
CLIENTRES=''
CLIENTW=''
CM_OBJ='cm.o'
COM_ERRLIB=''
CPP='gcc -std=gnu11 -E'
CPPFLAGS='  '
CRYPTOLIB=''
CYGPATH_W='echo'
CYGWIN_OBJ=''
C_SWITCH_MACHINE=''
C_SWITCH_SYSTEM=''
C_SWITCH_X_SITE=' -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12   -I/usr/include/freetype2  '
DBUS_CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include  '
DBUS_LIBS='-ldbus-1  '
DBUS_OBJ='dbusbind.o'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DESLIB=''
DOCMISC_W32=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EMACSRES=''
EMACS_MANIFEST=''
EMULTIHOP_HIDDEN=''
EMULTIHOP_VALUE=''
ENOLINK_HIDDEN=''
ENOLINK_VALUE=''
EOVERFLOW_HIDDEN=''
EOVERFLOW_VALUE=''
ERRNO_H=''
EXECINFO_H=''
EXEEXT=''
FIRSTFILE_OBJ=''
FONTCONFIG_CFLAGS=' '
FONTCONFIG_LIBS='-lfontconfig  '
FONT_OBJ='xfont.o ftfont.o xftfont.o ftxfont.o'
FREETYPE_CFLAGS='-I/usr/include/freetype2  '
FREETYPE_LIBS='-lfreetype  '
GCONF_CFLAGS='-pthread -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
GCONF_LIBS='-lgconf-2 -lglib-2.0  '
GETLOADAVG_LIBS=''
GETOPT_H='getopt.h'
GFILENOTIFY_CFLAGS=''
GFILENOTIFY_LIBS=''
GL_COND_LIBTOOL_FALSE=''
GL_COND_LIBTOOL_TRUE='#'
GL_GENERATE_ALLOCA_H_FALSE='#'
GL_GENERATE_ALLOCA_H_TRUE=''
GL_GENERATE_BYTESWAP_H_FALSE=''
GL_GENERATE_BYTESWAP_H_TRUE='#'
GL_GENERATE_ERRNO_H_FALSE=''
GL_GENERATE_ERRNO_H_TRUE='#'
GL_GENERATE_EXECINFO_H_FALSE=''
GL_GENERATE_EXECINFO_H_TRUE='#'
GL_GENERATE_STDALIGN_H_FALSE='#'
GL_GENERATE_STDALIGN_H_TRUE=''
GL_GENERATE_STDDEF_H_FALSE=''
GL_GENERATE_STDDEF_H_TRUE='#'
GL_GENERATE_STDINT_H_FALSE=''
GL_GENERATE_STDINT_H_TRUE='#'
GMALLOC_OBJ=''
GNULIB_ALPHASORT='0'
GNULIB_ATOLL='0'
GNULIB_CALLOC_POSIX='0'
GNULIB_CANONICALIZE_FILE_NAME='0'
GNULIB_CHDIR='0'
GNULIB_CHOWN='0'
GNULIB_CLOSE='0'
GNULIB_CLOSEDIR='0'
GNULIB_DIRFD='0'
GNULIB_DPRINTF='0'
GNULIB_DUP2='1'
GNULIB_DUP3='0'
GNULIB_DUP='0'
GNULIB_ENVIRON='1'
GNULIB_EUIDACCESS='0'
GNULIB_FACCESSAT='1'
GNULIB_FCHDIR='0'
GNULIB_FCHMODAT='0'
GNULIB_FCHOWNAT='0'
GNULIB_FCLOSE='0'
GNULIB_FCNTL='1'
GNULIB_FDATASYNC='1'
GNULIB_FDOPEN='0'
GNULIB_FDOPENDIR='1'
GNULIB_FFLUSH='0'
GNULIB_FFSL='0'
GNULIB_FFSLL='0'
GNULIB_FGETC='1'
GNULIB_FGETS='1'
GNULIB_FOPEN='0'
GNULIB_FPRINTF='1'
GNULIB_FPRINTF_POSIX='0'
GNULIB_FPURGE='0'
GNULIB_FPUTC='1'
GNULIB_FPUTS='1'
GNULIB_FREAD='1'
GNULIB_FREOPEN='0'
GNULIB_FSCANF='1'
GNULIB_FSEEK='0'
GNULIB_FSEEKO='0'
GNULIB_FSTAT='0'
GNULIB_FSTATAT='1'
GNULIB_FSYNC='1'
GNULIB_FTELL='0'
GNULIB_FTELLO='0'
GNULIB_FTRUNCATE='0'
GNULIB_FUTIMENS='0'
GNULIB_FWRITE='1'
GNULIB_GETC='1'
GNULIB_GETCHAR='1'
GNULIB_GETCWD='0'
GNULIB_GETDELIM='0'
GNULIB_GETDOMAINNAME='0'
GNULIB_GETDTABLESIZE='1'
GNULIB_GETGROUPS='0'
GNULIB_GETHOSTNAME='0'
GNULIB_GETLINE='0'
GNULIB_GETLOADAVG='1'
GNULIB_GETLOGIN='0'
GNULIB_GETLOGIN_R='0'
GNULIB_GETPAGESIZE='0'
GNULIB_GETSUBOPT='0'
GNULIB_GETTIMEOFDAY='1'
GNULIB_GETUSERSHELL='0'
GNULIB_GL_UNISTD_H_GETOPT='1'
GNULIB_GRANTPT='0'
GNULIB_GROUP_MEMBER='0'
GNULIB_IMAXABS='0'
GNULIB_IMAXDIV='0'
GNULIB_ISATTY='0'
GNULIB_LCHMOD='0'
GNULIB_LCHOWN='0'
GNULIB_LINK='0'
GNULIB_LINKAT='0'
GNULIB_LSEEK='0'
GNULIB_LSTAT='1'
GNULIB_MALLOC_POSIX='0'
GNULIB_MBSCASECMP='0'
GNULIB_MBSCASESTR='0'
GNULIB_MBSCHR='0'
GNULIB_MBSCSPN='0'
GNULIB_MBSLEN='0'
GNULIB_MBSNCASECMP='0'
GNULIB_MBSNLEN='0'
GNULIB_MBSPBRK='0'
GNULIB_MBSPCASECMP='0'
GNULIB_MBSRCHR='0'
GNULIB_MBSSEP='0'
GNULIB_MBSSPN='0'
GNULIB_MBSSTR='0'
GNULIB_MBSTOK_R='0'
GNULIB_MBTOWC='0'
GNULIB_MEMCHR='0'
GNULIB_MEMMEM='0'
GNULIB_MEMPCPY='0'
GNULIB_MEMRCHR='1'
GNULIB_MKDIRAT='0'
GNULIB_MKDTEMP='0'
GNULIB_MKFIFO='0'
GNULIB_MKFIFOAT='0'
GNULIB_MKNOD='0'
GNULIB_MKNODAT='0'
GNULIB_MKOSTEMP='1'
GNULIB_MKOSTEMPS='0'
GNULIB_MKSTEMP='0'
GNULIB_MKSTEMPS='0'
GNULIB_MKTIME='1'
GNULIB_NANOSLEEP='0'
GNULIB_NONBLOCKING='0'
GNULIB_OBSTACK_PRINTF='0'
GNULIB_OBSTACK_PRINTF_POSIX='0'
GNULIB_OPEN='0'
GNULIB_OPENAT='0'
GNULIB_OPENDIR='0'
GNULIB_PCLOSE='0'
GNULIB_PERROR='0'
GNULIB_PIPE2='1'
GNULIB_PIPE='0'
GNULIB_POPEN='0'
GNULIB_POSIX_OPENPT='0'
GNULIB_PREAD='0'
GNULIB_PRINTF='1'
GNULIB_PRINTF_POSIX='0'
GNULIB_PSELECT='1'
GNULIB_PTHREAD_SIGMASK='1'
GNULIB_PTSNAME='0'
GNULIB_PTSNAME_R='0'
GNULIB_PUTC='1'
GNULIB_PUTCHAR='1'
GNULIB_PUTENV='1'
GNULIB_PUTS='1'
GNULIB_PWRITE='0'
GNULIB_QSORT_R='0'
GNULIB_RAISE='0'
GNULIB_RANDOM='0'
GNULIB_RANDOM_R='0'
GNULIB_RAWMEMCHR='0'
GNULIB_READ='0'
GNULIB_READDIR='0'
GNULIB_READLINK='1'
GNULIB_READLINKAT='1'
GNULIB_REALLOC_POSIX='0'
GNULIB_REALPATH='0'
GNULIB_REMOVE='0'
GNULIB_RENAME='0'
GNULIB_RENAMEAT='0'
GNULIB_REWINDDIR='0'
GNULIB_RMDIR='0'
GNULIB_RPMATCH='0'
GNULIB_SCANDIR='0'
GNULIB_SCANF='1'
GNULIB_SECURE_GETENV='0'
GNULIB_SELECT='0'
GNULIB_SETENV='0'
GNULIB_SETHOSTNAME='0'
GNULIB_SIGACTION='0'
GNULIB_SIGNAL_H_SIGPIPE='0'
GNULIB_SIGPROCMASK='0'
GNULIB_SLEEP='0'
GNULIB_SNPRINTF='0'
GNULIB_SPRINTF_POSIX='0'
GNULIB_STAT='0'
GNULIB_STDIO_H_NONBLOCKING='0'
GNULIB_STDIO_H_SIGPIPE='0'
GNULIB_STPCPY='1'
GNULIB_STPNCPY='0'
GNULIB_STRCASESTR='0'
GNULIB_STRCHRNUL='0'
GNULIB_STRDUP='0'
GNULIB_STRERROR='0'
GNULIB_STRERROR_R='0'
GNULIB_STRNCAT='0'
GNULIB_STRNDUP='0'
GNULIB_STRNLEN='0'
GNULIB_STRPBRK='0'
GNULIB_STRPTIME='0'
GNULIB_STRSEP='0'
GNULIB_STRSIGNAL='0'
GNULIB_STRSTR='0'
GNULIB_STRTOD='0'
GNULIB_STRTOIMAX='1'
GNULIB_STRTOK_R='0'
GNULIB_STRTOLL='0'
GNULIB_STRTOULL='0'
GNULIB_STRTOUMAX='1'
GNULIB_STRVERSCMP='0'
GNULIB_SYMLINK='1'
GNULIB_SYMLINKAT='0'
GNULIB_SYSTEM_POSIX='0'
GNULIB_TIMEGM='1'
GNULIB_TIME_R='1'
GNULIB_TIME_RZ='1'
GNULIB_TMPFILE='0'
GNULIB_TTYNAME_R='0'
GNULIB_UNISTD_H_NONBLOCKING='0'
GNULIB_UNISTD_H_SIGPIPE='0'
GNULIB_UNLINK='0'
GNULIB_UNLINKAT='0'
GNULIB_UNLOCKPT='0'
GNULIB_UNSETENV='0'
GNULIB_USLEEP='0'
GNULIB_UTIMENSAT='0'
GNULIB_VASPRINTF='0'
GNULIB_VDPRINTF='0'
GNULIB_VFPRINTF='1'
GNULIB_VFPRINTF_POSIX='0'
GNULIB_VFSCANF='0'
GNULIB_VPRINTF='1'
GNULIB_VPRINTF_POSIX='0'
GNULIB_VSCANF='0'
GNULIB_VSNPRINTF='0'
GNULIB_VSPRINTF_POSIX='0'
GNULIB_WARN_CFLAGS=''
GNULIB_WCTOMB='0'
GNULIB_WRITE='0'
GNULIB__EXIT='0'
GNUSTEP_CFLAGS=''
GNU_OBJC_CFLAGS=''
GOBJECT_CFLAGS='-I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
GOBJECT_LIBS='-lgobject-2.0 -lglib-2.0  '
GREP='/bin/grep'
GSETTINGS_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
GSETTINGS_LIBS='-lgio-2.0 -lgobject-2.0 -lglib-2.0  '
GTK_CFLAGS='-pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12  '
GTK_LIBS='-lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0  '
GTK_OBJ='gtkutil.o emacsgtkfixed.o'
GZIP_PROG='/bin/gzip'
HAVE_ALPHASORT='1'
HAVE_ATOLL='1'
HAVE_CANONICALIZE_FILE_NAME='1'
HAVE_CHOWN='1'
HAVE_CLOSEDIR='1'
HAVE_DECL_DIRFD='1'
HAVE_DECL_ENVIRON='1'
HAVE_DECL_FCHDIR='1'
HAVE_DECL_FDATASYNC='1'
HAVE_DECL_FDOPENDIR='1'
HAVE_DECL_FPURGE='1'
HAVE_DECL_FSEEKO='1'
HAVE_DECL_FTELLO='1'
HAVE_DECL_GETDELIM='1'
HAVE_DECL_GETDOMAINNAME='1'
HAVE_DECL_GETLINE='1'
HAVE_DECL_GETLOADAVG='1'
HAVE_DECL_GETLOGIN_R='1'
HAVE_DECL_GETPAGESIZE='1'
HAVE_DECL_GETUSERSHELL='1'
HAVE_DECL_IMAXABS='1'
HAVE_DECL_IMAXDIV='1'
HAVE_DECL_LOCALTIME_R='1'
HAVE_DECL_MEMMEM='1'
HAVE_DECL_MEMRCHR='1'
HAVE_DECL_OBSTACK_PRINTF='1'
HAVE_DECL_SETENV='1'
HAVE_DECL_SETHOSTNAME='1'
HAVE_DECL_SNPRINTF='1'
HAVE_DECL_STRDUP='1'
HAVE_DECL_STRERROR_R='1'
HAVE_DECL_STRNDUP='1'
HAVE_DECL_STRNLEN='1'
HAVE_DECL_STRSIGNAL='1'
HAVE_DECL_STRTOIMAX='1'
HAVE_DECL_STRTOK_R='1'
HAVE_DECL_STRTOUMAX='1'
HAVE_DECL_TTYNAME_R='1'
HAVE_DECL_UNSETENV='1'
HAVE_DECL_VSNPRINTF='1'
HAVE_DIRENT_H='1'
HAVE_DPRINTF='1'
HAVE_DUP2='1'
HAVE_DUP3='1'
HAVE_EUIDACCESS='1'
HAVE_FACCESSAT='1'
HAVE_FCHDIR='1'
HAVE_FCHMODAT='1'
HAVE_FCHOWNAT='1'
HAVE_FCNTL='1'
HAVE_FDATASYNC='1'
HAVE_FDOPENDIR='1'
HAVE_FFSL='1'
HAVE_FFSLL='1'
HAVE_FSEEKO='1'
HAVE_FSTATAT='1'
HAVE_FSYNC='1'
HAVE_FTELLO='1'
HAVE_FTRUNCATE='1'
HAVE_FUTIMENS='1'
HAVE_GETDTABLESIZE='1'
HAVE_GETGROUPS='1'
HAVE_GETHOSTNAME='1'
HAVE_GETLOGIN='1'
HAVE_GETOPT_H='1'
HAVE_GETPAGESIZE='1'
HAVE_GETSUBOPT='1'
HAVE_GETTIMEOFDAY='1'
HAVE_GRANTPT='1'
HAVE_GROUP_MEMBER='1'
HAVE_INTTYPES_H='1'
HAVE_LCHMOD='1'
HAVE_LCHOWN='1'
HAVE_LINK='1'
HAVE_LINKAT='1'
HAVE_LONG_LONG_INT='1'
HAVE_LSTAT='1'
HAVE_MAKEINFO='yes'
HAVE_MAX_ALIGN_T='1'
HAVE_MBSLEN='0'
HAVE_MEMCHR='1'
HAVE_MEMPCPY='1'
HAVE_MKDIRAT='1'
HAVE_MKDTEMP='1'
HAVE_MKFIFO='1'
HAVE_MKFIFOAT='1'
HAVE_MKNOD='1'
HAVE_MKNODAT='1'
HAVE_MKOSTEMP='1'
HAVE_MKOSTEMPS='1'
HAVE_MKSTEMP='1'
HAVE_MKSTEMPS='1'
HAVE_NANOSLEEP='1'
HAVE_OPENAT='1'
HAVE_OPENDIR='1'
HAVE_OS_H='0'
HAVE_PCLOSE='1'
HAVE_PIPE2='1'
HAVE_PIPE='1'
HAVE_POPEN='1'
HAVE_POSIX_OPENPT='1'
HAVE_POSIX_SIGNALBLOCKING='1'
HAVE_PREAD='1'
HAVE_PSELECT='1'
HAVE_PTHREAD_SIGMASK='1'
HAVE_PTSNAME='1'
HAVE_PTSNAME_R='1'
HAVE_PWRITE='1'
HAVE_RAISE='1'
HAVE_RANDOM='1'
HAVE_RANDOM_H='1'
HAVE_RANDOM_R='1'
HAVE_RAWMEMCHR='1'
HAVE_READDIR='1'
HAVE_READLINK='1'
HAVE_READLINKAT='1'
HAVE_REALPATH='1'
HAVE_RENAMEAT='1'
HAVE_REWINDDIR='1'
HAVE_RPMATCH='1'
HAVE_SCANDIR='1'
HAVE_SECURE_GETENV='1'
HAVE_SETENV='1'
HAVE_SETHOSTNAME='1'
HAVE_SIGACTION='1'
HAVE_SIGHANDLER_T='1'
HAVE_SIGINFO_T='1'
HAVE_SIGNED_SIG_ATOMIC_T=''
HAVE_SIGNED_WCHAR_T=''
HAVE_SIGNED_WINT_T=''
HAVE_SIGSET_T='1'
HAVE_SLEEP='1'
HAVE_STDINT_H='1'
HAVE_STPCPY='1'
HAVE_STPNCPY='1'
HAVE_STRCASESTR='1'
HAVE_STRCHRNUL='1'
HAVE_STRPBRK='1'
HAVE_STRPTIME='1'
HAVE_STRSEP='1'
HAVE_STRTOD='1'
HAVE_STRTOLL='1'
HAVE_STRTOULL='1'
HAVE_STRUCT_RANDOM_DATA='1'
HAVE_STRUCT_SIGACTION_SA_SIGACTION='1'
HAVE_STRUCT_TIMEVAL='1'
HAVE_STRVERSCMP='1'
HAVE_SYMLINK='1'
HAVE_SYMLINKAT='1'
HAVE_SYS_BITYPES_H=''
HAVE_SYS_INTTYPES_H=''
HAVE_SYS_LOADAVG_H='0'
HAVE_SYS_PARAM_H='0'
HAVE_SYS_SELECT_H='1'
HAVE_SYS_TIME_H='1'
HAVE_SYS_TYPES_H='1'
HAVE_TIMEGM='1'
HAVE_TIMEZONE_T='0'
HAVE_TYPE_VOLATILE_SIG_ATOMIC_T='1'
HAVE_UNISTD_H='1'
HAVE_UNLINKAT='1'
HAVE_UNLOCKPT='1'
HAVE_UNSIGNED_LONG_LONG_INT='1'
HAVE_USLEEP='1'
HAVE_UTIMENSAT='1'
HAVE_VASPRINTF='1'
HAVE_VDPRINTF='1'
HAVE_WCHAR_H='1'
HAVE_WCHAR_T='1'
HAVE_WINSOCK2_H='0'
HAVE_XSERVER=''
HAVE__EXIT='1'
HYBRID_MALLOC=''
HYBRID_MALLOC_LIB_FALSE=''
HYBRID_MALLOC_LIB_TRUE='#'
IMAGEMAGICK_CFLAGS=''
IMAGEMAGICK_LIBS=''
INCLUDE_NEXT='include_next'
INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'
INSTALL_ARCH_INDEP_EXTRA='install-etc'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_INFO='/home/redknight/local/bin/install-info'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
INT32_MAX_LT_INTMAX_MAX='1'
INT64_MAX_EQ_LONG_MAX='defined _LP64'
KQUEUE_CFLAGS=''
KQUEUE_LIBS=''
KRB4LIB=''
KRB5LIB=''
LDFLAGS=' '
LD_SWITCH_SYSTEM=''
LD_SWITCH_SYSTEM_TEMACS='-Wl,-znocombreloc $(LD_SWITCH_X_SITE_RPATH)'
LD_SWITCH_X_SITE=''
LD_SWITCH_X_SITE_RPATH=''
LIBGIF='-lgif'
LIBGNUTLS3_CFLAGS=''
LIBGNUTLS3_LIBS=''
LIBGNUTLS_CFLAGS='-I/usr/include/p11-kit-1  '
LIBGNUTLS_LIBS='-lgnutls  '
LIBGNU_LIBDEPS=''
LIBGNU_LTLIBDEPS=''
LIBGPM='-lgpm'
LIBHESIOD=''
LIBINTL=''
LIBJPEG='-ljpeg'
LIBMODULES=''
LIBOBJS=''
LIBOTF_CFLAGS='-I/usr/include/freetype2  '
LIBOTF_LIBS='-lz -lotf -lfreetype  '
LIBPNG='-lpng12'
LIBRESOLV=''
LIBS=' '
LIBSELINUX_LIBS='-lselinux'
LIBSOUND=' -lasound  '
LIBS_ECLIENT=''
LIBS_GNUSTEP=''
LIBS_MAIL='-llockfile'
LIBS_SYSTEM=''
LIBS_TERMCAP='-ltinfo'
LIBTIFF='-ltiff'
LIBXMENU=''
LIBXML2_CFLAGS='-I/usr/include/libxml2  '
LIBXML2_LIBS='-lxml2  '
LIBXMU=''
LIBXPM='-lXpm'
LIBXSM='-lSM -lICE'
LIBXTR6=''
LIBXT_OTHER='$(LIBXSM)'
LIBX_OTHER='$(LIBXT) $(LIBX_EXTRA)'
LIBZ='-lz'
LIB_ACL='-lacl'
LIB_CLOCK_GETTIME='-lrt'
LIB_EACCESS=''
LIB_EXECINFO=''
LIB_FDATASYNC=''
LIB_MATH='-lm'
LIB_PTHREAD='-lpthread'
LIB_PTHREAD_SIGMASK=''
LIB_TIMER_TIME='-lrt'
LIB_WSOCK32=''
LN_S_FILEONLY='ln -s'
LTLIBINTL=''
LTLIBOBJS=''
M17N_FLT_CFLAGS=' '
M17N_FLT_LIBS='-lm17n-flt -lm17n-core  '
MAKEINFO='makeinfo'
MAKE_PROG=''
MKDIR_P='/bin/mkdir -p'
MODULES_OBJ=''
NEXT_AS_FIRST_DIRECTIVE_DIRENT_H='<dirent.h>'
NEXT_AS_FIRST_DIRECTIVE_ERRNO_H=''
NEXT_AS_FIRST_DIRECTIVE_FCNTL_H='<fcntl.h>'
NEXT_AS_FIRST_DIRECTIVE_GETOPT_H='<getopt.h>'
NEXT_AS_FIRST_DIRECTIVE_INTTYPES_H='<inttypes.h>'
NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H='<signal.h>'
NEXT_AS_FIRST_DIRECTIVE_STDDEF_H=''
NEXT_AS_FIRST_DIRECTIVE_STDINT_H='<stdint.h>'
NEXT_AS_FIRST_DIRECTIVE_STDIO_H='<stdio.h>'
NEXT_AS_FIRST_DIRECTIVE_STDLIB_H='<stdlib.h>'
NEXT_AS_FIRST_DIRECTIVE_STRING_H='<string.h>'
NEXT_AS_FIRST_DIRECTIVE_SYS_SELECT_H='<sys/select.h>'
NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H='<sys/stat.h>'
NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H='<sys/time.h>'
NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H='<sys/types.h>'
NEXT_AS_FIRST_DIRECTIVE_TIME_H='<time.h>'
NEXT_AS_FIRST_DIRECTIVE_UNISTD_H='<unistd.h>'
NEXT_DIRENT_H='<dirent.h>'
NEXT_ERRNO_H=''
NEXT_FCNTL_H='<fcntl.h>'
NEXT_GETOPT_H='<getopt.h>'
NEXT_INTTYPES_H='<inttypes.h>'
NEXT_SIGNAL_H='<signal.h>'
NEXT_STDDEF_H=''
NEXT_STDINT_H='<stdint.h>'
NEXT_STDIO_H='<stdio.h>'
NEXT_STDLIB_H='<stdlib.h>'
NEXT_STRING_H='<string.h>'
NEXT_SYS_SELECT_H='<sys/select.h>'
NEXT_SYS_STAT_H='<sys/stat.h>'
NEXT_SYS_TIME_H='<sys/time.h>'
NEXT_SYS_TYPES_H='<sys/types.h>'
NEXT_TIME_H='<time.h>'
NEXT_UNISTD_H='<unistd.h>'
NOTIFY_CFLAGS=''
NOTIFY_LIBS=''
NOTIFY_OBJ='inotify.o'
NS_OBJ=''
NS_OBJC_OBJ=''
NTDIR=''
NTLIB=''
OBJEXT='o'
OTHER_FILES=''
PACKAGE='emacs'
PACKAGE_BUGREPORT='bug-gnu-emacs@gnu.org'
PACKAGE_NAME='GNU Emacs'
PACKAGE_STRING='GNU Emacs 25.1.50'
PACKAGE_TARNAME='emacs'
PACKAGE_URL='http://www.gnu.org/software/emacs/'
PACKAGE_VERSION='25.1.50'
PATH_SEPARATOR=':'
PAXCTL=''
PKG_CONFIG='/usr/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH=''
PNG_CFLAGS='-I/usr/include/libpng12'
POST_ALLOC_OBJ=''
PRAGMA_COLUMNS=''
PRAGMA_SYSTEM_HEADER='#pragma GCC system_header'
PRE_ALLOC_OBJ='lastfile.o'
PRIPTR_PREFIX='__PRIPTR_PREFIX'
PRI_MACROS_BROKEN='0'
PROFILING_CFLAGS=''
PTHREAD_H_DEFINES_STRUCT_TIMESPEC='0'
PTRDIFF_T_SUFFIX=''
RALLOC_OBJ=''
RANLIB='ranlib'
REPLACE_CALLOC='0'
REPLACE_CANONICALIZE_FILE_NAME='0'
REPLACE_CHOWN='0'
REPLACE_CLOSE='0'
REPLACE_CLOSEDIR='0'
REPLACE_DIRFD='0'
REPLACE_DPRINTF='0'
REPLACE_DUP2='0'
REPLACE_DUP='0'
REPLACE_FCHOWNAT='0'
REPLACE_FCLOSE='0'
REPLACE_FCNTL='1'
REPLACE_FDOPEN='0'
REPLACE_FDOPENDIR='0'
REPLACE_FFLUSH='0'
REPLACE_FOPEN='0'
REPLACE_FPRINTF='0'
REPLACE_FPURGE='0'
REPLACE_FREOPEN='0'
REPLACE_FSEEK='0'
REPLACE_FSEEKO='0'
REPLACE_FSTAT='0'
REPLACE_FSTATAT='0'
REPLACE_FTELL='0'
REPLACE_FTELLO='0'
REPLACE_FTRUNCATE='0'
REPLACE_FUTIMENS='0'
REPLACE_GETCWD='0'
REPLACE_GETDELIM='0'
REPLACE_GETDOMAINNAME='0'
REPLACE_GETDTABLESIZE='0'
REPLACE_GETGROUPS='0'
REPLACE_GETLINE='0'
REPLACE_GETLOGIN_R='0'
REPLACE_GETPAGESIZE='0'
REPLACE_GETTIMEOFDAY='0'
REPLACE_GMTIME='0'
REPLACE_ISATTY='0'
REPLACE_LCHOWN='0'
REPLACE_LINK='0'
REPLACE_LINKAT='0'
REPLACE_LOCALTIME='0'
REPLACE_LOCALTIME_R='0'
REPLACE_LSEEK='0'
REPLACE_LSTAT='0'
REPLACE_MALLOC='0'
REPLACE_MBTOWC='0'
REPLACE_MEMCHR='0'
REPLACE_MEMMEM='0'
REPLACE_MKDIR='0'
REPLACE_MKFIFO='0'
REPLACE_MKNOD='0'
REPLACE_MKSTEMP='0'
REPLACE_MKTIME='0'
REPLACE_NANOSLEEP='GNULIB_PORTCHECK'
REPLACE_NULL='0'
REPLACE_OBSTACK_PRINTF='0'
REPLACE_OPEN='0'
REPLACE_OPENAT='0'
REPLACE_OPENDIR='0'
REPLACE_PERROR='0'
REPLACE_POPEN='0'
REPLACE_PREAD='0'
REPLACE_PRINTF='0'
REPLACE_PSELECT='0'
REPLACE_PTHREAD_SIGMASK='0'
REPLACE_PTSNAME='0'
REPLACE_PTSNAME_R='0'
REPLACE_PUTENV='0'
REPLACE_PWRITE='0'
REPLACE_QSORT_R='0'
REPLACE_RAISE='0'
REPLACE_RANDOM_R='0'
REPLACE_READ='0'
REPLACE_READLINK='0'
REPLACE_READLINKAT='0'
REPLACE_REALLOC='0'
REPLACE_REALPATH='0'
REPLACE_REMOVE='0'
REPLACE_RENAME='0'
REPLACE_RENAMEAT='0'
REPLACE_RMDIR='0'
REPLACE_SELECT='0'
REPLACE_SETENV='0'
REPLACE_SLEEP='0'
REPLACE_SNPRINTF='0'
REPLACE_SPRINTF='0'
REPLACE_STAT='0'
REPLACE_STDIO_READ_FUNCS='0'
REPLACE_STDIO_WRITE_FUNCS='0'
REPLACE_STPNCPY='0'
REPLACE_STRCASESTR='0'
REPLACE_STRCHRNUL='0'
REPLACE_STRDUP='0'
REPLACE_STRERROR='0'
REPLACE_STRERROR_R='0'
REPLACE_STRNCAT='0'
REPLACE_STRNDUP='0'
REPLACE_STRNLEN='0'
REPLACE_STRSIGNAL='0'
REPLACE_STRSTR='0'
REPLACE_STRTOD='0'
REPLACE_STRTOIMAX='0'
REPLACE_STRTOK_R='0'
REPLACE_STRTOUMAX='0'
REPLACE_STRUCT_TIMEVAL='0'
REPLACE_SYMLINK='0'
REPLACE_SYMLINKAT='0'
REPLACE_TIMEGM='0'
REPLACE_TMPFILE='0'
REPLACE_TTYNAME_R='0'
REPLACE_UNLINK='0'
REPLACE_UNLINKAT='0'
REPLACE_UNSETENV='0'
REPLACE_USLEEP='0'
REPLACE_UTIMENSAT='0'
REPLACE_VASPRINTF='0'
REPLACE_VDPRINTF='0'
REPLACE_VFPRINTF='0'
REPLACE_VPRINTF='0'
REPLACE_VSNPRINTF='0'
REPLACE_VSPRINTF='0'
REPLACE_WCTOMB='0'
REPLACE_WRITE='0'
RSVG_CFLAGS='-pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2  '
RSVG_LIBS='-lrsvg-2 -lm -lgio-2.0 -lgdk_pixbuf-2.0 -lcairo -lgobject-2.0 -lglib-2.0  '
SEPCHAR=':'
SETFATTR=''
SETTINGS_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include   -pthread -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
SETTINGS_LIBS='-lgio-2.0 -lgobject-2.0 -lglib-2.0   -lgconf-2 -lglib-2.0   -lgobject-2.0 -lglib-2.0  '
SET_MAKE=''
SHELL='/bin/bash'
SIG_ATOMIC_T_SUFFIX=''
SIZE_T_SUFFIX=''
STDALIGN_H='stdalign.h'
STDDEF_H=''
STDINT_H=''
STRIP=''
SUBDIR_MAKEFILES_IN=' $(srcdir)/lib/Makefile.in $(srcdir)/lib-src/Makefile.in $(srcdir)/oldXMenu/Makefile.in $(srcdir)/doc/emacs/Makefile.in $(srcdir)/doc/misc/Makefile.in $(srcdir)/doc/lispintro/Makefile.in $(srcdir)/doc/lispref/Makefile.in $(srcdir)/src/Makefile.in $(srcdir)/lwlib/Makefile.in $(srcdir)/lisp/Makefile.in $(srcdir)/leim/Makefile.in $(srcdir)/nextstep/Makefile.in $(srcdir)/nt/Makefile.in $(srcdir)/test/Makefile.in $(srcdir)/admin/charsets/Makefile.in $(srcdir)/admin/unidata/Makefile.in $(srcdir)/admin/grammars/Makefile.in'
SYS_TIME_H_DEFINES_STRUCT_TIMESPEC='0'
TERMCAP_OBJ='terminfo.o'
TIME_H_DEFINES_STRUCT_TIMESPEC='1'
TOOLKIT_LIBW='-lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0  '
UINT32_MAX_LT_UINTMAX_MAX='1'
UINT64_MAX_EQ_ULONG_MAX='defined _LP64'
UNDEFINE_STRTOK_R='0'
UNEXEC_OBJ='unexelf.o'
UNISTD_H_DEFINES_STRUCT_TIMESPEC='0'
UNISTD_H_HAVE_WINSOCK2_H='0'
UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS='0'
UPDATE_MANIFEST=''
USE_ACL='1'
VERSION='25.1.50'
VMLIMIT_OBJ='vm-limit.o'
W32_LIBS=''
W32_OBJ=''
W32_RES_LINK=''
WARN_CFLAGS=''
WCHAR_T_SUFFIX=''
WEBKIT_CFLAGS=''
WEBKIT_LIBS=''
WERROR_CFLAGS=''
WIDGET_OBJ=''
WINDOWS_64_BIT_OFF_T='0'
WINDOWS_64_BIT_ST_SIZE='0'
WINDOW_SYSTEM_OBJ='fontset.o fringe.o image.o'
WINDRES=''
WINT_T_SUFFIX=''
XARGS_LIMIT=''
XCB_LIBS=''
XCRUN=''
XFIXES_CFLAGS=' '
XFIXES_LIBS='-lXfixes  '
XFT_CFLAGS='-I/usr/include/freetype2  '
XFT_LIBS='-lXrender -lXft  '
XGSELOBJ='xgselect.o'
XINERAMA_CFLAGS=' '
XINERAMA_LIBS='-lXinerama  '
XMENU_OBJ='xmenu.o'
XMKMF=''
XOBJ='xterm.o xfns.o xselect.o xrdb.o xsmfns.o xsettings.o'
XRANDR_CFLAGS=' '
XRANDR_LIBS='-lXrandr  '
XWIDGETS_OBJ=''
X_TOOLKIT_TYPE='none'
ac_ct_AR='ar'
ac_ct_CC='gcc'
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__nodep='_no'
am__quote=''
am__tar='$${TAR-tar} chof - "$$tardir"'
am__untar='$${TAR-tar} xf -'
archlibdir='${libexecdir}/emacs/${version}/${configuration}'
bindir='${exec_prefix}/bin'
bitmapdir='/usr/include/X11/bitmaps'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
cache_file='/dev/null'
canonical='i686-pc-linux-gnu'
comma_space_version=''
comma_version=''
configuration='i686-pc-linux-gnu'
copyright='Copyright (C) 2016 Free Software Foundation, Inc.'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
etcdir='${datadir}/emacs/${version}/etc'
etcdocdir='${datadir}/emacs/${version}/etc'
exec_prefix='${prefix}'
gamedir='${localstatedir}/games/emacs'
gamegroup='games'
gameuser=''
gl_GNULIB_ENABLED_03e0aaad4cb89ca757653bd367a6ccb7_FALSE=''
gl_GNULIB_ENABLED_03e0aaad4cb89ca757653bd367a6ccb7_TRUE='#'
gl_GNULIB_ENABLED_260941c0e5dc67ec9e87d1fb321c300b_FALSE=''
gl_GNULIB_ENABLED_260941c0e5dc67ec9e87d1fb321c300b_TRUE='#'
gl_GNULIB_ENABLED_5264294aa0a5557541b53c8c741f7f31_FALSE=''
gl_GNULIB_ENABLED_5264294aa0a5557541b53c8c741f7f31_TRUE='#'
gl_GNULIB_ENABLED_6099e9737f757db36c47fa9d9f02e88c_FALSE=''
gl_GNULIB_ENABLED_6099e9737f757db36c47fa9d9f02e88c_TRUE='#'
gl_GNULIB_ENABLED_682e609604ccaac6be382e4ee3a4eaec_FALSE=''
gl_GNULIB_ENABLED_682e609604ccaac6be382e4ee3a4eaec_TRUE='#'
gl_GNULIB_ENABLED_a9786850e999ae65a836a6041e8e5ed1_FALSE=''
gl_GNULIB_ENABLED_a9786850e999ae65a836a6041e8e5ed1_TRUE='#'
gl_GNULIB_ENABLED_be453cec5eecf5731a274f2de7f2db36_FALSE='#'
gl_GNULIB_ENABLED_be453cec5eecf5731a274f2de7f2db36_TRUE=''
gl_GNULIB_ENABLED_dirfd_FALSE=''
gl_GNULIB_ENABLED_dirfd_TRUE='#'
gl_GNULIB_ENABLED_dosname_FALSE=''
gl_GNULIB_ENABLED_dosname_TRUE='#'
gl_GNULIB_ENABLED_euidaccess_FALSE=''
gl_GNULIB_ENABLED_euidaccess_TRUE='#'
gl_GNULIB_ENABLED_getdtablesize_FALSE='#'
gl_GNULIB_ENABLED_getdtablesize_TRUE=''
gl_GNULIB_ENABLED_getgroups_FALSE=''
gl_GNULIB_ENABLED_getgroups_TRUE='#'
gl_GNULIB_ENABLED_pathmax_FALSE=''
gl_GNULIB_ENABLED_pathmax_TRUE='#'
gl_GNULIB_ENABLED_secure_getenv_FALSE=''
gl_GNULIB_ENABLED_secure_getenv_TRUE='#'
gl_GNULIB_ENABLED_stat_FALSE=''
gl_GNULIB_ENABLED_stat_TRUE='#'
gl_GNULIB_ENABLED_strtoll_FALSE=''
gl_GNULIB_ENABLED_strtoll_TRUE='#'
gl_GNULIB_ENABLED_strtoull_FALSE=''
gl_GNULIB_ENABLED_strtoull_TRUE='#'
gl_GNULIB_ENABLED_tempname_FALSE=''
gl_GNULIB_ENABLED_tempname_TRUE='#'
gl_LIBOBJS=' fcntl.o getopt.o getopt1.o sig2str.o time_rz.o'
gl_LTLIBOBJS=' fcntl.lo getopt.lo getopt1.lo sig2str.lo time_rz.lo'
gltests_LIBOBJS=''
gltests_LTLIBOBJS=''
gltests_WITNESS='IN_EMACS_GNULIB_TESTS'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/redknight/git/emacs/build-aux/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
liblockfile=''
lispdir='${datadir}/emacs/${version}/lisp'
lisppath='${locallisppath}:${standardlisppath}'
localedir='${datarootdir}/locale'
locallisppath='${datadir}/emacs/${version}/site-lisp:${datadir}/emacs/site-lisp'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='/bin/mkdir -p'
ns_appbindir=''
ns_appdir=''
ns_appresdir=''
ns_appsrc=''
ns_check_file=''
ns_self_contained='no'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
srcdir='.'
standardlisppath='${lispdir}'
sysconfdir='${prefix}/etc'
target_alias=''
version='25.1.50'
x_default_search_path='/usr/share/X11/%L/%T/%N%C%S:/usr/share/X11/%l/%T/%N%C%S:/usr/share/X11/%T/%N%C%S:/usr/share/X11/%L/%T/%N%S:/usr/share/X11/%l/%T/%N%S:/usr/share/X11/%T/%N%S:/usr/lib/X11/%L/%T/%N%C%S:/usr/lib/X11/%l/%T/%N%C%S:/usr/lib/X11/%T/%N%C%S:/usr/lib/X11/%L/%T/%N%S:/usr/lib/X11/%l/%T/%N%S:/usr/lib/X11/%T/%N%S'

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME "GNU Emacs"
#define PACKAGE_TARNAME "emacs"
#define PACKAGE_VERSION "25.1.50"
#define PACKAGE_STRING "GNU Emacs 25.1.50"
#define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
#define PACKAGE_URL "http://www.gnu.org/software/emacs/"
#define PACKAGE "emacs"
#define VERSION "25.1.50"
#define MAIL_USE_POP 1
#define HAVE_PUTENV 1
#define HAVE_TZSET 1
#define HAVE_FCHMOD 1
#define HAVE_READLINKAT 1
#define HAVE_FACCESSAT 1
#define HAVE_FCNTL 1
#define HAVE_FDOPENDIR 1
#define HAVE_FSTATAT 1
#define HAVE_FSYNC 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_LSTAT 1
#define HAVE_MKOSTEMP 1
#define HAVE_PIPE2 1
#define HAVE_PSELECT 1
#define HAVE_READLINK 1
#define HAVE_STRTOIMAX 1
#define HAVE_STRTOUMAX 1
#define HAVE_SYMLINK 1
#define HAVE_LOCALTIME_R 1
#define HAVE_TIMEGM 1
#define HAVE_FUTIMES 1
#define HAVE_FUTIMESAT 1
#define HAVE_FUTIMENS 1
#define HAVE_UTIMENSAT 1
#define HAVE_LUTIMES 1
#define HAVE_GETDTABLESIZE 1
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define __EXTENSIONS__ 1
#define _ALL_SOURCE 1
#define _DARWIN_C_SOURCE 1
#define _GNU_SOURCE 1
#define __USE_MINGW_ANSI_STDIO 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _TANDEM_SOURCE 1
#define _FILE_OFFSET_BITS 64
#define _DARWIN_USE_64_BIT_INODE 1
#define SYSTEM_TYPE "gnu/linux"
#define HAVE_SYS_SOUNDCARD_H 1
#define HAVE_ALSA 1
#define HAVE_SOUND 1
#define HAVE_MALLOC_H 1
#define HAVE_SYS_SYSINFO_H 1
#define HAVE_PTY_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_UTSNAME_H 1
#define HAVE_PWD_H 1
#define HAVE_UTMP_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_STDLIB_H 1
#define HAVE_UNISTD_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_PTHREAD_H 1
#define HAVE_MAILLOCK_H 1
#define HAVE_SYS_UN_H 1
#define HAVE_DIRENT_H 1
#define HAVE_EXECINFO_H 1
#define HAVE_STDIO_EXT_H 1
#define HAVE_GETOPT_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_WCHAR_H 1
#define HAVE_STDINT_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_UTIME_H 1
#define HAVE_PERSONALITY_LINUX32 1
#define HAVE_LINUX_SYSINFO 1
#define LINUX_SYSINFO_UNIT 1
#define HAVE_TERM_H 1
#define TIME_WITH_SYS_TIME 1
#define HAVE_DECL_SYS_SIGLIST 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_NET_IF_H 1
#define HAVE_IFADDRS_H 1
#define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
#define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
#define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
#define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
#define HAVE_STRUCT_IFREQ_IFR_ADDR 1
#define HAVE_LONG_FILE_NAMES 1
#define HAVE_SYS_VLIMIT_H 1
#define HAVE_DATA_START 1
#define DOUG_LEA_MALLOC 1
#define HAVE_GETPAGESIZE 1
#define HAVE_MMAP 1
#define HAVE_PTHREAD 1
#define HAVE_XKB 1
#define HAVE_XRMSETDATABASE 1
#define HAVE_XSCREENRESOURCESTRING 1
#define HAVE_XSCREENNUMBEROFSCREEN 1
#define HAVE_X11R6 1
#define HAVE_X_I18N 1
#define HAVE_X11R6_XIM 1
#define HAVE_RSVG 1
#define HAVE_GTK3 1
#define GDK_DISABLE_DEPRECATION_WARNINGS 1
#define GLIB_DISABLE_DEPRECATION_WARNINGS 1
#define USE_GTK 1
#define HAVE_GTK_HANDLE_BOX_NEW 1
#define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
#define HAVE_GTK_WIDGET_GET_WINDOW 1
#define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
#define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
#define HAVE_GTK_WIDGET_GET_SENSITIVE 1
#define HAVE_GTK_WIDGET_GET_MAPPED 1
#define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
#define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
#define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
#define HAVE_DBUS 1
#define HAVE_DBUS_WATCH_GET_UNIX_FD 1
#define HAVE_DBUS_TYPE_IS_VALID 1
#define HAVE_DBUS_VALIDATE_BUS_NAME 1
#define HAVE_DBUS_VALIDATE_PATH 1
#define HAVE_DBUS_VALIDATE_INTERFACE 1
#define HAVE_DBUS_VALIDATE_MEMBER 1
#define HAVE_GSETTINGS 1
#define HAVE_GCONF 1
#define HAVE_LIBSELINUX 1
#define HAVE_GNUTLS 1
#define HAVE_INOTIFY 1
#define USE_FILE_NOTIFY 1
#define USE_TOOLKIT_SCROLL_BARS 1
#define HAVE_XIM 1
#define USE_XIM 1
#define XRegisterIMInstantiateCallback_arg6 XPointer
#define HAVE_XFT 1
#define HAVE_FREETYPE 1
#define HAVE_LIBOTF 1
#define HAVE_OTF_GET_VARIATION_GLYPHS 1
#define HAVE_M17N_FLT 1
#define HAVE_XPM 1
#define HAVE_JPEG 1
#define HAVE_ZLIB 1
#define HAVE_DLADDR 1
#define HAVE_PNG 1
#define PNG_DEPSTRUCT /**/
#define HAVE_TIFF 1
#define HAVE_GIF 1
#define HAVE_GPM 1
#define HAVE_X_SM 1
#define HAVE_XRRGETOUTPUTPRIMARY 1
#define HAVE_XRRGETSCREENRESOURCESCURRENT 1
#define HAVE_XRANDR 1
#define HAVE_XINERAMA 1
#define HAVE_XFIXES 1
#define HAVE_LIBXML2 1
#define HAVE_H_ERRNO 1
#define HAVE_LIBLOCKFILE 1
#define HAVE_ACCEPT4 1
#define HAVE_FCHDIR 1
#define HAVE_GETHOSTNAME 1
#define HAVE_GETRUSAGE 1
#define HAVE_GET_CURRENT_DIR_NAME 1
#define HAVE_LRAND48 1
#define HAVE_RANDOM 1
#define HAVE_RINT 1
#define HAVE_SELECT 1
#define HAVE_GETPAGESIZE 1
#define HAVE_SETLOCALE 1
#define HAVE_NEWLOCALE 1
#define HAVE_GETRLIMIT 1
#define HAVE_SETRLIMIT 1
#define HAVE_SHUTDOWN 1
#define HAVE_GETADDRINFO 1
#define HAVE_PTHREAD_SIGMASK 1
#define HAVE_STRSIGNAL 1
#define HAVE_SETITIMER 1
#define HAVE_SENDTO 1
#define HAVE_RECVFROM 1
#define HAVE_GETSOCKNAME 1
#define HAVE_GETPEERNAME 1
#define HAVE_GETIFADDRS 1
#define HAVE_FREEIFADDRS 1
#define HAVE_GAI_STRERROR 1
#define HAVE_SYNC 1
#define HAVE_GETPWENT 1
#define HAVE_ENDPWENT 1
#define HAVE_GETGRENT 1
#define HAVE_ENDGRENT 1
#define HAVE_CFMAKERAW 1
#define HAVE_CFSETSPEED 1
#define HAVE_COPYSIGN 1
#define HAVE___EXECUTABLE_START 1
#define HAVE_LOG2 1
#define HAVE_POSIX_MEMALIGN 1
#define HAVE_DECL_ALIGNED_ALLOC 0
#define HAVE___BUILTIN_UNWIND_INIT 1
#define HAVE_FSEEKO 1
#define HAVE_GRANTPT 1
#define HAVE_GETPT 1
#define HAVE_POSIX_OPENPT 1
#define TERMINFO 1
#define HAVE_TIMERFD 1
#define HAVE_RES_INIT 1
#define HAVE_STRUCT_UNIPAIR_UNICODE 1
#define HAVE_INET_SOCKETS 1
#define HAVE_FORK 1
#define HAVE_VFORK 1
#define HAVE_WORKING_VFORK 1
#define HAVE_WORKING_FORK 1
#define HAVE_SNPRINTF 1
#define HAVE_GLIB 1
#define HAVE_LANGINFO_CODESET 1
#define HAVE_MBSTATE_T 1
#define AMPERSAND_FULL_NAME 1
#define HAVE_PTYS 1
#define HAVE_SOCKETS 1
#define NULL_DEVICE "/dev/null"
#define SEPCHAR ':'
#define subprocesses 1
#define USER_FULL_NAME pw->pw_gecos
#define DIRECTORY_SEP '/'
#define IS_DEVICE_SEP(_c_) 0
#define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
#define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
#define HAVE_PROCFS 1
#define DEFAULT_SOUND_DEVICE "/dev/dsp"
#define INTERRUPT_INPUT 1
#define NARROWPROTO 1
#define UNIX98_PTYS 1
#define PTY_ITERATION int i; for (i = 0; i < 1; i++)
#define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
#define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
#define PTY_NAME_SPRINTF /**/
#define SIGNALS_VIA_CHARACTERS 1
#define GC_SETJMP_WORKS 1
#define GC_SETJMP_WORKS 1
#define HAVE__SETJMP 1
#define HAVE_SIGSETJMP 1
#define HAVE_STACK_OVERFLOW_HANDLING 1
#define USG /**/
#define GNU_LINUX /**/
#define USABLE_FIONREAD 1
#define USABLE_SIGIO 1
#define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
#define TERM_HEADER "gtkutil.h"
#define EMACS_CONFIGURATION "i686-pc-linux-gnu"
#define EMACS_CONFIG_OPTIONS ""
#define HAVE_X_WINDOWS 1
#define HAVE_X11 1
#define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
#define GNU_MALLOC 1
#define HAVE_ALLOCA_H 1
#define HAVE_ALLOCA 1
#define HAVE_UNSIGNED_LONG_LONG_INT 1
#define HAVE_C99_STRTOLD 1
#define HAVE_ENVIRON_DECL 1
#define HAVE_DECL_FDATASYNC 1
#define HAVE_DECL_STRMODE 0
#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
#define HAVE_GETOPT_H 1
#define HAVE_GETOPT_LONG_ONLY 1
#define __GETOPT_PREFIX rpl_
#define HAVE_DECL_GETENV 1
#define restrict __restrict
#define HAVE_LONG_LONG_INT 1
#define HAVE_DECL_MEMRCHR 1
#define HAVE_DECL_ALARM 1
#define HAVE_SIGSET_T 1
#define HAVE_WCHAR_T 1
#define HAVE_STRUCT_TM_TM_ZONE 1
#define HAVE_TM_ZONE 1
#define HAVE_TM_GMTOFF 1
#define HAVE_DECL_STRTOIMAX 1
#define HAVE_DECL_STRTOUMAX 1
#define HAVE_WORKING_UTIMES 1
#define HAVE_STRUCT_UTIMBUF 1
#define GETGROUPS_T gid_t
#define HAVE_DECL_GETDTABLESIZE 1
#define HAVE_SYS_ACL_H 1
#define HAVE_ACL_GET_FILE 1
#define HAVE_ACL_GET_FD 1
#define HAVE_ACL_SET_FILE 1
#define HAVE_ACL_SET_FD 1
#define HAVE_ACL_FREE 1
#define HAVE_ACL_FROM_MODE 1
#define HAVE_ACL_FROM_TEXT 1
#define HAVE_ACL_DELETE_DEF_FILE 1
#define HAVE_ACL_EXTENDED_FILE 1
#define HAVE_ACL_LIBACL_H 1
#define HAVE_ACL_ENTRIES 1
#define HAVE_ACL_FIRST_ENTRY 1
#define USE_ACL 1
#define HAVE_ALLOCA 1
#define HAVE_BYTESWAP_H 1
#define HAVE_CLOCK_GETTIME 1
#define HAVE_CLOCK_SETTIME 1
#define GNULIB_CLOSE_STREAM 1
#define HAVE_DUP2 1
#define GNULIB_FACCESSAT 1
#define HAVE_DECL_FDOPENDIR 1
#define GNULIB_FDOPENDIR 1
#define HAVE_DECL___FPENDING 1
#define __GETOPT_PREFIX rpl_
#define GETTIMEOFDAY_TIMEZONE struct timezone
#define HAVE_MEMRCHR 1
#define GNULIB_MKOSTEMP 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
#define GNULIB_FSCANF 1
#define GNULIB_SCANF 1
#define HAVE_STPCPY 1
#define my_strftime nstrftime
#define HAVE_DECL_LOCALTIME_R 1
#define HAVE_TIMER_SETTIME 1
#define HAVE_C_VARARRAYS 1
#define HAVE_WINDOW_SYSTEM 1
#define POLL_FOR_INPUT 1
#define EMACS_CONFIG_FEATURES "XPM JPEG TIFF GIF PNG RSVG SOUND GPM DBUS GCONF GSETTINGS NOTIFY ACL LIBSELINUX GNUTLS LIBXML2 FREETYPE M17N_FLT LIBOTF XFT ZLIB TOOLKIT_SCROLL_BARS GTK3 X11"

configure: exit 0

[-- Attachment #4: config2.log --]
[-- Type: text/plain, Size: 751542 bytes --]

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by GNU Emacs configure 25.1.50, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ./configure --with-wide-int

## --------- ##
## Platform. ##
## --------- ##

hostname = jetstar
uname -m = i686
uname -r = 3.2.0-4-686-pae
uname -s = Linux
uname -v = #1 SMP Debian 3.2.73-2+deb7u2

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /home/redknight/local/bin
PATH: /usr/local/texlive/2013/bin/i386-linux
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:3800: checking for xcrun
configure:3830: result: no
configure:3897: checking for GNU Make
configure:3947: result: make
configure:3973: checking for a BSD-compatible install
configure:4041: result: /usr/bin/install -c
configure:4052: checking whether build environment is sane
configure:4102: result: yes
configure:4243: checking for a thread-safe mkdir -p
configure:4282: result: /bin/mkdir -p
configure:4295: checking for gawk
configure:4325: result: no
configure:4295: checking for mawk
configure:4311: found /usr/bin/mawk
configure:4322: result: mawk
configure:4411: checking build system type
configure:4425: result: i686-pc-linux-gnu
configure:4445: checking host system type
configure:4458: result: i686-pc-linux-gnu
configure:5374: checking for gcc
configure:5390: found /usr/bin/gcc
configure:5401: result: gcc
configure:5432: checking for C compiler version
configure:5441: gcc --version >&5
gcc (Debian 4.7.2-5) 4.7.2
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:5452: $? = 0
configure:5441: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i486-linux-gnu/4.7/lto-wrapper
Target: i486-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.7.2-5' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --enable-targets=all --with-arch-32=i586 --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu
Thread model: posix
gcc version 4.7.2 (Debian 4.7.2-5) 
configure:5452: $? = 0
configure:5441: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:5452: $? = 4
configure:5441: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:5452: $? = 4
configure:5441: gcc -version >&5
gcc: error: unrecognized command line option '-version'
gcc: fatal error: no input files
compilation terminated.
configure:5452: $? = 4
configure:5472: checking whether the C compiler works
configure:5494: gcc    conftest.c  >&5
configure:5498: $? = 0
configure:5546: result: yes
configure:5549: checking for C compiler default output file name
configure:5551: result: a.out
configure:5557: checking for suffix of executables
configure:5564: gcc -o conftest    conftest.c  >&5
configure:5568: $? = 0
configure:5590: result: 
configure:5612: checking whether we are cross compiling
configure:5620: gcc -o conftest    conftest.c  >&5
configure:5624: $? = 0
configure:5631: ./conftest
configure:5635: $? = 0
configure:5650: result: no
configure:5655: checking for suffix of object files
configure:5677: gcc -c   conftest.c >&5
configure:5681: $? = 0
configure:5702: result: o
configure:5706: checking whether we are using the GNU C compiler
configure:5725: gcc -c   conftest.c >&5
configure:5725: $? = 0
configure:5734: result: yes
configure:5743: checking whether gcc accepts -g
configure:5763: gcc -c -g  conftest.c >&5
configure:5763: $? = 0
configure:5804: result: yes
configure:5821: checking for gcc option to enable C11 features
configure:6021: gcc  -c -g -O2  conftest.c >&5
conftest.c:63:29: error: expected ';', ',' or ')' before 'text'
conftest.c:137:29: error: 'syntax' undeclared here (not in a function)
conftest.c:137:29: error: expected ',' or ';' before 'error'
conftest.c: In function 'main':
conftest.c:164:18: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar'
conftest.c:164:18: error: 'newvar' undeclared (first use in this function)
conftest.c:164:18: note: each undeclared identifier is reported only once for each function it appears in
conftest.c:174:3: error: 'for' loop initial declarations are only allowed in C99 mode
conftest.c:174:3: note: use option -std=c99 or -std=gnu99 to compile your code
configure:6021: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| /* end confdefs.h.  */
| #include <stdarg.h>
| #include <stdbool.h>
| #include <stdlib.h>
| #include <wchar.h>
| #include <stdio.h>
| 
| // Check varargs macros.  These examples are taken from C99 6.10.3.5.
| #define debug(...) fprintf (stderr, __VA_ARGS__)
| #define showlist(...) puts (#__VA_ARGS__)
| #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__))
| static void
| test_varargs_macros (void)
| {
|   int x = 1234;
|   int y = 5678;
|   debug ("Flag");
|   debug ("X = %d\n", x);
|   showlist (The first, second, and third items.);
|   report (x>y, "x is %d but y is %d", x, y);
| }
| 
| // Check long long types.
| #define BIG64 18446744073709551615ull
| #define BIG32 4294967295ul
| #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0)
| #if !BIG_OK
|   your preprocessor is broken;
| #endif
| #if BIG_OK
| #else
|   your preprocessor is broken;
| #endif
| static long long int bignum = -9223372036854775807LL;
| static unsigned long long int ubignum = BIG64;
| 
| struct incomplete_array
| {
|   int datasize;
|   double data[];
| };
| 
| struct named_init {
|   int number;
|   const wchar_t *name;
|   double average;
| };
| 
| typedef const char *ccp;
| 
| static inline int
| test_restrict (ccp restrict text)
| {
|   // See if C++-style comments work.
|   // Iterate through items via the restricted pointer.
|   // Also check for declarations in for loops.
|   for (unsigned int i = 0; *(text+i) != '\0'; ++i)
|     continue;
|   return 0;
| }
| 
| // Check varargs and va_copy.
| static bool
| test_varargs (const char *format, ...)
| {
|   va_list args;
|   va_start (args, format);
|   va_list args_copy;
|   va_copy (args_copy, args);
| 
|   const char *str = "";
|   int number = 0;
|   float fnumber = 0;
| 
|   while (*format)
|     {
|       switch (*format++)
| 	{
| 	case 's': // string
| 	  str = va_arg (args_copy, const char *);
| 	  break;
| 	case 'd': // int
| 	  number = va_arg (args_copy, int);
| 	  break;
| 	case 'f': // float
| 	  fnumber = va_arg (args_copy, double);
| 	  break;
| 	default:
| 	  break;
| 	}
|     }
|   va_end (args_copy);
|   va_end (args);
| 
|   return *str && number && fnumber;
| }
| // Check _Alignas.
| char _Alignas (double) aligned_as_double;
| char _Alignas (0) no_special_alignment;
| extern char aligned_as_int;
| char _Alignas (0) _Alignas (int) aligned_as_int;
| 
| // Check _Alignof.
| enum
| {
|   int_alignment = _Alignof (int),
|   int_array_alignment = _Alignof (int[100]),
|   char_alignment = _Alignof (char)
| };
| _Static_assert (0 < -_Alignof (int), "_Alignof is signed");
| 
| // Check _Noreturn.
| int _Noreturn does_not_return (void) { for (;;) continue; }
| 
| // Check _Static_assert.
| struct test_static_assert
| {
|   int x;
|   _Static_assert (sizeof (int) <= sizeof (long int),
|                   "_Static_assert does not work in struct");
|   long int y;
| };
| 
| // Check UTF-8 literals.
| #define u8 syntax error!
| char const utf8_literal[] = u8"happens to be ASCII" "another string";
| 
| // Check duplicate typedefs.
| typedef long *long_ptr;
| typedef long int *long_ptr;
| typedef long_ptr long_ptr;
| 
| // Anonymous structures and unions -- taken from C11 6.7.2.1 Example 1.
| struct anonymous
| {
|   union {
|     struct { int i; int j; };
|     struct { int k; long int l; } w;
|   };
|   int m;
| } v1;
| 
| int
| main ()
| {
| 
|   // Check bool.
|   _Bool success = false;
| 
|   // Check restrict.
|   if (test_restrict ("String literal") == 0)
|     success = true;
|   char *restrict newvar = "Another string";
| 
|   // Check varargs.
|   success &= test_varargs ("s, d' f .", "string", 65, 34.234);
|   test_varargs_macros ();
| 
|   // Check flexible array members.
|   struct incomplete_array *ia =
|     malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
|   ia->datasize = 10;
|   for (int i = 0; i < ia->datasize; ++i)
|     ia->data[i] = i * 1.234;
| 
|   // Check named initializers.
|   struct named_init ni = {
|     .number = 34,
|     .name = L"Test wide string",
|     .average = 543.34343,
|   };
| 
|   ni.number = 58;
| 
|   int dynamic_array[ni.number];
|   dynamic_array[ni.number - 1] = 543;
| 
|   // work around unused variable warnings
|   return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x'
| 	  || dynamic_array[ni.number - 1] != 543);
| 
|   v1.i = 2;
|   v1.w.k = 5;
|   _Static_assert (&v1.i == &v1.w.k, "Anonymous union alignment botch");
| 
|   ;
|   return 0;
| }
configure:6021: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:6021: $? = 0
configure:6043: result: -std=gnu11
configure:6252: checking for style of include used by make
configure:6280: result: GNU
configure:6306: checking dependency style of gcc -std=gnu11
configure:6417: result: gcc3
configure:6484: checking whether gcc -std=gnu11 and cc understand -c and -o together
configure:6515: gcc -std=gnu11 -c conftest.c -o conftest2.o >&5
configure:6519: $? = 0
configure:6525: gcc -std=gnu11 -c conftest.c -o conftest2.o >&5
configure:6529: $? = 0
configure:6540: cc -c conftest.c >&5
configure:6544: $? = 0
configure:6552: cc -c conftest.c -o conftest2.o >&5
configure:6556: $? = 0
configure:6562: cc -c conftest.c -o conftest2.o >&5
configure:6566: $? = 0
configure:6584: result: yes
configure:6645: checking for putenv
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for tzset
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for fchmod
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for readlinkat
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for faccessat
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for fcntl
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for fdopendir
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for fstatat
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for fsync
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for gettimeofday
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for nanotime
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
/tmp/cca34reG.o: In function `main':
/home/redknight/git/emacs/conftest.c:57: undefined reference to `nanotime'
collect2: error: ld returned 1 exit status
configure:6645: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| /* end confdefs.h.  */
| /* Define nanotime to an innocuous variant, in case <limits.h> declares nanotime.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define nanotime innocuous_nanotime
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char nanotime (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef nanotime
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char nanotime ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_nanotime || defined __stub___nanotime
| choke me
| #endif
| 
| int
| main ()
| {
| return nanotime ();
|   ;
|   return 0;
| }
configure:6645: result: no
configure:6645: checking for lstat
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for mkostemp
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for pipe2
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for pselect
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for readlink
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for strtoimax
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for strtoumax
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for symlink
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for localtime_r
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for timegm
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for futimes
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for futimesat
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for futimens
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for utimensat
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for lutimes
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for getdtablesize
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:6645: $? = 0
configure:6645: result: yes
configure:6645: checking for secure_getenv
configure:6645: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
/tmp/ccTLRHkA.o: In function `main':
/home/redknight/git/emacs/conftest.c:73: undefined reference to `secure_getenv'
collect2: error: ld returned 1 exit status
configure:6645: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| /* end confdefs.h.  */
| /* Define secure_getenv to an innocuous variant, in case <limits.h> declares secure_getenv.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define secure_getenv innocuous_secure_getenv
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char secure_getenv (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef secure_getenv
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char secure_getenv ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_secure_getenv || defined __stub___secure_getenv
| choke me
| #endif
| 
| int
| main ()
| {
| return secure_getenv ();
|   ;
|   return 0;
| }
configure:6645: result: no
configure:6665: checking how to run the C preprocessor
configure:6696: gcc -std=gnu11 -E  conftest.c
configure:6696: $? = 0
configure:6710: gcc -std=gnu11 -E  conftest.c
conftest.c:39:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:6710: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:6735: result: gcc -std=gnu11 -E
configure:6755: gcc -std=gnu11 -E  conftest.c
configure:6755: $? = 0
configure:6769: gcc -std=gnu11 -E  conftest.c
conftest.c:39:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:6769: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:6798: checking for grep that handles long lines and -e
configure:6856: result: /bin/grep
configure:6861: checking for egrep
configure:6923: result: /bin/grep -E
configure:6928: checking for ANSI C header files
configure:6948: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:6948: $? = 0
configure:7021: gcc -std=gnu11 -o conftest -g -O2   conftest.c  >&5
configure:7021: $? = 0
configure:7021: ./conftest
configure:7021: $? = 0
configure:7032: result: yes
configure:7045: checking for sys/types.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for sys/stat.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for stdlib.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for string.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for memory.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for strings.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for inttypes.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for stdint.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7045: checking for unistd.h
configure:7045: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7045: $? = 0
configure:7045: result: yes
configure:7058: checking minix/config.h usability
configure:7058: gcc -std=gnu11 -c -g -O2  conftest.c >&5
conftest.c:82:26: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:7058: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:7058: result: no
configure:7058: checking minix/config.h presence
configure:7058: gcc -std=gnu11 -E  conftest.c
conftest.c:49:26: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:7058: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <minix/config.h>
configure:7058: result: no
configure:7058: checking for minix/config.h
configure:7058: result: no
configure:7082: checking whether it is safe to define __EXTENSIONS__
configure:7100: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7100: $? = 0
configure:7107: result: yes
configure:7124: checking whether _XOPEN_SOURCE should be defined
configure:7143: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7143: $? = 0
configure:7167: result: no
configure:7182: checking for Minix Amsterdam compiler
configure:7206: result: no
configure:7266: checking for ar
configure:7282: found /usr/bin/ar
configure:7293: result: ar
configure:7319: checking the archiver (ar) interface
configure:7329: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7329: $? = 0
configure:7331: ar cru libconftest.a conftest.o >&5
configure:7334: $? = 0
configure:7357: result: ar
configure:7422: checking for ar
configure:7449: result: ar
configure:7524: checking for ranlib
configure:7540: found /usr/bin/ranlib
configure:7551: result: ranlib
configure:7584: checking for special C compiler options needed for large files
configure:7629: result: no
configure:7635: checking for _FILE_OFFSET_BITS value needed for large files
configure:7660: gcc -std=gnu11 -c -g -O2  conftest.c >&5
conftest.c:62:3: warning: left shift count >= width of type [enabled by default]
conftest.c:62:3: warning: left shift count >= width of type [enabled by default]
conftest.c:63:24: warning: left shift count >= width of type [enabled by default]
conftest.c:63:24: warning: left shift count >= width of type [enabled by default]
conftest.c:62:7: error: variably modified 'off_t_is_large' at file scope
configure:7660: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|  /* Check that off_t can represent 2**63 - 1 correctly.
|     We can't simply define LARGE_OFF_T to be 9223372036854775807,
|     since some C++ compilers masquerading as C compilers
|     incorrectly reject 9223372036854775807.  */
| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
|   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
|                        && LARGE_OFF_T % 2147483647 == 1)
|                       ? 1 : -1];
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:7684: gcc -std=gnu11 -c -g -O2  conftest.c >&5
configure:7684: $? = 0
configure:7692: result: 64
configure:7922: checking whether gcc -std=gnu11 accepts -g3 -O2
configure:7938: gcc -std=gnu11 -o conftest -g3 -O2   conftest.c  >&5
configure:7938: $? = 0
configure:7946: result: yes
configure:8010: checking whether the compiler is clang
configure:8030: gcc -std=gnu11 -c -g3 -O2  conftest.c >&5
conftest.c:60:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before string constant
configure:8030: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| /* end confdefs.h.  */
| 
| 	  #ifndef __clang__
| 	    error "not clang";
| 	  #endif
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:8037: result: no
configure:9224: checking whether make supports nested variables
configure:9241: result: yes
configure:9263: checking whether ln -s works for files in the same directory
configure:9288: result: yes
configure:9305: checking for install-info
configure:9323: found /home/redknight/local/bin/install-info
configure:9336: result: /home/redknight/local/bin/install-info
configure:9346: checking for gzip
configure:9364: found /bin/gzip
configure:9376: result: /bin/gzip
configure:9391: checking for paxctl
configure:9424: result: no
configure:9454: checking for setfattr
configure:9466: result: no
configure:9542: checking for -znocombreloc
configure:9555: gcc -std=gnu11 -o conftest -g3 -O2   -Wl,-znocombreloc conftest.c  >&5
configure:9555: $? = 0
configure:9556: result: yes
configure:9568: checking whether addresses are sanitized
configure:9591: gcc -std=gnu11 -c -g3 -O2  conftest.c >&5
conftest.c:63:11: error: expected '=', ',', ';', 'asm' or '__attribute__' before string constant
configure:9591: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| /* end confdefs.h.  */
| #ifndef __has_feature
| 	  #define __has_feature(f) 0
| 	  #endif
| 	  #if defined __SANITIZE_ADDRESS__ || __has_feature (address_sanitizer)
| 	  #else
| 	   error "Addresses are not sanitized.";
| 	  #endif
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:9598: result: no
configure:9778: checking for library containing sqrt
configure:9809: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c  >&5 
conftest.c:65:6: warning: conflicting types for built-in function 'sqrt' [enabled by default]
/tmp/ccW6BN1w.o: In function `main':
/home/redknight/git/emacs/conftest.c:69: undefined reference to `sqrt'
collect2: error: ld returned 1 exit status
configure:9809: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char sqrt ();
| int
| main ()
| {
| return sqrt ();
|   ;
|   return 0;
| }
configure:9809: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c -lm   >&5 
conftest.c:65:6: warning: conflicting types for built-in function 'sqrt' [enabled by default]
configure:9809: $? = 0
configure:9826: result: -lm
configure:9937: checking for pkg-config
configure:9955: found /usr/bin/pkg-config
configure:9967: result: /usr/bin/pkg-config
configure:9992: checking pkg-config is at least version 0.9.0
configure:9995: result: yes
configure:10012: checking for machine/soundcard.h
configure:10012: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:66:31: fatal error: machine/soundcard.h: No such file or directory
compilation terminated.
configure:10012: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| /* end confdefs.h.  */
| 
|     #ifdef __MINGW32__
|     #define WIN32_LEAN_AND_MEAN
|     #include <windows.h>
|     #endif
| 
| 
| #include <machine/soundcard.h>
configure:10012: result: no
configure:10012: checking for sys/soundcard.h
configure:10012: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10012: $? = 0
configure:10012: result: yes
configure:10012: checking for soundcard.h
configure:10012: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:67:23: fatal error: soundcard.h: No such file or directory
compilation terminated.
configure:10012: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| /* end confdefs.h.  */
| 
|     #ifdef __MINGW32__
|     #define WIN32_LEAN_AND_MEAN
|     #include <windows.h>
|     #endif
| 
| 
| #include <soundcard.h>
configure:10012: result: no
configure:10012: checking for mmsystem.h
configure:10012: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:67:22: fatal error: mmsystem.h: No such file or directory
compilation terminated.
configure:10012: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| /* end confdefs.h.  */
| 
|     #ifdef __MINGW32__
|     #define WIN32_LEAN_AND_MEAN
|     #include <windows.h>
|     #endif
| 
| 
| #include <mmsystem.h>
configure:10012: result: no
configure:10033: checking for _oss_ioctl in -lossaudio
configure:10058: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c -lossaudio   >&5 
/usr/bin/ld: cannot find -lossaudio
collect2: error: ld returned 1 exit status
configure:10058: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char _oss_ioctl ();
| int
| main ()
| {
| return _oss_ioctl ();
|   ;
|   return 0;
| }
configure:10067: result: no
configure:10085: checking for ALSA
configure:10092: $PKG_CONFIG --exists --print-errors "$ALSA_MODULES"
configure:10095: $? = 0
configure:10109: $PKG_CONFIG --exists --print-errors "$ALSA_MODULES"
configure:10112: $? = 0
configure:10150: result: yes
configure:10171: gcc -std=gnu11 -c -I/usr/include/alsa   -g3 -O2    conftest.c >&5
configure:10171: $? = 0
configure:10232: checking for malloc.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for sys/systeminfo.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:97:28: fatal error: sys/systeminfo.h: No such file or directory
compilation terminated.
configure:10232: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| 
| #include <sys/systeminfo.h>
configure:10232: result: no
configure:10232: checking for sys/sysinfo.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for coff.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:98:18: fatal error: coff.h: No such file or directory
compilation terminated.
configure:10232: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| 
| #include <coff.h>
configure:10232: result: no
configure:10232: checking for pty.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for sys/resource.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for sys/utsname.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for pwd.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for utmp.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for util.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:103:18: fatal error: util.h: No such file or directory
compilation terminated.
configure:10232: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| 
| #include <util.h>
configure:10232: result: no
configure:10232: checking for sys/socket.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for stdlib.h
configure:10232: result: yes
configure:10232: checking for unistd.h
configure:10232: result: yes
configure:10232: checking for sys/param.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for pthread.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for malloc/malloc.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:108:27: fatal error: malloc/malloc.h: No such file or directory
compilation terminated.
configure:10232: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| 
| #include <malloc/malloc.h>
configure:10232: result: no
configure:10232: checking for maillock.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for sys/un.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for dirent.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for execinfo.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for stdio_ext.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for getopt.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for sys/time.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for wchar.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for stdint.h
configure:10232: result: yes
configure:10232: checking for inttypes.h
configure:10232: result: yes
configure:10232: checking for sys/select.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10232: checking for sys/stat.h
configure:10232: result: yes
configure:10232: checking for utime.h
configure:10232: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10232: $? = 0
configure:10232: result: yes
configure:10265: checking if personality LINUX32 can be set
configure:10278: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10278: $? = 0
configure:10284: result: yes
configure:10297: checking if Linux sysinfo may be used
configure:10312: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10312: $? = 0
configure:10318: result: yes
configure:10335: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10335: $? = 0
configure:10346: checking for term.h
configure:10346: gcc -std=gnu11 -E    conftest.c
configure:10346: $? = 0
configure:10346: result: yes
configure:10356: checking whether time.h and sys/time.h may both be included
configure:10376: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10376: $? = 0
configure:10383: result: yes
configure:10391: checking whether sys_siglist is declared
configure:10391: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10391: $? = 0
configure:10391: result: yes
configure:10420: checking for sys/wait.h that is POSIX.1 compatible
configure:10446: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10446: $? = 0
configure:10453: result: yes
configure:10467: checking for net/if.h
configure:10467: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10467: $? = 0
configure:10467: result: yes
configure:10483: checking for ifaddrs.h
configure:10483: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10483: $? = 0
configure:10483: result: yes
configure:10499: checking for net/if_dl.h
configure:10499: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:133:23: fatal error: net/if_dl.h: No such file or directory
compilation terminated.
configure:10499: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| 
| #include <net/if_dl.h>
configure:10499: result: no
configure:10514: checking for struct ifreq.ifr_flags
configure:10514: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10514: $? = 0
configure:10514: result: yes
configure:10530: checking for struct ifreq.ifr_hwaddr
configure:10530: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:141:5: error: used struct type value where scalar is required
configure:10530: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| #if HAVE_NET_IF_H
| #include <net/if.h>
| #endif
| 
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (ac_aggr.ifr_hwaddr)
| return 0;
|   ;
|   return 0;
| }
configure:10530: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10530: $? = 0
configure:10530: result: yes
configure:10546: checking for struct ifreq.ifr_netmask
configure:10546: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:142:5: error: used struct type value where scalar is required
configure:10546: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| #if HAVE_NET_IF_H
| #include <net/if.h>
| #endif
| 
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (ac_aggr.ifr_netmask)
| return 0;
|   ;
|   return 0;
| }
configure:10546: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10546: $? = 0
configure:10546: result: yes
configure:10562: checking for struct ifreq.ifr_broadaddr
configure:10562: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:143:5: error: used struct type value where scalar is required
configure:10562: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| #if HAVE_NET_IF_H
| #include <net/if.h>
| #endif
| 
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (ac_aggr.ifr_broadaddr)
| return 0;
|   ;
|   return 0;
| }
configure:10562: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10562: $? = 0
configure:10562: result: yes
configure:10578: checking for struct ifreq.ifr_addr
configure:10578: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:144:5: error: used struct type value where scalar is required
configure:10578: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| #if HAVE_NET_IF_H
| #include <net/if.h>
| #endif
| 
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (ac_aggr.ifr_addr)
| return 0;
|   ;
|   return 0;
| }
configure:10578: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:10578: $? = 0
configure:10578: result: yes
configure:10594: checking for struct ifreq.ifr_addr.sa_len
configure:10594: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:145:21: error: 'struct sockaddr' has no member named 'sa_len'
configure:10594: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| #if HAVE_NET_IF_H
| #include <net/if.h>
| #endif
| 
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (ac_aggr.ifr_addr.sa_len)
| return 0;
|   ;
|   return 0;
| }
configure:10594: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:145:28: error: 'struct sockaddr' has no member named 'sa_len'
configure:10594: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #if HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| #if HAVE_NET_IF_H
| #include <net/if.h>
| #endif
| 
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (sizeof ac_aggr.ifr_addr.sa_len)
| return 0;
|   ;
|   return 0;
| }
configure:10594: result: no
configure:10616: checking whether gcc understands -MMD -MF
configure:10631: gcc -std=gnu11 -c -g3 -O2 -MMD -MF deps.d -MP    conftest.c >&5
configure:10631: $? = 0
configure:10640: result: yes
configure:10648: checking for long file names
configure:10680: result: yes
configure:10697: checking for X
configure:10836: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c -lX11  >&5 
configure:10836: $? = 0
configure:10886: result: libraries , headers 
configure:11585: checking whether malloc is Doug Lea style
configure:11606: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c  >&5 
configure:11606: $? = 0
configure:11613: result: yes
configure:11657: checking sys/vlimit.h usability
configure:11657: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:11657: $? = 0
configure:11657: result: yes
configure:11657: checking sys/vlimit.h presence
configure:11657: gcc -std=gnu11 -E    conftest.c
configure:11657: $? = 0
configure:11657: result: yes
configure:11657: checking for sys/vlimit.h
configure:11657: result: yes
configure:11667: checking for data_start
configure:11683: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c  >&5 
configure:11683: $? = 0
configure:11691: result: yes
configure:11747: checking for getpagesize
configure:11747: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c  >&5 
configure:11747: $? = 0
configure:11747: result: yes
configure:11756: checking for working mmap
configure:11903: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c  >&5 
configure:11903: $? = 0
configure:11903: ./conftest
configure:11903: $? = 0
configure:11913: result: yes
configure:11931: checking for main in -lXbsd
configure:11950: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c -lXbsd    >&5 
/usr/bin/ld: cannot find -lXbsd
collect2: error: ld returned 1 exit status
configure:11950: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| /* end confdefs.h.  */
| 
| 
| int
| main ()
| {
| return main ();
|   ;
|   return 0;
| }
configure:11959: result: no
configure:11971: checking for pthread library
configure:12007: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c   >&5 
/tmp/ccXCrGrv.o: In function `main':
/home/redknight/git/emacs/conftest.c:116: undefined reference to `pthread_create'
/home/redknight/git/emacs/conftest.c:117: undefined reference to `pthread_sigmask'
/home/redknight/git/emacs/conftest.c:118: undefined reference to `pthread_kill'
collect2: error: ld returned 1 exit status
configure:12007: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| /* end confdefs.h.  */
| #include <pthread.h>
| 	      #include <signal.h>
| 	      sigset_t old_mask, new_mask;
| 	      void noop (void) {}
| int
| main ()
| {
| pthread_t th = pthread_self ();
| 	      int status = 0;
| 	      status += pthread_create (&th, 0, 0, 0);
| 	      status += pthread_sigmask (SIG_BLOCK, &new_mask, &old_mask);
| 	      status += pthread_kill (th, 0);
| 	      #if ! (defined SYSTEM_MALLOC || defined HYBRID_MALLOC 		     || defined DOUG_LEA_MALLOC)
| 	      /* Test for pthread_atfork only if gmalloc uses it,
| 		 as older-style hosts like MirBSD 10 lack it.  */
| 	      status += pthread_atfork (noop, noop, noop);
| 	      #endif
| 	      return status;
|   ;
|   return 0;
| }
configure:12007: gcc -std=gnu11 -o conftest -g3 -O2     conftest.c   -lpthread >&5 
configure:12007: $? = 0
configure:12018: result: -lpthread
configure:12109: checking whether X on GNU/Linux needs -b to link
configure:12122: gcc -std=gnu11 -o conftest  -g3 -O2       conftest.c -lX11   >&5 
conftest.c: In function 'main':
conftest.c:112:1: warning: implicit declaration of function 'XOpenDisplay' [-Wimplicit-function-declaration]
configure:12122: $? = 0
configure:12166: result: no
configure:12173: checking for Xkb
configure:12187: gcc -std=gnu11 -o conftest  -g3 -O2       conftest.c -lX11   >&5 
configure:12187: $? = 0
configure:12194: result: yes
configure:12206: checking for XrmSetDatabase
configure:12206: gcc -std=gnu11 -o conftest  -g3 -O2       conftest.c -lX11   >&5 
configure:12206: $? = 0
configure:12206: result: yes
configure:12206: checking for XScreenResourceString
configure:12206: gcc -std=gnu11 -o conftest  -g3 -O2       conftest.c -lX11   >&5 
configure:12206: $? = 0
configure:12206: result: yes
configure:12206: checking for XScreenNumberOfScreen
configure:12206: gcc -std=gnu11 -o conftest  -g3 -O2       conftest.c -lX11   >&5 
configure:12206: $? = 0
configure:12206: result: yes
configure:12218: checking X11 version 6
configure:12237: gcc -std=gnu11 -o conftest  -g3 -O2       conftest.c -lX11   >&5 
configure:12237: $? = 0
configure:12247: result: 6 or newer
configure:12280: checking for RSVG
configure:12287: $PKG_CONFIG --exists --print-errors "$RSVG_MODULE"
configure:12290: $? = 0
configure:12304: $PKG_CONFIG --exists --print-errors "$RSVG_MODULE"
configure:12307: $? = 0
configure:12345: result: yes
configure:12374: checking for IMAGEMAGICK
configure:12381: $PKG_CONFIG --exists --print-errors "$IMAGEMAGICK_MODULE"
Package Wand was not found in the pkg-config search path.
Perhaps you should add the directory containing `Wand.pc'
to the PKG_CONFIG_PATH environment variable
No package 'Wand' found
Package Wand was not found in the pkg-config search path.
Perhaps you should add the directory containing `Wand.pc'
to the PKG_CONFIG_PATH environment variable
No package 'Wand' found
configure:12384: $? = 1
configure:12398: $PKG_CONFIG --exists --print-errors "$IMAGEMAGICK_MODULE"
Package Wand was not found in the pkg-config search path.
Perhaps you should add the directory containing `Wand.pc'
to the PKG_CONFIG_PATH environment variable
No package 'Wand' found
Package Wand was not found in the pkg-config search path.
Perhaps you should add the directory containing `Wand.pc'
to the PKG_CONFIG_PATH environment variable
No package 'Wand' found
configure:12401: $? = 1
configure:12415: result: no
No package 'Wand' found
No package 'Wand' found
configure:12487: checking for GTK
configure:12494: $PKG_CONFIG --exists --print-errors "$GTK_MODULES"
configure:12497: $? = 0
configure:12511: $PKG_CONFIG --exists --print-errors "$GTK_MODULES"
configure:12514: $? = 0
configure:12552: result: yes
configure:12675: checking whether GTK compiles
configure:12703: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12703: $? = 0
configure:12708: result: yes
configure:12728: WARNING: Your version of Gtk+ will have problems with
       closing open displays.  This is no problem if you just use
       one display, but if you use more than one and close one of them
       Emacs may crash.
       See http://bugzilla.gnome.org/show_bug.cgi?id=85715
configure:12748: checking whether GTK_TYPE_FILE_SELECTION is declared
configure:12748: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12       conftest.c >&5
conftest.c: In function 'main':
conftest.c:162:10: error: 'GTK_TYPE_FILE_SELECTION' undeclared (first use in this function)
conftest.c:162:10: note: each undeclared identifier is reported only once for each function it appears in
configure:12748: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <gtk/gtk.h>
| 
| int
| main ()
| {
| #ifndef GTK_TYPE_FILE_SELECTION
| #ifdef __cplusplus
|   (void) GTK_TYPE_FILE_SELECTION;
| #else
|   (void) GTK_TYPE_FILE_SELECTION;
| #endif
| #endif
| 
|   ;
|   return 0;
| }
configure:12748: result: no
configure:12772: checking whether GTK_TYPE_HANDLE_BOX is declared
configure:12772: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12       conftest.c >&5
configure:12772: $? = 0
configure:12772: result: yes
configure:12784: checking for gtk_handle_box_new
configure:12784: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12784: $? = 0
configure:12784: result: yes
configure:12796: checking whether GTK_TYPE_TEAROFF_MENU_ITEM is declared
configure:12796: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12       conftest.c >&5
configure:12796: $? = 0
configure:12796: result: yes
configure:12808: checking for gtk_tearoff_menu_item_new
configure:12808: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12808: $? = 0
configure:12808: result: yes
configure:12826: checking for gtk_widget_get_window
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_widget_set_has_window
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_dialog_get_action_area
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_widget_get_sensitive
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_widget_get_mapped
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_adjustment_get_page_size
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_orientable_set_orientation
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12826: checking for gtk_window_set_has_resize_grip
configure:12826: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12         conftest.c -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lX11   >&5 
configure:12826: $? = 0
configure:12826: result: yes
configure:12939: checking for DBUS
configure:12946: $PKG_CONFIG --exists --print-errors "dbus-1 >= 1.0"
configure:12949: $? = 0
configure:12963: $PKG_CONFIG --exists --print-errors "dbus-1 >= 1.0"
configure:12966: $? = 0
configure:13004: result: yes
configure:13023: checking for dbus_watch_get_unix_fd
configure:13023: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ldbus-1   >&5 
configure:13023: $? = 0
configure:13023: result: yes
configure:13023: checking for dbus_type_is_valid
configure:13023: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ldbus-1   >&5 
configure:13023: $? = 0
configure:13023: result: yes
configure:13023: checking for dbus_validate_bus_name
configure:13023: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ldbus-1   >&5 
configure:13023: $? = 0
configure:13023: result: yes
configure:13023: checking for dbus_validate_path
configure:13023: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ldbus-1   >&5 
configure:13023: $? = 0
configure:13023: result: yes
configure:13023: checking for dbus_validate_interface
configure:13023: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ldbus-1   >&5 
configure:13023: $? = 0
configure:13023: result: yes
configure:13023: checking for dbus_validate_member
configure:13023: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ldbus-1   >&5 
configure:13023: $? = 0
configure:13023: result: yes
configure:13044: checking for GSETTINGS
configure:13051: $PKG_CONFIG --exists --print-errors "gio-2.0 >= 2.26"
configure:13054: $? = 0
configure:13068: $PKG_CONFIG --exists --print-errors "gio-2.0 >= 2.26"
configure:13071: $? = 0
configure:13109: result: yes
configure:13119: checking whether GSettings is in gio
configure:13138: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include         conftest.c -lX11   -lgio-2.0 -lgobject-2.0 -lglib-2.0   >&5 
configure:13138: $? = 0
configure:13145: result: yes
configure:13164: checking for GCONF
configure:13171: $PKG_CONFIG --exists --print-errors "gconf-2.0 >= 2.13"
configure:13174: $? = 0
configure:13188: $PKG_CONFIG --exists --print-errors "gconf-2.0 >= 2.13"
configure:13191: $? = 0
configure:13229: result: yes
configure:13246: checking for GOBJECT
configure:13253: $PKG_CONFIG --exists --print-errors "gobject-2.0 >= 2.0"
configure:13256: $? = 0
configure:13270: $PKG_CONFIG --exists --print-errors "gobject-2.0 >= 2.0"
configure:13273: $? = 0
configure:13311: result: yes
configure:13334: checking for lgetfilecon in -lselinux
configure:13359: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lselinux  -lX11   >&5 
configure:13359: $? = 0
configure:13368: result: yes
configure:13389: checking for LIBGNUTLS
configure:13396: $PKG_CONFIG --exists --print-errors "gnutls >= 2.6.6"
configure:13399: $? = 0
configure:13413: $PKG_CONFIG --exists --print-errors "gnutls >= 2.6.6"
configure:13416: $? = 0
configure:13454: result: yes
configure:13465: checking for LIBGNUTLS3
configure:13472: $PKG_CONFIG --exists --print-errors "gnutls >= 3.0.0"
Requested 'gnutls >= 3.0.0' but version of GnuTLS is 2.12.20
You may find new versions of GnuTLS at http://www.gnu.org/software/gnutls/
configure:13475: $? = 1
configure:13489: $PKG_CONFIG --exists --print-errors "gnutls >= 3.0.0"
Requested 'gnutls >= 3.0.0' but version of GnuTLS is 2.12.20
You may find new versions of GnuTLS at http://www.gnu.org/software/gnutls/
configure:13492: $? = 1
configure:13506: result: no
Requested 'gnutls >= 3.0.0' but version of GnuTLS is 2.12.20
You may find new versions of GnuTLS at http://www.gnu.org/software/gnutls/
configure:13575: checking sys/inotify.h usability
configure:13575: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:13575: $? = 0
configure:13575: result: yes
configure:13575: checking sys/inotify.h presence
configure:13575: gcc -std=gnu11 -E     conftest.c
configure:13575: $? = 0
configure:13575: result: yes
configure:13575: checking for sys/inotify.h
configure:13575: result: yes
configure:13582: checking for inotify_init1
configure:13582: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:13582: $? = 0
configure:13582: result: yes
configure:14291: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:14291: $? = 0
configure:14340: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   --pedantic-errors     conftest.c >&5
conftest.c: In function 'main':
conftest.c:165:4: error: passing argument 5 of 'XRegisterIMInstantiateCallback' from incompatible pointer type
In file included from conftest.c:147:0:
/usr/include/X11/Xlib.h:3939:13: note: expected 'XIDProc' but argument is of type 'XIMProc'
conftest.c:165:4: error: passing argument 6 of 'XRegisterIMInstantiateCallback' from incompatible pointer type
In file included from conftest.c:147:0:
/usr/include/X11/Xlib.h:3939:13: note: expected 'XPointer' but argument is of type 'char **'
configure:14340: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| /* end confdefs.h.  */
| 
| #include <X11/Xlib.h>
| #include <X11/Xresource.h>
| int
| main ()
| {
| Display *display;
| XrmDatabase db;
| char *res_name;
| char *res_class;
| XIMProc  callback;
| XPointer *client_data;
| #ifndef __GNUC__
| /* If we're not using GCC, it's probably not XFree86, and this is
|    probably right, but we can't use something like --pedantic-errors.  */
| extern Bool XRegisterIMInstantiateCallback(Display*, XrmDatabase, char*,
|                                            char*, XIMProc, XPointer*);
| #endif
| (void)XRegisterIMInstantiateCallback(display, db, res_name, res_class, callback,
|    client_data);
|   ;
|   return 0;
| }
configure:14369: checking for FONTCONFIG
configure:14376: $PKG_CONFIG --exists --print-errors "fontconfig >= 2.2.0"
configure:14379: $? = 0
configure:14393: $PKG_CONFIG --exists --print-errors "fontconfig >= 2.2.0"
configure:14396: $? = 0
configure:14434: result: yes
configure:14446: checking for XFT
configure:14453: $PKG_CONFIG --exists --print-errors "xft >= 0.13.0"
configure:14456: $? = 0
configure:14470: $PKG_CONFIG --exists --print-errors "xft >= 0.13.0"
configure:14473: $? = 0
configure:14511: result: yes
configure:14519: checking for XRenderQueryExtension in -lXrender
configure:14544: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lXrender  -lX11   >&5 
configure:14544: $? = 0
configure:14553: result: yes
configure:14567: checking for X11/Xft/Xft.h
configure:14567: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -I/usr/include/freetype2       -I/usr/include/freetype2   conftest.c >&5
configure:14567: $? = 0
configure:14567: result: yes
configure:14570: checking for XftFontOpen in -lXft
configure:14595: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -I/usr/include/freetype2       -I/usr/include/freetype2     conftest.c -lXft -lXrender -lXft   -lXrender -lXft   -lX11   >&5 
configure:14595: $? = 0
configure:14604: result: yes
configure:14635: checking for FREETYPE
configure:14642: $PKG_CONFIG --exists --print-errors "freetype2"
configure:14645: $? = 0
configure:14659: $PKG_CONFIG --exists --print-errors "freetype2"
configure:14662: $? = 0
configure:14700: result: yes
configure:14717: checking for LIBOTF
configure:14724: $PKG_CONFIG --exists --print-errors "libotf"
configure:14727: $? = 0
configure:14741: $PKG_CONFIG --exists --print-errors "libotf"
configure:14744: $? = 0
configure:14782: result: yes
configure:14791: checking for OTF_get_variation_glyphs in -lotf
configure:14816: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lotf  -lX11   >&5 
configure:14816: $? = 0
configure:14825: result: yes
configure:14847: checking for M17N_FLT
configure:14854: $PKG_CONFIG --exists --print-errors "m17n-flt"
configure:14857: $? = 0
configure:14871: $PKG_CONFIG --exists --print-errors "m17n-flt"
configure:14874: $? = 0
configure:14912: result: yes
configure:15035: checking X11/Xlib-xcb.h usability
configure:15035: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
conftest.c:185:26: fatal error: X11/Xlib-xcb.h: No such file or directory
compilation terminated.
configure:15035: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <X11/Xlib-xcb.h>
configure:15035: result: no
configure:15035: checking X11/Xlib-xcb.h presence
configure:15035: gcc -std=gnu11 -E     conftest.c
conftest.c:152:26: fatal error: X11/Xlib-xcb.h: No such file or directory
compilation terminated.
configure:15035: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| /* end confdefs.h.  */
| #include <X11/Xlib-xcb.h>
configure:15035: result: no
configure:15035: checking for X11/Xlib-xcb.h
configure:15035: result: no
configure:15234: checking X11/xpm.h usability
configure:15234: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:15234: $? = 0
configure:15234: result: yes
configure:15234: checking X11/xpm.h presence
configure:15234: gcc -std=gnu11 -E     conftest.c
configure:15234: $? = 0
configure:15234: result: yes
configure:15234: checking for X11/xpm.h
configure:15234: result: yes
configure:15236: checking for XpmReadFileToPixmap in -lXpm
configure:15261: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lXpm -lX11 -lX11   >&5 
configure:15261: $? = 0
configure:15270: result: yes
configure:15280: checking for XpmReturnAllocPixels preprocessor define
configure:15300: result: yes
configure:15350: checking for jpeglib 6b or later
configure:15383: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
/tmp/ccVGagL9.o: In function `main':
/home/redknight/git/emacs/conftest.c:164: undefined reference to `jpeg_CreateDecompress'
/home/redknight/git/emacs/conftest.c:166: undefined reference to `jpeg_destroy_decompress'
collect2: error: ld returned 1 exit status
configure:15383: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| /* end confdefs.h.  */
| #undef HAVE_STDLIB_H /* Avoid config.h/jpeglib.h collision.  */
| 	      #include <stdio.h> /* jpeglib.h needs FILE and size_t.  */
| 	      #include <jpeglib.h>
| 	      #include <jerror.h>
| 	      char verify[JPEG_LIB_VERSION < 62 ? -1 : 1];
| 	      struct jpeg_decompress_struct cinfo;
| 
| int
| main ()
| {
| 
| 	      jpeg_create_decompress (&cinfo);
| 	      WARNMS (&cinfo, JWRN_JPEG_EOF);
| 	      jpeg_destroy_decompress (&cinfo);
| 
|   ;
|   return 0;
| }
configure:15383: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   -ljpeg >&5 
configure:15383: $? = 0
configure:15394: result: -ljpeg
configure:15414: checking for library containing inflateEnd
configure:15445: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
/tmp/cceQuwPm.o: In function `main':
/home/redknight/git/emacs/conftest.c:165: undefined reference to `inflateEnd'
collect2: error: ld returned 1 exit status
configure:15445: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char inflateEnd ();
| int
| main ()
| {
| return inflateEnd ();
|   ;
|   return 0;
| }
configure:15445: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lz  -lX11   >&5 
configure:15445: $? = 0
configure:15462: result: -lz
configure:15550: checking for dladdr
configure:15550: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:15550: $? = 0
configure:15550: result: yes
configure:15576: checking for png
configure:15606: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -I/usr/include/libpng12       conftest.c -lpng12 -lz -lm -lX11   >&5 
configure:15606: $? = 0
configure:15621: result: yes
configure:15632: checking whether png_longjmp is declared
configure:15632: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -I/usr/include/libpng12     conftest.c >&5
conftest.c: In function 'main':
conftest.c:167:10: error: 'png_longjmp' undeclared (first use in this function)
conftest.c:167:10: note: each undeclared identifier is reported only once for each function it appears in
configure:15632: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| /* end confdefs.h.  */
| #include <png.h>
| 
| 
| int
| main ()
| {
| #ifndef png_longjmp
| #ifdef __cplusplus
|   (void) png_longjmp;
| #else
|   (void) png_longjmp;
| #endif
| #endif
| 
|   ;
|   return 0;
| }
configure:15632: result: no
configure:15670: checking tiffio.h usability
configure:15670: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:15670: $? = 0
configure:15670: result: yes
configure:15670: checking tiffio.h presence
configure:15670: gcc -std=gnu11 -E     conftest.c
configure:15670: $? = 0
configure:15670: result: yes
configure:15670: checking for tiffio.h
configure:15670: result: yes
configure:15675: checking for TIFFGetVersion in -ltiff
configure:15700: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -ltiff -ljpeg -lz -lm -lX11   >&5 
configure:15700: $? = 0
configure:15709: result: yes
configure:15751: checking gif_lib.h usability
configure:15751: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:15751: $? = 0
configure:15751: result: yes
configure:15751: checking gif_lib.h presence
configure:15751: gcc -std=gnu11 -E     conftest.c
configure:15751: $? = 0
configure:15751: result: yes
configure:15751: checking for gif_lib.h
configure:15751: result: yes
configure:15755: checking for GifMakeMapObject in -lgif
configure:15780: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lgif  -lX11   >&5 
/tmp/ccfcfsJp.o: In function `main':
/home/redknight/git/emacs/conftest.c:170: undefined reference to `GifMakeMapObject'
collect2: error: ld returned 1 exit status
configure:15780: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char GifMakeMapObject ();
| int
| main ()
| {
| return GifMakeMapObject ();
|   ;
|   return 0;
| }
configure:15789: result: no
configure:15794: checking for EGifPutExtensionLast in -lgif
configure:15819: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lgif  -lX11   >&5 
configure:15819: $? = 0
configure:15828: result: yes
configure:15927: checking gpm.h usability
configure:15927: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:15927: $? = 0
configure:15927: result: yes
configure:15927: checking gpm.h presence
configure:15927: gcc -std=gnu11 -E     conftest.c
configure:15927: $? = 0
configure:15927: result: yes
configure:15927: checking for gpm.h
configure:15927: result: yes
configure:15929: checking for Gpm_Open in -lgpm
configure:15954: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lgpm  -lX11   >&5 
configure:15954: $? = 0
configure:15963: result: yes
configure:16016: checking X11/SM/SMlib.h usability
configure:16016: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:16016: $? = 0
configure:16016: result: yes
configure:16016: checking X11/SM/SMlib.h presence
configure:16016: gcc -std=gnu11 -E     conftest.c
configure:16016: $? = 0
configure:16016: result: yes
configure:16016: checking for X11/SM/SMlib.h
configure:16016: result: yes
configure:16018: checking for SmcOpenConnection in -lSM
configure:16043: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lSM -lICE -lX11   >&5 
configure:16043: $? = 0
configure:16052: result: yes
configure:16078: checking for XRANDR
configure:16085: $PKG_CONFIG --exists --print-errors "$XRANDR_MODULES"
configure:16088: $? = 0
configure:16102: $PKG_CONFIG --exists --print-errors "$XRANDR_MODULES"
configure:16105: $? = 0
configure:16143: result: yes
configure:16211: checking for XRRGetOutputPrimary
configure:16211: gcc -std=gnu11 -o conftest    -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lXrandr   -lX11   >&5 
configure:16211: $? = 0
configure:16211: result: yes
configure:16211: checking for XRRGetScreenResourcesCurrent
configure:16211: gcc -std=gnu11 -o conftest    -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lXrandr   -lX11   >&5 
configure:16211: $? = 0
configure:16211: result: yes
configure:16238: checking for XINERAMA
configure:16245: $PKG_CONFIG --exists --print-errors "$XINERAMA_MODULES"
configure:16248: $? = 0
configure:16262: $PKG_CONFIG --exists --print-errors "$XINERAMA_MODULES"
configure:16265: $? = 0
configure:16303: result: yes
configure:16375: checking for XFIXES
configure:16382: $PKG_CONFIG --exists --print-errors "$XFIXES_MODULES"
configure:16385: $? = 0
configure:16399: $PKG_CONFIG --exists --print-errors "$XFIXES_MODULES"
configure:16402: $? = 0
configure:16440: result: yes
configure:16512: checking for LIBXML2
configure:16519: $PKG_CONFIG --exists --print-errors "libxml-2.0 > 2.6.17"
configure:16522: $? = 0
configure:16536: $PKG_CONFIG --exists --print-errors "libxml-2.0 > 2.6.17"
configure:16539: $? = 0
configure:16577: result: yes
configure:16612: checking for htmlReadMemory in -lxml2
configure:16637: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lxml2 -lxml2   -lX11   >&5 
configure:16637: $? = 0
configure:16646: result: yes
configure:16675: checking whether netdb declares h_errno
configure:16691: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:16691: $? = 0
configure:16699: result: yes
configure:16709: checking for maillock in -lmail
configure:16734: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lmail  -lX11   >&5 
/usr/bin/ld: cannot find -lmail
collect2: error: ld returned 1 exit status
configure:16734: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char maillock ();
| int
| main ()
| {
| return maillock ();
|   ;
|   return 0;
| }
configure:16743: result: no
configure:16774: checking for maillock in -llockfile
configure:16799: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -llockfile  -lX11   >&5 
configure:16799: $? = 0
configure:16808: result: yes
configure:16939: checking for accept4
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for fchdir
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for gethostname
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getrusage
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for get_current_dir_name
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for lrand48
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for random
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for rint
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
conftest.c:200:6: warning: conflicting types for built-in function 'rint' [enabled by default]
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for select
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getpagesize
configure:16939: result: yes
configure:16939: checking for setlocale
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for newlocale
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getrlimit
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for setrlimit
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for shutdown
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getaddrinfo
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for pthread_sigmask
configure:16939: result: yes
configure:16939: checking for strsignal
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for setitimer
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for sendto
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for recvfrom
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getsockname
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getpeername
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getifaddrs
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for freeifaddrs
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for gai_strerror
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for sync
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getpwent
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for endpwent
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for getgrent
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for endgrent
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for cfmakeraw
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for cfsetspeed
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for copysign
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
conftest.c:226:6: warning: conflicting types for built-in function 'copysign' [enabled by default]
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for __executable_start
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
configure:16939: $? = 0
configure:16939: result: yes
configure:16939: checking for log2
configure:16939: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lpthread -lm -lX11   >&5 
conftest.c:228:6: warning: conflicting types for built-in function 'log2' [enabled by default]
configure:16939: $? = 0
configure:16939: result: yes
configure:16953: checking for aligned_alloc
configure:16953: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
/tmp/cceAaAz1.o: In function `main':
/home/redknight/git/emacs/conftest.c:240: undefined reference to `aligned_alloc'
collect2: error: ld returned 1 exit status
configure:16953: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| /* end confdefs.h.  */
| /* Define aligned_alloc to an innocuous variant, in case <limits.h> declares aligned_alloc.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define aligned_alloc innocuous_aligned_alloc
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char aligned_alloc (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef aligned_alloc
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char aligned_alloc ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_aligned_alloc || defined __stub___aligned_alloc
| choke me
| #endif
| 
| int
| main ()
| {
| return aligned_alloc ();
|   ;
|   return 0;
| }
configure:16953: result: no
configure:16953: checking for posix_memalign
configure:16953: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:16953: $? = 0
configure:16953: result: yes
configure:16962: checking whether aligned_alloc is declared
configure:16962: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
conftest.c: In function 'main':
conftest.c:216:10: error: 'aligned_alloc' undeclared (first use in this function)
conftest.c:216:10: note: each undeclared identifier is reported only once for each function it appears in
configure:16962: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| /* end confdefs.h.  */
| #include <stdlib.h>
| 
| int
| main ()
| {
| #ifndef aligned_alloc
| #ifdef __cplusplus
|   (void) aligned_alloc;
| #else
|   (void) aligned_alloc;
| #endif
| #endif
| 
|   ;
|   return 0;
| }
configure:16962: result: no
configure:16975: checking for __builtin_unwind_init
configure:16991: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:16991: $? = 0
configure:16999: result: yes
configure:17011: checking for _LARGEFILE_SOURCE value needed for large files
configure:17030: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:17030: $? = 0
configure:17058: result: no
configure:17083: checking for grantpt
configure:17083: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:17083: $? = 0
configure:17083: result: yes
configure:17097: checking for getpt
configure:17097: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:17097: $? = 0
configure:17097: result: yes
configure:17097: checking for posix_openpt
configure:17097: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:17097: $? = 0
configure:17097: result: yes
configure:17112: checking for library containing tputs
configure:17168: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
/tmp/ccDWKZSY.o: In function `main':
/home/redknight/git/emacs/conftest.c:218: undefined reference to `tputs'
collect2: error: ld returned 1 exit status
configure:17168: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| /* end confdefs.h.  */
| 
|   extern void tputs (const char *, int, int (*)(int));
|        int main (int argc, char **argv)
|        {
| 	  if (argc == 10000)
| 	    tputs (argv[0], 0, 0);
| 	  return 0;
|        }
| 
configure:17168: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -ltinfo -lX11   >&5 
configure:17168: $? = 0
configure:17168: ./conftest
configure:17168: $? = 0
configure:17183: result: -ltinfo
configure:17290: checking for timerfd interface
configure:17309: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:17309: $? = 0
configure:17316: result: yes
configure:17325: checking whether signals can be handled on alternate stack
configure:17348: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
conftest.c: In function 'main':
conftest.c:222:4: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
conftest.c:222:15: warning: incompatible implicit declaration of built-in function 'malloc' [enabled by default]
configure:17348: $? = 0
configure:17355: result: yes
configure:17378: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:17378: $? = 0
configure:18067: checking valgrind/valgrind.h usability
configure:18067: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
conftest.c:249:31: fatal error: valgrind/valgrind.h: No such file or directory
compilation terminated.
configure:18067: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <valgrind/valgrind.h>
configure:18067: result: no
configure:18067: checking valgrind/valgrind.h presence
configure:18067: gcc -std=gnu11 -E     conftest.c
conftest.c:216:31: fatal error: valgrind/valgrind.h: No such file or directory
compilation terminated.
configure:18067: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| /* end confdefs.h.  */
| #include <valgrind/valgrind.h>
configure:18067: result: no
configure:18067: checking for valgrind/valgrind.h
configure:18067: result: no
configure:18078: checking for struct unipair.unicode
configure:18078: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:18078: $? = 0
configure:18078: result: yes
configure:18095: checking for socket
configure:18095: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:18095: $? = 0
configure:18095: result: yes
configure:18103: checking netinet/in.h usability
configure:18103: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:18103: $? = 0
configure:18103: result: yes
configure:18103: checking netinet/in.h presence
configure:18103: gcc -std=gnu11 -E     conftest.c
configure:18103: $? = 0
configure:18103: result: yes
configure:18103: checking for netinet/in.h
configure:18103: result: yes
configure:18113: checking arpa/inet.h usability
configure:18113: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:18113: $? = 0
configure:18113: result: yes
configure:18113: checking arpa/inet.h presence
configure:18113: gcc -std=gnu11 -E     conftest.c
configure:18113: $? = 0
configure:18113: result: yes
configure:18113: checking for arpa/inet.h
configure:18113: result: yes
configure:18128: checking for pid_t
configure:18128: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:18128: $? = 0
configure:18128: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
conftest.c: In function 'main':
conftest.c:254:20: error: expected expression before ')' token
configure:18128: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((pid_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:18128: result: yes
configure:18141: checking vfork.h usability
configure:18141: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
conftest.c:251:19: fatal error: vfork.h: No such file or directory
compilation terminated.
configure:18141: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <vfork.h>
configure:18141: result: no
configure:18141: checking vfork.h presence
configure:18141: gcc -std=gnu11 -E     conftest.c
conftest.c:218:19: fatal error: vfork.h: No such file or directory
compilation terminated.
configure:18141: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| /* end confdefs.h.  */
| #include <vfork.h>
configure:18141: result: no
configure:18141: checking for vfork.h
configure:18141: result: no
configure:18154: checking for fork
configure:18154: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
conftest.c:241:6: warning: conflicting types for built-in function 'fork' [enabled by default]
configure:18154: $? = 0
configure:18154: result: yes
configure:18154: checking for vfork
configure:18154: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:18154: $? = 0
configure:18154: result: yes
configure:18164: checking for working fork
configure:18186: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:18186: $? = 0
configure:18186: ./conftest
configure:18186: $? = 0
configure:18196: result: yes
configure:18217: checking for working vfork
configure:18327: result: yes
configure:18355: checking for snprintf
configure:18355: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
conftest.c:245:6: warning: conflicting types for built-in function 'snprintf' [enabled by default]
configure:18355: $? = 0
configure:18355: result: yes
configure:18372: checking whether GLib is linked in
configure:18386: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12   -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2   -I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include   -pthread -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include   -pthread -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include           conftest.c -lX11   -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0   -lrsvg-2 -lm -lgio-2.0 -lgdk_pixbuf-2.0 -lcairo -lgobject-2.0 -lglib-2.0   -ldbus-1   -lgio-2.0 -lgobject-2.0 -lglib-2.0   -lgconf-2 -lglib-2.0   -lgobject-2.0 -lglib-2.0     >&5 
configure:18386: $? = 0
configure:18393: result: yes
configure:18407: checking for nl_langinfo and CODESET
configure:18423: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:18423: $? = 0
configure:18432: result: yes
configure:18440: checking for mbstate_t
configure:18457: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:18457: $? = 0
configure:18464: result: yes
configure:18769: checking for signals via characters
configure:18787: gcc -std=gnu11 -E     conftest.c
configure:18787: $? = 0
configure:18794: result: yes
configure:18832: gcc -std=gnu11 -E     conftest.c
conftest.c:249:3: error: #error "not ia64"
configure:18832: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| /* end confdefs.h.  */
| 
| #ifndef __ia64__
| # error "not ia64"
| #endif
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:18873: gcc -std=gnu11 -E     conftest.c
configure:18873: $? = 0
configure:18893: checking for _setjmp
configure:18915: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:18915: $? = 0
configure:18923: result: yes
configure:18932: checking for sigsetjmp
configure:18951: gcc -std=gnu11 -o conftest  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2         conftest.c -lX11   >&5 
configure:18951: $? = 0
configure:18959: result: yes
configure:19095: checking for usable FIONREAD
configure:19126: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:19126: $? = 0
configure:19135: result: yes
configure:19143: checking for usable SIGIO
configure:19161: gcc -std=gnu11 -c  -g3 -O2 -pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2       conftest.c >&5
configure:19161: $? = 0
configure:19168: result: yes
configure:19393: checking for struct alignment
configure:19413: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:19413: $? = 0
configure:19420: result: yes
configure:19511: checking for working alloca.h
configure:19528: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:19528: $? = 0
configure:19536: result: yes
configure:19544: checking for alloca
configure:19581: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:19581: $? = 0
configure:19589: result: yes
configure:19702: checking for unsigned long long int
configure:19741: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:19741: $? = 0
configure:19750: result: yes
configure:19759: checking whether byte ordering is bigendian
configure:19774: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:268:9: error: unknown type name 'not'
conftest.c:268:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
conftest.c:268:15: error: unknown type name 'universal'
configure:19774: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| /* end confdefs.h.  */
| #ifndef __APPLE_CC__
| 	       not a universal capable compiler
| 	     #endif
| 	     typedef int dummy;
| 
configure:19819: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:19819: $? = 0
configure:19837: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:274:4: error: unknown type name 'not'
conftest.c:274:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
configure:19837: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| 		#include <sys/param.h>
| 
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| 		 not big endian
| 		#endif
| 
|   ;
|   return 0;
| }
configure:19965: result: no
configure:20135: checking whether the preprocessor supports include_next
configure:20173: gcc -std=gnu11 -c -g3 -O2    -Iconftestd1b -Iconftestd2 conftest.c >&5
configure:20173: $? = 0
configure:20194: result: yes
configure:20215: checking whether system header files limit the line length
configure:20238: result: no
configure:20250: checking whether strtold conforms to C99
configure:20277: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:20277: $? = 0
configure:20285: result: yes
configure:20300: checking if environ is properly declared
configure:20323: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:274:39: error: conflicting types for 'environ'
In file included from conftest.c:269:0:
/usr/include/unistd.h:542:15: note: previous declaration of 'environ' was here
configure:20323: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| /* end confdefs.h.  */
| #if HAVE_UNISTD_H
|      #include <unistd.h>
|      #endif
|      /* mingw, BeOS, Haiku declare environ in <stdlib.h>, not in <unistd.h>.  */
|      #include <stdlib.h>
| 
|            extern struct { int foo; } environ;
| int
| main ()
| {
| environ.foo = 1;
|   ;
|   return 0;
| }
configure:20331: result: yes
configure:20346: checking for complete errno.h
configure:20419: result: yes
configure:20741: checking for mode_t
configure:20741: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:20741: $? = 0
configure:20741: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:305:21: error: expected expression before ')' token
configure:20741: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((mode_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:20741: result: yes
configure:20752: checking whether fdatasync is declared
configure:20752: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:20752: $? = 0
configure:20752: result: yes
configure:20765: checking for st_dm_mode in struct stat
configure:20783: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:276:17: error: 'struct stat' has no member named 'st_dm_mode'
configure:20783: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| /* end confdefs.h.  */
| 
| #include <sys/types.h>
| #include <sys/stat.h>
| int
| main ()
| {
| struct stat s; s.st_dm_mode;
|   ;
|   return 0;
| }
configure:20790: result: no
configure:20800: checking whether strmode is declared
configure:20800: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:310:10: error: 'strmode' undeclared (first use in this function)
conftest.c:310:10: note: each undeclared identifier is reported only once for each function it appears in
configure:20800: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| #ifndef strmode
| #ifdef __cplusplus
|   (void) strmode;
| #else
|   (void) strmode;
| #endif
| #endif
| 
|   ;
|   return 0;
| }
configure:20800: result: no
configure:20849: checking whether lstat correctly handles trailing slash
configure:20885: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:20885: $? = 0
configure:20885: ./conftest
configure:20885: $? = 0
configure:20897: result: yes
configure:21089: checking for getopt.h
configure:21089: result: yes
configure:21106: checking for getopt_long_only
configure:21106: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:21106: $? = 0
configure:21106: result: yes
configure:21120: checking whether getopt is POSIX compatible
configure:21162: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:21162: $? = 0
configure:21162: ./conftest
configure:21162: $? = 0
configure:21221: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:21221: $? = 0
configure:21221: ./conftest
configure:21221: $? = 0
configure:21263: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:21263: $? = 0
configure:21263: ./conftest
program: option requires an argument -- 'b'
configure:21263: $? = 0
configure:21281: result: yes
configure:21289: checking for working GNU getopt function
configure:21510: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:21510: $? = 0
configure:21510: ./conftest
configure:21510: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| /* end confdefs.h.  */
| #include <getopt.h>
|                            #include <stddef.h>
|                            #include <string.h>
| 
| #include <stdlib.h>
| #if defined __MACH__ && defined __APPLE__
| /* Avoid a crash on Mac OS X.  */
| #include <mach/mach.h>
| #include <mach/mach_error.h>
| #include <mach/thread_status.h>
| #include <mach/exception.h>
| #include <mach/task.h>
| #include <pthread.h>
| /* The exception port on which our thread listens.  */
| static mach_port_t our_exception_port;
| /* The main function of the thread listening for exceptions of type
|    EXC_BAD_ACCESS.  */
| static void *
| mach_exception_thread (void *arg)
| {
|   /* Buffer for a message to be received.  */
|   struct {
|     mach_msg_header_t head;
|     mach_msg_body_t msgh_body;
|     char data[1024];
|   } msg;
|   mach_msg_return_t retval;
|   /* Wait for a message on the exception port.  */
|   retval = mach_msg (&msg.head, MACH_RCV_MSG | MACH_RCV_LARGE, 0, sizeof (msg),
|                      our_exception_port, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
|   if (retval != MACH_MSG_SUCCESS)
|     abort ();
|   exit (1);
| }
| static void
| nocrash_init (void)
| {
|   mach_port_t self = mach_task_self ();
|   /* Allocate a port on which the thread shall listen for exceptions.  */
|   if (mach_port_allocate (self, MACH_PORT_RIGHT_RECEIVE, &our_exception_port)
|       == KERN_SUCCESS) {
|     /* See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/mach_port_insert_right.html.  */
|     if (mach_port_insert_right (self, our_exception_port, our_exception_port,
|                                 MACH_MSG_TYPE_MAKE_SEND)
|         == KERN_SUCCESS) {
|       /* The exceptions we want to catch.  Only EXC_BAD_ACCESS is interesting
|          for us.  */
|       exception_mask_t mask = EXC_MASK_BAD_ACCESS;
|       /* Create the thread listening on the exception port.  */
|       pthread_attr_t attr;
|       pthread_t thread;
|       if (pthread_attr_init (&attr) == 0
|           && pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED) == 0
|           && pthread_create (&thread, &attr, mach_exception_thread, NULL) == 0) {
|         pthread_attr_destroy (&attr);
|         /* Replace the exception port info for these exceptions with our own.
|            Note that we replace the exception port for the entire task, not only
|            for a particular thread.  This has the effect that when our exception
|            port gets the message, the thread specific exception port has already
|            been asked, and we don't need to bother about it.
|            See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/task_set_exception_ports.html.  */
|         task_set_exception_ports (self, mask, our_exception_port,
|                                   EXCEPTION_DEFAULT, MACHINE_THREAD_STATE);
|       }
|     }
|   }
| }
| #elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| /* Avoid a crash on native Windows.  */
| #define WIN32_LEAN_AND_MEAN
| #include <windows.h>
| #include <winerror.h>
| static LONG WINAPI
| exception_filter (EXCEPTION_POINTERS *ExceptionInfo)
| {
|   switch (ExceptionInfo->ExceptionRecord->ExceptionCode)
|     {
|     case EXCEPTION_ACCESS_VIOLATION:
|     case EXCEPTION_IN_PAGE_ERROR:
|     case EXCEPTION_STACK_OVERFLOW:
|     case EXCEPTION_GUARD_PAGE:
|     case EXCEPTION_PRIV_INSTRUCTION:
|     case EXCEPTION_ILLEGAL_INSTRUCTION:
|     case EXCEPTION_DATATYPE_MISALIGNMENT:
|     case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
|     case EXCEPTION_NONCONTINUABLE_EXCEPTION:
|       exit (1);
|     }
|   return EXCEPTION_CONTINUE_SEARCH;
| }
| static void
| nocrash_init (void)
| {
|   SetUnhandledExceptionFilter ((LPTOP_LEVEL_EXCEPTION_FILTER) exception_filter);
| }
| #else
| /* Avoid a crash on POSIX systems.  */
| #include <signal.h>
| /* A POSIX signal handler.  */
| static void
| exception_handler (int sig)
| {
|   exit (1);
| }
| static void
| nocrash_init (void)
| {
| #ifdef SIGSEGV
|   signal (SIGSEGV, exception_handler);
| #endif
| #ifdef SIGBUS
|   signal (SIGBUS, exception_handler);
| #endif
| }
| #endif
| 
| 
| int
| main ()
| {
| 
|              int result = 0;
| 
|              nocrash_init();
| 
|              /* This code succeeds on glibc 2.8, OpenBSD 4.0, Cygwin, mingw,
|                 and fails on Mac OS X 10.5, AIX 5.2, HP-UX 11, IRIX 6.5,
|                 OSF/1 5.1, Solaris 10.  */
|              {
|                static char conftest[] = "conftest";
|                static char plus[] = "-+";
|                char *argv[3] = { conftest, plus, NULL };
|                opterr = 0;
|                if (getopt (2, argv, "+a") != '?')
|                  result |= 1;
|              }
|              /* This code succeeds on glibc 2.8, mingw,
|                 and fails on Mac OS X 10.5, OpenBSD 4.0, AIX 5.2, HP-UX 11,
|                 IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x.  */
|              {
|                static char program[] = "program";
|                static char p[] = "-p";
|                static char foo[] = "foo";
|                static char bar[] = "bar";
|                char *argv[] = { program, p, foo, bar, NULL };
| 
|                optind = 1;
|                if (getopt (4, argv, "p::") != 'p')
|                  result |= 2;
|                else if (optarg != NULL)
|                  result |= 4;
|                else if (getopt (4, argv, "p::") != -1)
|                  result |= 6;
|                else if (optind != 2)
|                  result |= 8;
|              }
|              /* This code succeeds on glibc 2.8 and fails on Cygwin 1.7.0.  */
|              {
|                static char program[] = "program";
|                static char foo[] = "foo";
|                static char p[] = "-p";
|                char *argv[] = { program, foo, p, NULL };
|                optind = 0;
|                if (getopt (3, argv, "-p") != 1)
|                  result |= 16;
|                else if (getopt (3, argv, "-p") != 'p')
|                  result |= 16;
|              }
|              /* This code fails on glibc 2.11.  */
|              {
|                static char program[] = "program";
|                static char b[] = "-b";
|                static char a[] = "-a";
|                char *argv[] = { program, b, a, NULL };
|                optind = opterr = 0;
|                if (getopt (3, argv, "+:a:b") != 'b')
|                  result |= 32;
|                else if (getopt (3, argv, "+:a:b") != ':')
|                  result |= 32;
|              }
|              /* This code dumps core on glibc 2.14.  */
|              {
|                static char program[] = "program";
|                static char w[] = "-W";
|                static char dummy[] = "dummy";
|                char *argv[] = { program, w, dummy, NULL };
|                optind = opterr = 1;
|                if (getopt (3, argv, "W;") != 'W')
|                  result |= 64;
|              }
|              return result;
| 
|   ;
|   return 0;
| }
configure:21526: result: no
configure:21616: checking whether getenv is declared
configure:21616: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:21616: $? = 0
configure:21616: result: yes
configure:21632: checking for C/C++ restrict keyword
configure:21659: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:21659: $? = 0
configure:21667: result: __restrict
configure:21805: checking for struct timeval
configure:21828: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:21828: $? = 0
configure:21836: result: yes
configure:21841: checking for wide-enough struct timeval.tv_sec member
configure:21868: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:21868: $? = 0
configure:21876: result: yes
configure:21890: checking for long long int
configure:21928: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:21928: $? = 0
configure:21928: ./conftest
configure:21928: $? = 0
configure:21940: result: yes
configure:21962: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:279:10: error: unknown type name 'not'
conftest.c:279:16: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
conftest.c:279:16: error: unknown type name 'universal'
configure:21962: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| /* end confdefs.h.  */
| #ifndef __APPLE_CC__
|          not a universal capable compiler
|         #endif
|         typedef int dummy;
| 
configure:22119: checking whether stdint.h conforms to C99
configure:22288: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:22288: $? = 0
configure:22368: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:22368: $? = 0
configure:22368: ./conftest
configure:22368: $? = 0
configure:22380: result: yes
configure:22953: checking whether memrchr is declared
configure:22953: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:22953: $? = 0
configure:22953: result: yes
configure:22986: checking whether alarm is declared
configure:22986: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:22986: $? = 0
configure:22986: result: yes
configure:23011: checking whether <sys/select.h> is self-contained
configure:23028: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23028: $? = 0
configure:23047: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23047: $? = 0
configure:23077: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:23077: $? = 0
configure:23090: result: yes
configure:23233: checking for sigset_t
configure:23233: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23233: $? = 0
configure:23233: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:289:23: error: expected expression before ')' token
configure:23233: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| /* end confdefs.h.  */
| 
|       #include <signal.h>
|       /* Mingw defines sigset_t not in <signal.h>, but in <sys/types.h>.  */
|       #include <sys/types.h>
| 
| 
| int
| main ()
| {
| if (sizeof ((sigset_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:23233: result: yes
configure:23277: checking for wchar_t
configure:23294: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23294: $? = 0
configure:23301: result: yes
configure:23412: checking whether struct tm is in sys/time.h or time.h
configure:23432: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23432: $? = 0
configure:23439: result: time.h
configure:23447: checking for struct tm.tm_zone
configure:23447: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23447: $? = 0
configure:23447: result: yes
configure:23515: checking for struct tm.tm_gmtoff
configure:23515: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23515: $? = 0
configure:23515: result: yes
configure:23603: checking whether strtoimax is declared
configure:23603: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23603: $? = 0
configure:23603: result: yes
configure:23616: checking whether strtoumax is declared
configure:23616: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23616: $? = 0
configure:23616: result: yes
configure:23629: checking whether stat file-mode macros are broken
configure:23656: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23656: $? = 0
configure:23663: result: no
configure:23763: checking for struct timespec in <time.h>
configure:23780: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:23780: $? = 0
configure:23787: result: yes
configure:23973: checking whether the utimes function works
configure:24102: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:24102: $? = 0
configure:24102: ./conftest
configure:24102: $? = 0
configure:24112: result: yes
configure:24125: checking for struct utimbuf
configure:24148: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:24148: $? = 0
configure:24155: result: yes
configure:24174: checking type of array argument to getgroups
configure:24208: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:24208: $? = 0
configure:24208: ./conftest
configure:24208: $? = 0
configure:24233: result: gid_t
configure:24243: checking whether getdtablesize is declared
configure:24243: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:24243: $? = 0
configure:24243: result: yes
configure:24287: checking sys/acl.h usability
configure:24287: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:24287: $? = 0
configure:24287: result: yes
configure:24287: checking sys/acl.h presence
configure:24287: gcc -std=gnu11 -E    conftest.c
configure:24287: $? = 0
configure:24287: result: yes
configure:24287: checking for sys/acl.h
configure:24287: result: yes
configure:24301: checking for library containing acl_get_file
configure:24332: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
/tmp/ccZX9S9J.o: In function `main':
/home/redknight/git/emacs/conftest.c:303: undefined reference to `acl_get_file'
collect2: error: ld returned 1 exit status
configure:24332: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_get_file ();
| int
| main ()
| {
| return acl_get_file ();
|   ;
|   return 0;
| }
configure:24332: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl  -lpthread  >&5 
configure:24332: $? = 0
configure:24349: result: -lacl
configure:24365: checking for acl_get_file
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_get_fd
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_set_file
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_set_fd
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_free
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_from_mode
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_from_text
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_delete_def_file
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_extended_file
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24365: $? = 0
configure:24365: result: yes
configure:24365: checking for acl_delete_fd_np
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
/tmp/cc4Obbec.o: In function `main':
/home/redknight/git/emacs/conftest.c:335: undefined reference to `acl_delete_fd_np'
collect2: error: ld returned 1 exit status
configure:24365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| /* end confdefs.h.  */
| /* Define acl_delete_fd_np to an innocuous variant, in case <limits.h> declares acl_delete_fd_np.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define acl_delete_fd_np innocuous_acl_delete_fd_np
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char acl_delete_fd_np (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef acl_delete_fd_np
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_delete_fd_np ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_acl_delete_fd_np || defined __stub___acl_delete_fd_np
| choke me
| #endif
| 
| int
| main ()
| {
| return acl_delete_fd_np ();
|   ;
|   return 0;
| }
configure:24365: result: no
configure:24365: checking for acl_delete_file_np
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
/tmp/ccHysXnb.o: In function `main':
/home/redknight/git/emacs/conftest.c:335: undefined reference to `acl_delete_file_np'
collect2: error: ld returned 1 exit status
configure:24365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| /* end confdefs.h.  */
| /* Define acl_delete_file_np to an innocuous variant, in case <limits.h> declares acl_delete_file_np.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define acl_delete_file_np innocuous_acl_delete_file_np
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char acl_delete_file_np (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef acl_delete_file_np
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_delete_file_np ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_acl_delete_file_np || defined __stub___acl_delete_file_np
| choke me
| #endif
| 
| int
| main ()
| {
| return acl_delete_file_np ();
|   ;
|   return 0;
| }
configure:24365: result: no
configure:24365: checking for acl_copy_ext_native
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
/tmp/ccnMl5Zh.o: In function `main':
/home/redknight/git/emacs/conftest.c:335: undefined reference to `acl_copy_ext_native'
collect2: error: ld returned 1 exit status
configure:24365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| /* end confdefs.h.  */
| /* Define acl_copy_ext_native to an innocuous variant, in case <limits.h> declares acl_copy_ext_native.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define acl_copy_ext_native innocuous_acl_copy_ext_native
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char acl_copy_ext_native (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef acl_copy_ext_native
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_copy_ext_native ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_acl_copy_ext_native || defined __stub___acl_copy_ext_native
| choke me
| #endif
| 
| int
| main ()
| {
| return acl_copy_ext_native ();
|   ;
|   return 0;
| }
configure:24365: result: no
configure:24365: checking for acl_create_entry_np
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
/tmp/ccBldnxt.o: In function `main':
/home/redknight/git/emacs/conftest.c:335: undefined reference to `acl_create_entry_np'
collect2: error: ld returned 1 exit status
configure:24365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| /* end confdefs.h.  */
| /* Define acl_create_entry_np to an innocuous variant, in case <limits.h> declares acl_create_entry_np.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define acl_create_entry_np innocuous_acl_create_entry_np
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char acl_create_entry_np (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef acl_create_entry_np
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_create_entry_np ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_acl_create_entry_np || defined __stub___acl_create_entry_np
| choke me
| #endif
| 
| int
| main ()
| {
| return acl_create_entry_np ();
|   ;
|   return 0;
| }
configure:24365: result: no
configure:24365: checking for acl_to_short_text
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
/tmp/ccncN97z.o: In function `main':
/home/redknight/git/emacs/conftest.c:335: undefined reference to `acl_to_short_text'
collect2: error: ld returned 1 exit status
configure:24365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| /* end confdefs.h.  */
| /* Define acl_to_short_text to an innocuous variant, in case <limits.h> declares acl_to_short_text.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define acl_to_short_text innocuous_acl_to_short_text
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char acl_to_short_text (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef acl_to_short_text
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_to_short_text ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_acl_to_short_text || defined __stub___acl_to_short_text
| choke me
| #endif
| 
| int
| main ()
| {
| return acl_to_short_text ();
|   ;
|   return 0;
| }
configure:24365: result: no
configure:24365: checking for acl_free_text
configure:24365: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
/tmp/ccDoqOqM.o: In function `main':
/home/redknight/git/emacs/conftest.c:335: undefined reference to `acl_free_text'
collect2: error: ld returned 1 exit status
configure:24365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| /* end confdefs.h.  */
| /* Define acl_free_text to an innocuous variant, in case <limits.h> declares acl_free_text.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define acl_free_text innocuous_acl_free_text
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char acl_free_text (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef acl_free_text
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char acl_free_text ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_acl_free_text || defined __stub___acl_free_text
| choke me
| #endif
| 
| int
| main ()
| {
| return acl_free_text ();
|   ;
|   return 0;
| }
configure:24365: result: no
configure:24376: checking for working acl_get_file
configure:24399: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24399: $? = 0
configure:24409: result: yes
configure:24418: checking acl/libacl.h usability
configure:24418: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:24418: $? = 0
configure:24418: result: yes
configure:24418: checking acl/libacl.h presence
configure:24418: gcc -std=gnu11 -E    conftest.c
configure:24418: $? = 0
configure:24418: result: yes
configure:24418: checking for acl/libacl.h
configure:24418: result: yes
configure:24438: checking for acl_entries
configure:24438: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lacl -lpthread  >&5 
configure:24438: $? = 0
configure:24438: result: yes
configure:24452: checking for ACL_FIRST_ENTRY
configure:24470: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:24470: $? = 0
configure:24477: result: yes
configure:24484: checking for ACL_TYPE_EXTENDED
configure:24502: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:306:12: error: 'ACL_TYPE_EXTENDED' undeclared here (not in a function)
configure:24502: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/acl.h>
| int type = ACL_TYPE_EXTENDED;
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:24509: result: no
configure:24722: checking for alloca as a compiler built-in
configure:24746: result: yes
configure:24772: checking byteswap.h usability
configure:24772: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:24772: $? = 0
configure:24772: result: yes
configure:24772: checking byteswap.h presence
configure:24772: gcc -std=gnu11 -E    conftest.c
configure:24772: $? = 0
configure:24772: result: yes
configure:24772: checking for byteswap.h
configure:24772: result: yes
configure:24811: checking for library containing clock_gettime
configure:24842: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
/tmp/ccwgHD3t.o: In function `main':
/home/redknight/git/emacs/conftest.c:318: undefined reference to `clock_gettime'
collect2: error: ld returned 1 exit status
configure:24842: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char clock_gettime ();
| int
| main ()
| {
| return clock_gettime ();
|   ;
|   return 0;
| }
configure:24842: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lrt  -lpthread  >&5 
configure:24842: $? = 0
configure:24859: result: -lrt
configure:24871: checking for clock_gettime
configure:24871: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lrt -lpthread  >&5 
configure:24871: $? = 0
configure:24871: result: yes
configure:24871: checking for clock_settime
configure:24871: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lrt -lpthread  >&5 
configure:24871: $? = 0
configure:24871: result: yes
configure:25018: checking whether dup2 works
configure:25106: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:25106: $? = 0
configure:25106: ./conftest
configure:25106: $? = 0
configure:25117: result: yes
configure:25184: checking for library containing backtrace_symbols_fd
configure:25215: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:25215: $? = 0
configure:25232: result: none required
configure:25339: checking whether fcntl handles F_DUPFD correctly
configure:25397: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:25397: $? = 0
configure:25397: ./conftest
configure:25397: $? = 0
configure:25407: result: yes
configure:25425: checking whether fcntl understands F_DUPFD_CLOEXEC
configure:25446: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:25446: $? = 0
configure:25464: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:316:1: error: unknown type name 'choke'
conftest.c:319:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'int'
configure:25464: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| /* end confdefs.h.  */
| 
| #ifdef __linux__
| /* The Linux kernel only added F_DUPFD_CLOEXEC in 2.6.24, so we always replace
|    it to support the semantics on older kernels that failed with EINVAL.  */
| choke me
| #endif
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:25475: result: needs runtime check
configure:25620: checking for library containing fdatasync
configure:25651: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:25651: $? = 0
configure:25668: result: none required
configure:25708: checking whether fdopendir is declared
configure:25708: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:25708: $? = 0
configure:25708: result: yes
configure:25731: checking whether fdopendir works
configure:25772: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:25772: $? = 0
configure:25772: ./conftest
configure:25772: $? = 0
configure:25782: result: yes
configure:25834: checking for __fpending
configure:25851: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:25851: $? = 0
configure:25860: result: yes
configure:25863: checking whether __fpending is declared
configure:25863: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:25863: $? = 0
configure:25863: result: yes
configure:25978: checking whether fstatat (..., 0) works
configure:26003: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:26003: $? = 0
configure:26003: ./conftest
configure:26003: $? = 0
configure:26014: result: yes
configure:26095: checking for getloadavg
configure:26095: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:26095: $? = 0
configure:26095: result: yes
configure:26453: checking sys/loadavg.h usability
configure:26453: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:348:25: fatal error: sys/loadavg.h: No such file or directory
compilation terminated.
configure:26453: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/loadavg.h>
configure:26453: result: no
configure:26453: checking sys/loadavg.h presence
configure:26453: gcc -std=gnu11 -E    conftest.c
conftest.c:315:25: fatal error: sys/loadavg.h: No such file or directory
compilation terminated.
configure:26453: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| /* end confdefs.h.  */
| #include <sys/loadavg.h>
configure:26453: result: no
configure:26453: checking for sys/loadavg.h
configure:26453: result: no
configure:26468: checking whether getloadavg is declared
configure:26468: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:26468: $? = 0
configure:26468: result: yes
configure:26718: checking whether gettimeofday clobbers localtime buffer
configure:26757: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:26757: $? = 0
configure:26757: ./conftest
configure:26757: $? = 0
configure:26767: result: no
configure:26783: checking for gettimeofday with POSIX signature
configure:26811: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:318:19: error: conflicting types for 'gettimeofday'
In file included from conftest.c:316:0:
/usr/include/i386-linux-gnu/sys/time.h:73:12: note: previous declaration of 'gettimeofday' was here
configure:26811: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| /* end confdefs.h.  */
| #include <sys/time.h>
|               struct timeval c;
|               int gettimeofday (struct timeval *restrict, void *restrict);
| 
| int
| main ()
| {
| /* glibc uses struct timezone * rather than the POSIX void *
|                  if _GNU_SOURCE is defined.  However, since the only portable
|                  use of gettimeofday uses NULL as the second parameter, and
|                  since the glibc definition is actually more typesafe, it is
|                  not worth wrapping this to get a compliant signature.  */
|               int (*f) (struct timeval *restrict, void *restrict)
|                 = gettimeofday;
|               int x = f (&c, 0);
|               return !(x | c.tv_sec | c.tv_usec);
| 
|   ;
|   return 0;
| }
configure:26827: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:26827: $? = 0
configure:26836: result: almost
configure:26953: checking for memrchr
configure:26953: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:26953: $? = 0
configure:26953: result: yes
configure:27041: checking for working mktime
configure:27249: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:27249: $? = 0
configure:27249: ./conftest
configure:27249: $? = 0
configure:27260: result: yes
configure:27321: checking whether signature of pselect conforms to POSIX
configure:27341: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:27341: $? = 0
configure:27349: result: yes
configure:27352: checking whether pselect detects invalid fds
configure:27397: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:27397: $? = 0
configure:27397: ./conftest
configure:27397: $? = 0
configure:27408: result: yes
configure:27521: checking whether pthread_sigmask returns error numbers
configure:27553: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread   >&5 
configure:27553: $? = 0
configure:27553: ./conftest
configure:27553: $? = 0
configure:27565: result: yes
configure:27576: checking whether pthread_sigmask unblocks signals correctly
configure:27629: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:27629: $? = 0
configure:27629: ./conftest
configure:27629: $? = 0
configure:27641: result: guessing yes
configure:27726: checking whether readlink signature is correct
configure:27744: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:27744: $? = 0
configure:27751: result: yes
configure:27753: checking whether readlink handles trailing slash correctly
configure:27783: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:27783: $? = 0
configure:27783: ./conftest
configure:27783: $? = 0
configure:27794: result: yes
configure:27845: checking whether readlinkat signature is correct
configure:27863: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:27863: $? = 0
configure:27870: result: yes
configure:27912: checking for sig2str
configure:27912: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
/tmp/ccXJYRAt.o: In function `main':
/home/redknight/git/emacs/conftest.c:353: undefined reference to `sig2str'
collect2: error: ld returned 1 exit status
configure:27912: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| /* end confdefs.h.  */
| /* Define sig2str to an innocuous variant, in case <limits.h> declares sig2str.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define sig2str innocuous_sig2str
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char sig2str (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef sig2str
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char sig2str ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_sig2str || defined __stub___sig2str
| choke me
| #endif
| 
| int
| main ()
| {
| return sig2str ();
|   ;
|   return 0;
| }
configure:27912: result: no
configure:28014: checking for volatile sig_atomic_t
configure:28014: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28014: $? = 0
configure:28014: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:326:36: error: expected expression before ')' token
configure:28014: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| /* end confdefs.h.  */
| 
| #include <signal.h>
| 
| 
| int
| main ()
| {
| if (sizeof ((volatile sig_atomic_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:28014: result: yes
configure:28030: checking for sighandler_t
configure:28030: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28030: $? = 0
configure:28030: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:326:27: error: expected expression before ')' token
configure:28030: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| /* end confdefs.h.  */
| 
| #include <signal.h>
| 
| 
| int
| main ()
| {
| if (sizeof ((sighandler_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:28030: result: yes
configure:28043: checking for socklen_t
configure:28043: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28043: $? = 0
configure:28043: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:334:24: error: expected expression before ')' token
configure:28043: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| /* end confdefs.h.  */
| 
| /* <sys/types.h> is not needed according to POSIX, but the
|    <sys/socket.h> in i386-unknown-freebsd4.10 and
|    powerpc-apple-darwin5.5 required it. */
| #include <sys/types.h>
| #if HAVE_SYS_SOCKET_H
| # include <sys/socket.h>
| #elif HAVE_WS2TCPIP_H
| # include <ws2tcpip.h>
| #endif
| 
| 
| int
| main ()
| {
| if (sizeof ((socklen_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:28043: result: yes
configure:28107: checking for ssize_t
configure:28124: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28124: $? = 0
configure:28131: result: yes
configure:28143: checking for struct stat.st_atim.tv_nsec
configure:28143: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28143: $? = 0
configure:28143: result: yes
configure:28152: checking whether struct stat.st_atim is of type struct timespec
configure:28179: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28179: $? = 0
configure:28186: result: yes
configure:28238: checking for struct stat.st_birthtimespec.tv_nsec
configure:28238: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:328:12: error: 'struct stat' has no member named 'st_birthtimespec'
configure:28238: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|      #include <sys/stat.h>
| 
| int
| main ()
| {
| static struct stat ac_aggr;
| if (ac_aggr.st_birthtimespec.tv_nsec)
| return 0;
|   ;
|   return 0;
| }
configure:28238: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:328:19: error: 'struct stat' has no member named 'st_birthtimespec'
configure:28238: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|      #include <sys/stat.h>
| 
| int
| main ()
| {
| static struct stat ac_aggr;
| if (sizeof ac_aggr.st_birthtimespec.tv_nsec)
| return 0;
|   ;
|   return 0;
| }
configure:28238: result: no
configure:28249: checking for struct stat.st_birthtimensec
configure:28249: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:328:12: error: 'struct stat' has no member named 'st_birthtimensec'
configure:28249: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|         #include <sys/stat.h>
| 
| int
| main ()
| {
| static struct stat ac_aggr;
| if (ac_aggr.st_birthtimensec)
| return 0;
|   ;
|   return 0;
| }
configure:28249: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:328:19: error: 'struct stat' has no member named 'st_birthtimensec'
configure:28249: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|         #include <sys/stat.h>
| 
| int
| main ()
| {
| static struct stat ac_aggr;
| if (sizeof ac_aggr.st_birthtimensec)
| return 0;
|   ;
|   return 0;
| }
configure:28249: result: no
configure:28260: checking for struct stat.st_birthtim.tv_nsec
configure:28260: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:328:12: error: 'struct stat' has no member named 'st_birthtim'
configure:28260: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|           #include <sys/stat.h>
| 
| int
| main ()
| {
| static struct stat ac_aggr;
| if (ac_aggr.st_birthtim.tv_nsec)
| return 0;
|   ;
|   return 0;
| }
configure:28260: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:328:19: error: 'struct stat' has no member named 'st_birthtim'
configure:28260: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|           #include <sys/stat.h>
| 
| int
| main ()
| {
| static struct stat ac_aggr;
| if (sizeof ac_aggr.st_birthtim.tv_nsec)
| return 0;
|   ;
|   return 0;
| }
configure:28260: result: no
configure:28278: checking for working stdalign.h
configure:28323: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c:333:18: error: size of array 'test_double' is negative
configure:28323: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <stdalign.h>
|             #include <stddef.h>
| 
|             /* Test that alignof yields a result consistent with offsetof.
|                This catches GCC bug 52023
|                <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52023>.  */
|             #ifdef __cplusplus
|                template <class t> struct alignof_helper { char a; t b; };
|             # define ao(type) offsetof (alignof_helper<type>, b)
|             #else
|             # define ao(type) offsetof (struct { char a; type b; }, b)
|             #endif
|             char test_double[ao (double) % _Alignof (double) == 0 ? 1 : -1];
|             char test_long[ao (long int) % _Alignof (long int) == 0 ? 1 : -1];
|             char test_alignof[alignof (double) == _Alignof (double) ? 1 : -1];
| 
|             /* Test _Alignas only on platforms where gnulib can help.  */
|             #if                 ((defined __cplusplus && 201103 <= __cplusplus)                  || (defined __APPLE__ && defined __MACH__                      ? 4 < __GNUC__ + (1 <= __GNUC_MINOR__)                      : __GNUC__)                  || __HP_cc || __HP_aCC || __IBMC__ || __IBMCPP__                  || __ICC || 0x5110 <= __SUNPRO_C                  || 1300 <= _MSC_VER)
|               struct alignas_test { char c; char alignas (8) alignas_8; };
|               char test_alignas[offsetof (struct alignas_test, alignas_8) == 8
|                                 ? 1 : -1];
|             #endif
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28330: result: no
configure:28353: checking for max_align_t
configure:28353: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28353: $? = 0
configure:28353: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:327:26: error: expected expression before ')' token
configure:28353: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| /* end confdefs.h.  */
| #include <stddef.h>
| 
| 
| int
| main ()
| {
| if (sizeof ((max_align_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:28353: result: yes
configure:28366: checking whether NULL can be used in arbitrary expressions
configure:28384: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28384: $? = 0
configure:28391: result: yes
configure:28557: checking which flavor of printf attribute matches inttypes macros
configure:28584: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:28584: $? = 0
configure:28591: result: system
configure:28721: checking for stpcpy
configure:28721: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
conftest.c:346:6: warning: conflicting types for built-in function 'stpcpy' [enabled by default]
configure:28721: $? = 0
configure:28721: result: yes
configure:28788: checking whether strtoimax works
configure:28842: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:28842: $? = 0
configure:28842: ./conftest
configure:28842: $? = 0
configure:28853: result: yes
configure:28958: checking whether symlink handles trailing slash correctly
configure:28992: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:28992: $? = 0
configure:28992: ./conftest
configure:28992: $? = 0
configure:29003: result: yes
configure:29039: checking whether <sys/select.h> is self-contained
configure:29118: result: yes
configure:29331: checking for nlink_t
configure:29331: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:29331: $? = 0
configure:29331: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:331:22: error: expected expression before ')' token
configure:29331: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| #define GNULIB_FSCANF 1
| #define GNULIB_SCANF 1
| #define HAVE_STPCPY 1
| #define my_strftime nstrftime
| /* end confdefs.h.  */
| #include <sys/types.h>
|      #include <sys/stat.h>
| 
| int
| main ()
| {
| if (sizeof ((nlink_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:29331: result: yes
configure:29361: checking whether localtime_r is declared
configure:29361: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:29361: $? = 0
configure:29361: result: yes
configure:29380: checking whether localtime_r is compatible with its POSIX signature
configure:29404: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:29404: $? = 0
configure:29412: result: yes
configure:29455: checking for timezone_t
configure:29455: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
conftest.c: In function 'main':
conftest.c:331:13: error: 'timezone_t' undeclared (first use in this function)
conftest.c:331:13: note: each undeclared identifier is reported only once for each function it appears in
configure:29455: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| #define GNULIB_FSCANF 1
| #define GNULIB_SCANF 1
| #define HAVE_STPCPY 1
| #define my_strftime nstrftime
| #define HAVE_DECL_LOCALTIME_R 1
| /* end confdefs.h.  */
| #include <time.h>
| 
| int
| main ()
| {
| if (sizeof (timezone_t))
| 	 return 0;
|   ;
|   return 0;
| }
configure:29455: result: no
configure:29542: checking for library containing timer_settime
configure:29573: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
/tmp/ccrnvp9x.o: In function `main':
/home/redknight/git/emacs/conftest.c:337: undefined reference to `timer_settime'
collect2: error: ld returned 1 exit status
configure:29573: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| #define GNULIB_FSCANF 1
| #define GNULIB_SCANF 1
| #define HAVE_STPCPY 1
| #define my_strftime nstrftime
| #define HAVE_DECL_LOCALTIME_R 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char timer_settime ();
| int
| main ()
| {
| return timer_settime ();
|   ;
|   return 0;
| }
configure:29573: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lrt  -lpthread  >&5 
configure:29573: $? = 0
configure:29590: result: -lrt
configure:29602: checking for timer_settime
configure:29602: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lrt -lpthread  >&5 
configure:29602: $? = 0
configure:29602: result: yes
configure:29772: checking for variable-length arrays
configure:29828: gcc -std=gnu11 -c -g3 -O2    conftest.c >&5
configure:29828: $? = 0
configure:29838: result: yes
configure:30308: checking whether getdtablesize works
configure:30337: gcc -std=gnu11 -o conftest -g3 -O2      conftest.c -lpthread  >&5 
configure:30337: $? = 0
configure:30337: ./conftest
configure:30337: $? = 0
configure:30348: result: yes
configure:31344: checking whether gcc -std=gnu11 accepts -nopie
configure:31364: gcc -std=gnu11 -o conftest -g3 -O2      -nopie conftest.c   >&5 
gcc: error: unrecognized command line option '-nopie'
configure:31364: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Emacs"
| #define PACKAGE_TARNAME "emacs"
| #define PACKAGE_VERSION "25.1.50"
| #define PACKAGE_STRING "GNU Emacs 25.1.50"
| #define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/emacs/"
| #define PACKAGE "emacs"
| #define VERSION "25.1.50"
| #define MAIL_USE_POP 1
| #define WIDE_EMACS_INT 1
| #define HAVE_PUTENV 1
| #define HAVE_TZSET 1
| #define HAVE_FCHMOD 1
| #define HAVE_READLINKAT 1
| #define HAVE_FACCESSAT 1
| #define HAVE_FCNTL 1
| #define HAVE_FDOPENDIR 1
| #define HAVE_FSTATAT 1
| #define HAVE_FSYNC 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LSTAT 1
| #define HAVE_MKOSTEMP 1
| #define HAVE_PIPE2 1
| #define HAVE_PSELECT 1
| #define HAVE_READLINK 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_SYMLINK 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMEGM 1
| #define HAVE_FUTIMES 1
| #define HAVE_FUTIMESAT 1
| #define HAVE_FUTIMENS 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_LUTIMES 1
| #define HAVE_GETDTABLESIZE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define __USE_MINGW_ANSI_STDIO 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define SYSTEM_TYPE "gnu/linux"
| #define HAVE_SYS_SOUNDCARD_H 1
| #define HAVE_ALSA 1
| #define HAVE_SOUND 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SYSINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_MAILLOCK_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_STDIO_EXT_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PERSONALITY_LINUX32 1
| #define HAVE_LINUX_SYSINFO 1
| #define LINUX_SYSINFO_UNIT 1
| #define HAVE_TERM_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_NET_IF_H 1
| #define HAVE_IFADDRS_H 1
| #define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
| #define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
| #define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
| #define HAVE_STRUCT_IFREQ_IFR_ADDR 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_SYS_VLIMIT_H 1
| #define HAVE_DATA_START 1
| #define DOUG_LEA_MALLOC 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_PTHREAD 1
| #define HAVE_XKB 1
| #define HAVE_XRMSETDATABASE 1
| #define HAVE_XSCREENRESOURCESTRING 1
| #define HAVE_XSCREENNUMBEROFSCREEN 1
| #define HAVE_X11R6 1
| #define HAVE_X_I18N 1
| #define HAVE_X11R6_XIM 1
| #define HAVE_RSVG 1
| #define HAVE_GTK3 1
| #define GDK_DISABLE_DEPRECATION_WARNINGS 1
| #define GLIB_DISABLE_DEPRECATION_WARNINGS 1
| #define USE_GTK 1
| #define HAVE_GTK_HANDLE_BOX_NEW 1
| #define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
| #define HAVE_GTK_WIDGET_GET_WINDOW 1
| #define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
| #define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
| #define HAVE_GTK_WIDGET_GET_SENSITIVE 1
| #define HAVE_GTK_WIDGET_GET_MAPPED 1
| #define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
| #define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
| #define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
| #define HAVE_DBUS 1
| #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
| #define HAVE_DBUS_TYPE_IS_VALID 1
| #define HAVE_DBUS_VALIDATE_BUS_NAME 1
| #define HAVE_DBUS_VALIDATE_PATH 1
| #define HAVE_DBUS_VALIDATE_INTERFACE 1
| #define HAVE_DBUS_VALIDATE_MEMBER 1
| #define HAVE_GSETTINGS 1
| #define HAVE_GCONF 1
| #define HAVE_LIBSELINUX 1
| #define HAVE_GNUTLS 1
| #define HAVE_INOTIFY 1
| #define USE_FILE_NOTIFY 1
| #define USE_TOOLKIT_SCROLL_BARS 1
| #define HAVE_XIM 1
| #define USE_XIM 1
| #define XRegisterIMInstantiateCallback_arg6 XPointer
| #define HAVE_XFT 1
| #define HAVE_FREETYPE 1
| #define HAVE_LIBOTF 1
| #define HAVE_OTF_GET_VARIATION_GLYPHS 1
| #define HAVE_M17N_FLT 1
| #define HAVE_XPM 1
| #define HAVE_JPEG 1
| #define HAVE_ZLIB 1
| #define HAVE_DLADDR 1
| #define HAVE_PNG 1
| #define PNG_DEPSTRUCT /**/
| #define HAVE_TIFF 1
| #define HAVE_GIF 1
| #define HAVE_GPM 1
| #define HAVE_X_SM 1
| #define HAVE_XRRGETOUTPUTPRIMARY 1
| #define HAVE_XRRGETSCREENRESOURCESCURRENT 1
| #define HAVE_XRANDR 1
| #define HAVE_XINERAMA 1
| #define HAVE_XFIXES 1
| #define HAVE_LIBXML2 1
| #define HAVE_H_ERRNO 1
| #define HAVE_LIBLOCKFILE 1
| #define HAVE_ACCEPT4 1
| #define HAVE_FCHDIR 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_GET_CURRENT_DIR_NAME 1
| #define HAVE_LRAND48 1
| #define HAVE_RANDOM 1
| #define HAVE_RINT 1
| #define HAVE_SELECT 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_SETITIMER 1
| #define HAVE_SENDTO 1
| #define HAVE_RECVFROM 1
| #define HAVE_GETSOCKNAME 1
| #define HAVE_GETPEERNAME 1
| #define HAVE_GETIFADDRS 1
| #define HAVE_FREEIFADDRS 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_SYNC 1
| #define HAVE_GETPWENT 1
| #define HAVE_ENDPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_ENDGRENT 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_CFSETSPEED 1
| #define HAVE_COPYSIGN 1
| #define HAVE___EXECUTABLE_START 1
| #define HAVE_LOG2 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_DECL_ALIGNED_ALLOC 0
| #define HAVE___BUILTIN_UNWIND_INIT 1
| #define HAVE_FSEEKO 1
| #define HAVE_GRANTPT 1
| #define HAVE_GETPT 1
| #define HAVE_POSIX_OPENPT 1
| #define TERMINFO 1
| #define HAVE_TIMERFD 1
| #define HAVE_RES_INIT 1
| #define HAVE_STRUCT_UNIPAIR_UNICODE 1
| #define HAVE_INET_SOCKETS 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GLIB 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_MBSTATE_T 1
| #define AMPERSAND_FULL_NAME 1
| #define HAVE_PTYS 1
| #define HAVE_SOCKETS 1
| #define NULL_DEVICE "/dev/null"
| #define SEPCHAR ':'
| #define subprocesses 1
| #define USER_FULL_NAME pw->pw_gecos
| #define DIRECTORY_SEP '/'
| #define IS_DEVICE_SEP(_c_) 0
| #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
| #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
| #define HAVE_PROCFS 1
| #define DEFAULT_SOUND_DEVICE "/dev/dsp"
| #define INTERRUPT_INPUT 1
| #define NARROWPROTO 1
| #define UNIX98_PTYS 1
| #define PTY_ITERATION int i; for (i = 0; i < 1; i++)
| #define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
| #define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
| #define PTY_NAME_SPRINTF /**/
| #define SIGNALS_VIA_CHARACTERS 1
| #define GC_SETJMP_WORKS 1
| #define GC_SETJMP_WORKS 1
| #define HAVE__SETJMP 1
| #define HAVE_SIGSETJMP 1
| #define HAVE_STACK_OVERFLOW_HANDLING 1
| #define USG /**/
| #define GNU_LINUX /**/
| #define USABLE_FIONREAD 1
| #define USABLE_SIGIO 1
| #define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
| #define TERM_HEADER "gtkutil.h"
| #define EMACS_CONFIGURATION "i686-pc-linux-gnu"
| #define EMACS_CONFIG_OPTIONS "--with-wide-int"
| #define HAVE_X_WINDOWS 1
| #define HAVE_X11 1
| #define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
| #define GNU_MALLOC 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_C99_STRTOLD 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_DECL_FDATASYNC 1
| #define HAVE_DECL_STRMODE 0
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_GETOPT_H 1
| #define HAVE_GETOPT_LONG_ONLY 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_DECL_GETENV 1
| #define restrict __restrict
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_DECL_MEMRCHR 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_SIGSET_T 1
| #define HAVE_WCHAR_T 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_WORKING_UTIMES 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define GETGROUPS_T gid_t
| #define HAVE_DECL_GETDTABLESIZE 1
| #define HAVE_SYS_ACL_H 1
| #define HAVE_ACL_GET_FILE 1
| #define HAVE_ACL_GET_FD 1
| #define HAVE_ACL_SET_FILE 1
| #define HAVE_ACL_SET_FD 1
| #define HAVE_ACL_FREE 1
| #define HAVE_ACL_FROM_MODE 1
| #define HAVE_ACL_FROM_TEXT 1
| #define HAVE_ACL_DELETE_DEF_FILE 1
| #define HAVE_ACL_EXTENDED_FILE 1
| #define HAVE_ACL_LIBACL_H 1
| #define HAVE_ACL_ENTRIES 1
| #define HAVE_ACL_FIRST_ENTRY 1
| #define USE_ACL 1
| #define HAVE_ALLOCA 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define GNULIB_CLOSE_STREAM 1
| #define HAVE_DUP2 1
| #define GNULIB_FACCESSAT 1
| #define HAVE_DECL_FDOPENDIR 1
| #define GNULIB_FDOPENDIR 1
| #define HAVE_DECL___FPENDING 1
| #define __GETOPT_PREFIX rpl_
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define HAVE_MEMRCHR 1
| #define GNULIB_MKOSTEMP 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| #define GNULIB_FSCANF 1
| #define GNULIB_SCANF 1
| #define HAVE_STPCPY 1
| #define my_strftime nstrftime
| #define HAVE_DECL_LOCALTIME_R 1
| #define HAVE_TIMER_SETTIME 1
| #define HAVE_C_VARARRAYS 1
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:31374: result: no
configure:31911: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by GNU Emacs config.status 25.1.50, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on jetstar

config.status:2071: creating ./doc/man/emacs.1
config.status:2071: creating Makefile
config.status:2071: creating lib/Makefile
config.status:2071: creating lib-src/Makefile
config.status:2071: creating oldXMenu/Makefile
config.status:2071: creating doc/emacs/Makefile
config.status:2071: creating doc/misc/Makefile
config.status:2071: creating doc/lispintro/Makefile
config.status:2071: creating doc/lispref/Makefile
config.status:2071: creating src/Makefile
config.status:2071: creating lwlib/Makefile
config.status:2071: creating lisp/Makefile
config.status:2071: creating leim/Makefile
config.status:2071: creating nextstep/Makefile
config.status:2071: creating nt/Makefile
config.status:2071: creating test/Makefile
config.status:2071: creating admin/charsets/Makefile
config.status:2071: creating admin/unidata/Makefile
config.status:2071: creating admin/grammars/Makefile
config.status:2071: creating src/config.h
config.status:2300: executing depfiles commands
config.status:2300: executing src/epaths.h commands
config.status:2300: executing src/.gdbinit commands
config.status:2300: executing doc/emacs/emacsver.texi commands
config.status:2300: executing etc-refcards-emacsver.tex commands

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=i686-pc-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_c_restrict=__restrict
ac_cv_c_vararrays=yes
ac_cv_env_ALSA_CFLAGS_set=
ac_cv_env_ALSA_CFLAGS_value=
ac_cv_env_ALSA_LIBS_set=
ac_cv_env_ALSA_LIBS_value=
ac_cv_env_CAIRO_CFLAGS_set=
ac_cv_env_CAIRO_CFLAGS_value=
ac_cv_env_CAIRO_LIBS_set=
ac_cv_env_CAIRO_LIBS_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_DBUS_CFLAGS_set=
ac_cv_env_DBUS_CFLAGS_value=
ac_cv_env_DBUS_LIBS_set=
ac_cv_env_DBUS_LIBS_value=
ac_cv_env_FONTCONFIG_CFLAGS_set=
ac_cv_env_FONTCONFIG_CFLAGS_value=
ac_cv_env_FONTCONFIG_LIBS_set=
ac_cv_env_FONTCONFIG_LIBS_value=
ac_cv_env_FREETYPE_CFLAGS_set=
ac_cv_env_FREETYPE_CFLAGS_value=
ac_cv_env_FREETYPE_LIBS_set=
ac_cv_env_FREETYPE_LIBS_value=
ac_cv_env_GCONF_CFLAGS_set=
ac_cv_env_GCONF_CFLAGS_value=
ac_cv_env_GCONF_LIBS_set=
ac_cv_env_GCONF_LIBS_value=
ac_cv_env_GFILENOTIFY_CFLAGS_set=
ac_cv_env_GFILENOTIFY_CFLAGS_value=
ac_cv_env_GFILENOTIFY_LIBS_set=
ac_cv_env_GFILENOTIFY_LIBS_value=
ac_cv_env_GOBJECT_CFLAGS_set=
ac_cv_env_GOBJECT_CFLAGS_value=
ac_cv_env_GOBJECT_LIBS_set=
ac_cv_env_GOBJECT_LIBS_value=
ac_cv_env_GSETTINGS_CFLAGS_set=
ac_cv_env_GSETTINGS_CFLAGS_value=
ac_cv_env_GSETTINGS_LIBS_set=
ac_cv_env_GSETTINGS_LIBS_value=
ac_cv_env_GTK_CFLAGS_set=
ac_cv_env_GTK_CFLAGS_value=
ac_cv_env_GTK_LIBS_set=
ac_cv_env_GTK_LIBS_value=
ac_cv_env_IMAGEMAGICK_CFLAGS_set=
ac_cv_env_IMAGEMAGICK_CFLAGS_value=
ac_cv_env_IMAGEMAGICK_LIBS_set=
ac_cv_env_IMAGEMAGICK_LIBS_value=
ac_cv_env_KQUEUE_CFLAGS_set=
ac_cv_env_KQUEUE_CFLAGS_value=
ac_cv_env_KQUEUE_LIBS_set=
ac_cv_env_KQUEUE_LIBS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBGNUTLS3_CFLAGS_set=
ac_cv_env_LIBGNUTLS3_CFLAGS_value=
ac_cv_env_LIBGNUTLS3_LIBS_set=
ac_cv_env_LIBGNUTLS3_LIBS_value=
ac_cv_env_LIBGNUTLS_CFLAGS_set=
ac_cv_env_LIBGNUTLS_CFLAGS_value=
ac_cv_env_LIBGNUTLS_LIBS_set=
ac_cv_env_LIBGNUTLS_LIBS_value=
ac_cv_env_LIBOTF_CFLAGS_set=
ac_cv_env_LIBOTF_CFLAGS_value=
ac_cv_env_LIBOTF_LIBS_set=
ac_cv_env_LIBOTF_LIBS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_LIBXML2_CFLAGS_set=
ac_cv_env_LIBXML2_CFLAGS_value=
ac_cv_env_LIBXML2_LIBS_set=
ac_cv_env_LIBXML2_LIBS_value=
ac_cv_env_M17N_FLT_CFLAGS_set=
ac_cv_env_M17N_FLT_CFLAGS_value=
ac_cv_env_M17N_FLT_LIBS_set=
ac_cv_env_M17N_FLT_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=
ac_cv_env_PKG_CONFIG_LIBDIR_value=
ac_cv_env_PKG_CONFIG_PATH_set=
ac_cv_env_PKG_CONFIG_PATH_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_RSVG_CFLAGS_set=
ac_cv_env_RSVG_CFLAGS_value=
ac_cv_env_RSVG_LIBS_set=
ac_cv_env_RSVG_LIBS_value=
ac_cv_env_WEBKIT_CFLAGS_set=
ac_cv_env_WEBKIT_CFLAGS_value=
ac_cv_env_WEBKIT_LIBS_set=
ac_cv_env_WEBKIT_LIBS_value=
ac_cv_env_XFIXES_CFLAGS_set=
ac_cv_env_XFIXES_CFLAGS_value=
ac_cv_env_XFIXES_LIBS_set=
ac_cv_env_XFIXES_LIBS_value=
ac_cv_env_XFT_CFLAGS_set=
ac_cv_env_XFT_CFLAGS_value=
ac_cv_env_XFT_LIBS_set=
ac_cv_env_XFT_LIBS_value=
ac_cv_env_XINERAMA_CFLAGS_set=
ac_cv_env_XINERAMA_CFLAGS_value=
ac_cv_env_XINERAMA_LIBS_set=
ac_cv_env_XINERAMA_LIBS_value=
ac_cv_env_XMKMF_set=
ac_cv_env_XMKMF_value=
ac_cv_env_XRANDR_CFLAGS_set=
ac_cv_env_XRANDR_CFLAGS_value=
ac_cv_env_XRANDR_LIBS_set=
ac_cv_env_XRANDR_LIBS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func_XRRGetOutputPrimary=yes
ac_cv_func_XRRGetScreenResourcesCurrent=yes
ac_cv_func_XScreenNumberOfScreen=yes
ac_cv_func_XScreenResourceString=yes
ac_cv_func_XrmSetDatabase=yes
ac_cv_func___executable_start=yes
ac_cv_func_accept4=yes
ac_cv_func_acl_copy_ext_native=no
ac_cv_func_acl_create_entry_np=no
ac_cv_func_acl_delete_def_file=yes
ac_cv_func_acl_delete_fd_np=no
ac_cv_func_acl_delete_file_np=no
ac_cv_func_acl_entries=yes
ac_cv_func_acl_extended_file=yes
ac_cv_func_acl_free=yes
ac_cv_func_acl_free_text=no
ac_cv_func_acl_from_mode=yes
ac_cv_func_acl_from_text=yes
ac_cv_func_acl_get_fd=yes
ac_cv_func_acl_get_file=yes
ac_cv_func_acl_set_fd=yes
ac_cv_func_acl_set_file=yes
ac_cv_func_acl_to_short_text=no
ac_cv_func_aligned_alloc=no
ac_cv_func_alloca_works=yes
ac_cv_func_cfmakeraw=yes
ac_cv_func_cfsetspeed=yes
ac_cv_func_clock_gettime=yes
ac_cv_func_clock_settime=yes
ac_cv_func_copysign=yes
ac_cv_func_dbus_type_is_valid=yes
ac_cv_func_dbus_validate_bus_name=yes
ac_cv_func_dbus_validate_interface=yes
ac_cv_func_dbus_validate_member=yes
ac_cv_func_dbus_validate_path=yes
ac_cv_func_dbus_watch_get_unix_fd=yes
ac_cv_func_dladdr=yes
ac_cv_func_endgrent=yes
ac_cv_func_endpwent=yes
ac_cv_func_faccessat=yes
ac_cv_func_fchdir=yes
ac_cv_func_fchmod=yes
ac_cv_func_fcntl=yes
ac_cv_func_fdopendir=yes
ac_cv_func_fork=yes
ac_cv_func_fork_works=yes
ac_cv_func_freeifaddrs=yes
ac_cv_func_fstatat=yes
ac_cv_func_fsync=yes
ac_cv_func_futimens=yes
ac_cv_func_futimes=yes
ac_cv_func_futimesat=yes
ac_cv_func_gai_strerror=yes
ac_cv_func_get_current_dir_name=yes
ac_cv_func_getaddrinfo=yes
ac_cv_func_getdtablesize=yes
ac_cv_func_getgrent=yes
ac_cv_func_gethostname=yes
ac_cv_func_getifaddrs=yes
ac_cv_func_getloadavg=yes
ac_cv_func_getopt_long_only=yes
ac_cv_func_getpagesize=yes
ac_cv_func_getpeername=yes
ac_cv_func_getpt=yes
ac_cv_func_getpwent=yes
ac_cv_func_getrlimit=yes
ac_cv_func_getrusage=yes
ac_cv_func_getsockname=yes
ac_cv_func_gettimeofday=yes
ac_cv_func_grantpt=yes
ac_cv_func_gtk_adjustment_get_page_size=yes
ac_cv_func_gtk_dialog_get_action_area=yes
ac_cv_func_gtk_handle_box_new=yes
ac_cv_func_gtk_orientable_set_orientation=yes
ac_cv_func_gtk_tearoff_menu_item_new=yes
ac_cv_func_gtk_widget_get_mapped=yes
ac_cv_func_gtk_widget_get_sensitive=yes
ac_cv_func_gtk_widget_get_window=yes
ac_cv_func_gtk_widget_set_has_window=yes
ac_cv_func_gtk_window_set_has_resize_grip=yes
ac_cv_func_inotify_init1=yes
ac_cv_func_localtime_r=yes
ac_cv_func_log2=yes
ac_cv_func_lrand48=yes
ac_cv_func_lstat=yes
ac_cv_func_lutimes=yes
ac_cv_func_memrchr=yes
ac_cv_func_mkostemp=yes
ac_cv_func_mmap_fixed_mapped=yes
ac_cv_func_nanotime=no
ac_cv_func_newlocale=yes
ac_cv_func_pipe2=yes
ac_cv_func_posix_memalign=yes
ac_cv_func_posix_openpt=yes
ac_cv_func_pselect=yes
ac_cv_func_pthread_sigmask=yes
ac_cv_func_putenv=yes
ac_cv_func_random=yes
ac_cv_func_readlink=yes
ac_cv_func_readlinkat=yes
ac_cv_func_recvfrom=yes
ac_cv_func_rint=yes
ac_cv_func_secure_getenv=no
ac_cv_func_select=yes
ac_cv_func_sendto=yes
ac_cv_func_setitimer=yes
ac_cv_func_setlocale=yes
ac_cv_func_setrlimit=yes
ac_cv_func_shutdown=yes
ac_cv_func_sig2str=no
ac_cv_func_snprintf=yes
ac_cv_func_socket=yes
ac_cv_func_stpcpy=yes
ac_cv_func_strsignal=yes
ac_cv_func_strtoimax=yes
ac_cv_func_strtoumax=yes
ac_cv_func_symlink=yes
ac_cv_func_sync=yes
ac_cv_func_timegm=yes
ac_cv_func_timer_settime=yes
ac_cv_func_tzset=yes
ac_cv_func_utimensat=yes
ac_cv_func_vfork=yes
ac_cv_func_vfork_works=yes
ac_cv_have_decl_GTK_TYPE_FILE_SELECTION=no
ac_cv_have_decl_GTK_TYPE_HANDLE_BOX=yes
ac_cv_have_decl_GTK_TYPE_TEAROFF_MENU_ITEM=yes
ac_cv_have_decl___fpending=yes
ac_cv_have_decl_alarm=yes
ac_cv_have_decl_aligned_alloc=no
ac_cv_have_decl_fdatasync=yes
ac_cv_have_decl_fdopendir=yes
ac_cv_have_decl_getdtablesize=yes
ac_cv_have_decl_getenv=yes
ac_cv_have_decl_getloadavg=yes
ac_cv_have_decl_localtime_r=yes
ac_cv_have_decl_memrchr=yes
ac_cv_have_decl_png_longjmp=no
ac_cv_have_decl_strmode=no
ac_cv_have_decl_strtoimax=yes
ac_cv_have_decl_strtoumax=yes
ac_cv_have_decl_sys_siglist=yes
ac_cv_have_x='have_x=yes	ac_x_includes='\'''\''	ac_x_libraries='\'''\'''
ac_cv_header_X11_SM_SMlib_h=yes
ac_cv_header_X11_Xft_Xft_h=yes
ac_cv_header_X11_Xlib_xcb_h=no
ac_cv_header_X11_xpm_h=yes
ac_cv_header_acl_libacl_h=yes
ac_cv_header_arpa_inet_h=yes
ac_cv_header_byteswap_h=yes
ac_cv_header_coff_h=no
ac_cv_header_dirent_h=yes
ac_cv_header_execinfo_h=yes
ac_cv_header_getopt_h=yes
ac_cv_header_gif_lib_h=yes
ac_cv_header_gpm_h=yes
ac_cv_header_ifaddrs_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_machine_soundcard_h=no
ac_cv_header_maillock_h=yes
ac_cv_header_malloc_h=yes
ac_cv_header_malloc_malloc_h=no
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_mmsystem_h=no
ac_cv_header_net_if_dl_h=no
ac_cv_header_net_if_h=yes
ac_cv_header_netinet_in_h=yes
ac_cv_header_pthread_h=yes
ac_cv_header_pty_h=yes
ac_cv_header_pwd_h=yes
ac_cv_header_soundcard_h=no
ac_cv_header_stat_broken=no
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdio_ext_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_acl_h=yes
ac_cv_header_sys_inotify_h=yes
ac_cv_header_sys_loadavg_h=no
ac_cv_header_sys_param_h=yes
ac_cv_header_sys_resource_h=yes
ac_cv_header_sys_select_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_soundcard_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_sysinfo_h=yes
ac_cv_header_sys_systeminfo_h=no
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_un_h=yes
ac_cv_header_sys_utsname_h=yes
ac_cv_header_sys_vlimit_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_term_h=yes
ac_cv_header_tiffio_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_header_util_h=no
ac_cv_header_utime_h=yes
ac_cv_header_utmp_h=yes
ac_cv_header_valgrind_valgrind_h=no
ac_cv_header_vfork_h=no
ac_cv_header_wchar_h=yes
ac_cv_host=i686-pc-linux-gnu
ac_cv_lib_SM_SmcOpenConnection=yes
ac_cv_lib_Xbsd_main=no
ac_cv_lib_Xft_XftFontOpen=yes
ac_cv_lib_Xpm_XpmReadFileToPixmap=yes
ac_cv_lib_Xrender_XRenderQueryExtension=yes
ac_cv_lib_gif_EGifPutExtensionLast=yes
ac_cv_lib_gif_GifMakeMapObject=no
ac_cv_lib_gpm_Gpm_Open=yes
ac_cv_lib_lockfile_maillock=yes
ac_cv_lib_mail_maillock=no
ac_cv_lib_ossaudio__oss_ioctl=no
ac_cv_lib_otf_OTF_get_variation_glyphs=yes
ac_cv_lib_selinux_lgetfilecon=yes
ac_cv_lib_tiff_TIFFGetVersion=yes
ac_cv_lib_xml2_htmlReadMemory=yes
ac_cv_member_struct_ifreq_ifr_addr=yes
ac_cv_member_struct_ifreq_ifr_addr_sa_len=no
ac_cv_member_struct_ifreq_ifr_broadaddr=yes
ac_cv_member_struct_ifreq_ifr_flags=yes
ac_cv_member_struct_ifreq_ifr_hwaddr=yes
ac_cv_member_struct_ifreq_ifr_netmask=yes
ac_cv_member_struct_stat_st_atim_tv_nsec=yes
ac_cv_member_struct_stat_st_birthtim_tv_nsec=no
ac_cv_member_struct_stat_st_birthtimensec=no
ac_cv_member_struct_stat_st_birthtimespec_tv_nsec=no
ac_cv_member_struct_tm_tm_gmtoff=yes
ac_cv_member_struct_tm_tm_zone=yes
ac_cv_member_struct_unipair_unicode=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_GZIP_PROG=/bin/gzip
ac_cv_path_INSTALL_INFO=/home/redknight/local/bin/install-info
ac_cv_path_MAKE=make
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=mawk
ac_cv_prog_CPP='gcc -std=gnu11 -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_c11=-std=gnu11
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_gcc_c_o=yes
ac_cv_prog_cc_stdc=-std=gnu11
ac_cv_safe_to_define___extensions__=yes
ac_cv_search_acl_get_file=-lacl
ac_cv_search_backtrace_symbols_fd='none required'
ac_cv_search_clock_gettime=-lrt
ac_cv_search_fdatasync='none required'
ac_cv_search_inflateEnd=-lz
ac_cv_search_sqrt=-lm
ac_cv_search_timer_settime=-lrt
ac_cv_should_define__xopen_source=no
ac_cv_struct_st_dm_mode=no
ac_cv_struct_tm=time.h
ac_cv_sys_file_offset_bits=64
ac_cv_sys_largefile_CC=no
ac_cv_sys_largefile_source=no
ac_cv_sys_long_file_names=yes
ac_cv_type_getgroups=gid_t
ac_cv_type_long_long_int=yes
ac_cv_type_max_align_t=yes
ac_cv_type_mbstate_t=yes
ac_cv_type_mode_t=yes
ac_cv_type_nlink_t=yes
ac_cv_type_pid_t=yes
ac_cv_type_sighandler_t=yes
ac_cv_type_sigset_t=yes
ac_cv_type_socklen_t=yes
ac_cv_type_timezone_t=no
ac_cv_type_unsigned_long_long_int=yes
ac_cv_type_volatile_sig_atomic_t=yes
ac_cv_typeof_struct_stat_st_atim_is_struct_timespec=yes
ac_cv_working_alloca_h=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_ar_interface=ar
am_cv_make_support_nested_variables=yes
emacs_cv_alternate_stack=yes
emacs_cv_clang=no
emacs_cv_data_start=yes
emacs_cv_func___builtin_unwind_init=yes
emacs_cv_func__setjmp=yes
emacs_cv_func_sigsetjmp=yes
emacs_cv_have_timerfd=yes
emacs_cv_jpeglib=-ljpeg
emacs_cv_langinfo_codeset=yes
emacs_cv_linux_sysinfo=yes
emacs_cv_netdb_declares_h_errno=yes
emacs_cv_personality_linux32=yes
emacs_cv_prog_cc_g3=yes
emacs_cv_prog_cc_nopie=no
emacs_cv_prog_setfattr=no
emacs_cv_pthread_lib=-lpthread
emacs_cv_sanitize_address=no
emacs_cv_struct_alignment=yes
emacs_cv_usable_FIONREAD=yes
emacs_cv_usable_SIGIO=yes
emacs_cv_var_doug_lea_malloc=yes
emacs_cv_x11_version_6=yes
gl_cv_acl_ACL_FIRST_ENTRY=yes
gl_cv_acl_ACL_TYPE_EXTENDED=no
gl_cv_c_amsterdam_compiler=no
gl_cv_c_multiarch=no
gl_cv_decl_null_works=yes
gl_cv_decl_readlink_works=yes
gl_cv_decl_readlinkat_works=yes
gl_cv_func___fpending=yes
gl_cv_func_c99_strtold=yes
gl_cv_func_dup2_works=yes
gl_cv_func_fcntl_f_dupfd_cloexec='needs runtime check'
gl_cv_func_fcntl_f_dupfd_works=yes
gl_cv_func_fdopendir_works=yes
gl_cv_func_fstatat_zero_flag=yes
gl_cv_func_getdtablesize_works=yes
gl_cv_func_getopt_gnu=no
gl_cv_func_getopt_posix=yes
gl_cv_func_gettimeofday_clobber=no
gl_cv_func_gettimeofday_posix_signature=almost
gl_cv_func_lstat_dereferences_slashed_symlink=yes
gl_cv_func_printf_attribute_flavor=system
gl_cv_func_pselect_detects_ebadf=yes
gl_cv_func_pthread_sigmask_return_works=yes
gl_cv_func_pthread_sigmask_unblock_works='guessing yes'
gl_cv_func_readlink_works=yes
gl_cv_func_strtoimax=yes
gl_cv_func_symlink_works=yes
gl_cv_func_working_acl_get_file=yes
gl_cv_func_working_mktime=yes
gl_cv_func_working_utimes=yes
gl_cv_have_include_next=yes
gl_cv_header_errno_h_complete=yes
gl_cv_header_sys_select_h_selfcontained=yes
gl_cv_header_working_stdalign_h=no
gl_cv_header_working_stdint_h=yes
gl_cv_next_dirent_h='<dirent.h>'
gl_cv_next_fcntl_h='<fcntl.h>'
gl_cv_next_getopt_h='<getopt.h>'
gl_cv_next_inttypes_h='<inttypes.h>'
gl_cv_next_signal_h='<signal.h>'
gl_cv_next_stdint_h='<stdint.h>'
gl_cv_next_stdio_h='<stdio.h>'
gl_cv_next_stdlib_h='<stdlib.h>'
gl_cv_next_string_h='<string.h>'
gl_cv_next_sys_select_h='<sys/select.h>'
gl_cv_next_sys_stat_h='<sys/stat.h>'
gl_cv_next_sys_time_h='<sys/time.h>'
gl_cv_next_sys_types_h='<sys/types.h>'
gl_cv_next_time_h='<time.h>'
gl_cv_next_unistd_h='<unistd.h>'
gl_cv_pragma_columns=no
gl_cv_rpl_alloca=yes
gl_cv_sig_pselect=yes
gl_cv_sys_struct_timespec_in_time_h=yes
gl_cv_sys_struct_timeval=yes
gl_cv_sys_struct_timeval_tv_sec=yes
gl_cv_sys_struct_utimbuf=yes
gl_cv_time_r_posix=yes
gl_cv_type_sigset_t=yes
gt_cv_c_wchar_t=yes
gt_cv_ssize_t=yes
gt_cv_var_environ_declaration=yes
pkg_cv_ALSA_CFLAGS='-I/usr/include/alsa  '
pkg_cv_ALSA_LIBS='-lasound  '
pkg_cv_DBUS_CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include  '
pkg_cv_DBUS_LIBS='-ldbus-1  '
pkg_cv_FONTCONFIG_CFLAGS=' '
pkg_cv_FONTCONFIG_LIBS='-lfontconfig  '
pkg_cv_FREETYPE_CFLAGS='-I/usr/include/freetype2  '
pkg_cv_FREETYPE_LIBS='-lfreetype  '
pkg_cv_GCONF_CFLAGS='-pthread -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
pkg_cv_GCONF_LIBS='-lgconf-2 -lglib-2.0  '
pkg_cv_GOBJECT_CFLAGS='-I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
pkg_cv_GOBJECT_LIBS='-lgobject-2.0 -lglib-2.0  '
pkg_cv_GSETTINGS_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
pkg_cv_GSETTINGS_LIBS='-lgio-2.0 -lgobject-2.0 -lglib-2.0  '
pkg_cv_GTK_CFLAGS='-pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12  '
pkg_cv_GTK_LIBS='-lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0  '
pkg_cv_LIBGNUTLS_CFLAGS='-I/usr/include/p11-kit-1  '
pkg_cv_LIBGNUTLS_LIBS='-lgnutls  '
pkg_cv_LIBOTF_CFLAGS='-I/usr/include/freetype2  '
pkg_cv_LIBOTF_LIBS='-lz -lotf -lfreetype  '
pkg_cv_LIBXML2_CFLAGS='-I/usr/include/libxml2  '
pkg_cv_LIBXML2_LIBS='-lxml2  '
pkg_cv_M17N_FLT_CFLAGS=' '
pkg_cv_M17N_FLT_LIBS='-lm17n-flt -lm17n-core  '
pkg_cv_RSVG_CFLAGS='-pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2  '
pkg_cv_RSVG_LIBS='-lrsvg-2 -lm -lgio-2.0 -lgdk_pixbuf-2.0 -lcairo -lgobject-2.0 -lglib-2.0  '
pkg_cv_XFIXES_CFLAGS=' '
pkg_cv_XFIXES_LIBS='-lXfixes  '
pkg_cv_XFT_CFLAGS='-I/usr/include/freetype2  '
pkg_cv_XFT_LIBS='-lXft  '
pkg_cv_XINERAMA_CFLAGS=' '
pkg_cv_XINERAMA_LIBS='-lXinerama  '
pkg_cv_XRANDR_CFLAGS=' '
pkg_cv_XRANDR_LIBS='-lXrandr  '

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /home/redknight/git/emacs/build-aux/missing --run aclocal-1.11'
ACLOCAL_PATH=''
ALLOCA=''
ALLOCA_H='alloca.h'
ALSA_CFLAGS='-I/usr/include/alsa  '
ALSA_LIBS='-lasound  '
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='0'
AM_V='$(V)'
APPLE_UNIVERSAL_BUILD='0'
AR='ar'
ARFLAGS='cr'
AUTOCONF='${SHELL} /home/redknight/git/emacs/build-aux/missing --run autoconf'
AUTOHEADER='${SHELL} /home/redknight/git/emacs/build-aux/missing --run autoheader'
AUTOMAKE='${SHELL} /home/redknight/git/emacs/build-aux/missing --run automake-1.11'
AUTO_DEPEND='yes'
AWK='mawk'
BITSIZEOF_PTRDIFF_T=''
BITSIZEOF_SIG_ATOMIC_T=''
BITSIZEOF_SIZE_T=''
BITSIZEOF_WCHAR_T=''
BITSIZEOF_WINT_T=''
BLESSMAIL_TARGET='need-blessmail'
BUILDING_FOR_WINDOWSNT_FALSE=''
BUILDING_FOR_WINDOWSNT_TRUE='#'
BYTESWAP_H=''
CAIRO_CFLAGS=''
CAIRO_LIBS=''
CANNOT_DUMP='no'
CC='gcc -std=gnu11'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g3 -O2'
CFLAGS_SOUND=' -I/usr/include/alsa  '
CLIENTRES=''
CLIENTW=''
CM_OBJ='cm.o'
COM_ERRLIB=''
CPP='gcc -std=gnu11 -E'
CPPFLAGS='  '
CRYPTOLIB=''
CYGPATH_W='echo'
CYGWIN_OBJ=''
C_SWITCH_MACHINE=''
C_SWITCH_SYSTEM=''
C_SWITCH_X_SITE=' -pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12   -I/usr/include/freetype2  '
DBUS_CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include  '
DBUS_LIBS='-ldbus-1  '
DBUS_OBJ='dbusbind.o'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DESLIB=''
DOCMISC_W32=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EMACSRES=''
EMACS_MANIFEST=''
EMULTIHOP_HIDDEN=''
EMULTIHOP_VALUE=''
ENOLINK_HIDDEN=''
ENOLINK_VALUE=''
EOVERFLOW_HIDDEN=''
EOVERFLOW_VALUE=''
ERRNO_H=''
EXECINFO_H=''
EXEEXT=''
FIRSTFILE_OBJ=''
FONTCONFIG_CFLAGS=' '
FONTCONFIG_LIBS='-lfontconfig  '
FONT_OBJ='xfont.o ftfont.o xftfont.o ftxfont.o'
FREETYPE_CFLAGS='-I/usr/include/freetype2  '
FREETYPE_LIBS='-lfreetype  '
GCONF_CFLAGS='-pthread -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
GCONF_LIBS='-lgconf-2 -lglib-2.0  '
GETLOADAVG_LIBS=''
GETOPT_H='getopt.h'
GFILENOTIFY_CFLAGS=''
GFILENOTIFY_LIBS=''
GL_COND_LIBTOOL_FALSE=''
GL_COND_LIBTOOL_TRUE='#'
GL_GENERATE_ALLOCA_H_FALSE='#'
GL_GENERATE_ALLOCA_H_TRUE=''
GL_GENERATE_BYTESWAP_H_FALSE=''
GL_GENERATE_BYTESWAP_H_TRUE='#'
GL_GENERATE_ERRNO_H_FALSE=''
GL_GENERATE_ERRNO_H_TRUE='#'
GL_GENERATE_EXECINFO_H_FALSE=''
GL_GENERATE_EXECINFO_H_TRUE='#'
GL_GENERATE_STDALIGN_H_FALSE='#'
GL_GENERATE_STDALIGN_H_TRUE=''
GL_GENERATE_STDDEF_H_FALSE=''
GL_GENERATE_STDDEF_H_TRUE='#'
GL_GENERATE_STDINT_H_FALSE=''
GL_GENERATE_STDINT_H_TRUE='#'
GMALLOC_OBJ=''
GNULIB_ALPHASORT='0'
GNULIB_ATOLL='0'
GNULIB_CALLOC_POSIX='0'
GNULIB_CANONICALIZE_FILE_NAME='0'
GNULIB_CHDIR='0'
GNULIB_CHOWN='0'
GNULIB_CLOSE='0'
GNULIB_CLOSEDIR='0'
GNULIB_DIRFD='0'
GNULIB_DPRINTF='0'
GNULIB_DUP2='1'
GNULIB_DUP3='0'
GNULIB_DUP='0'
GNULIB_ENVIRON='1'
GNULIB_EUIDACCESS='0'
GNULIB_FACCESSAT='1'
GNULIB_FCHDIR='0'
GNULIB_FCHMODAT='0'
GNULIB_FCHOWNAT='0'
GNULIB_FCLOSE='0'
GNULIB_FCNTL='1'
GNULIB_FDATASYNC='1'
GNULIB_FDOPEN='0'
GNULIB_FDOPENDIR='1'
GNULIB_FFLUSH='0'
GNULIB_FFSL='0'
GNULIB_FFSLL='0'
GNULIB_FGETC='1'
GNULIB_FGETS='1'
GNULIB_FOPEN='0'
GNULIB_FPRINTF='1'
GNULIB_FPRINTF_POSIX='0'
GNULIB_FPURGE='0'
GNULIB_FPUTC='1'
GNULIB_FPUTS='1'
GNULIB_FREAD='1'
GNULIB_FREOPEN='0'
GNULIB_FSCANF='1'
GNULIB_FSEEK='0'
GNULIB_FSEEKO='0'
GNULIB_FSTAT='0'
GNULIB_FSTATAT='1'
GNULIB_FSYNC='1'
GNULIB_FTELL='0'
GNULIB_FTELLO='0'
GNULIB_FTRUNCATE='0'
GNULIB_FUTIMENS='0'
GNULIB_FWRITE='1'
GNULIB_GETC='1'
GNULIB_GETCHAR='1'
GNULIB_GETCWD='0'
GNULIB_GETDELIM='0'
GNULIB_GETDOMAINNAME='0'
GNULIB_GETDTABLESIZE='1'
GNULIB_GETGROUPS='0'
GNULIB_GETHOSTNAME='0'
GNULIB_GETLINE='0'
GNULIB_GETLOADAVG='1'
GNULIB_GETLOGIN='0'
GNULIB_GETLOGIN_R='0'
GNULIB_GETPAGESIZE='0'
GNULIB_GETSUBOPT='0'
GNULIB_GETTIMEOFDAY='1'
GNULIB_GETUSERSHELL='0'
GNULIB_GL_UNISTD_H_GETOPT='1'
GNULIB_GRANTPT='0'
GNULIB_GROUP_MEMBER='0'
GNULIB_IMAXABS='0'
GNULIB_IMAXDIV='0'
GNULIB_ISATTY='0'
GNULIB_LCHMOD='0'
GNULIB_LCHOWN='0'
GNULIB_LINK='0'
GNULIB_LINKAT='0'
GNULIB_LSEEK='0'
GNULIB_LSTAT='1'
GNULIB_MALLOC_POSIX='0'
GNULIB_MBSCASECMP='0'
GNULIB_MBSCASESTR='0'
GNULIB_MBSCHR='0'
GNULIB_MBSCSPN='0'
GNULIB_MBSLEN='0'
GNULIB_MBSNCASECMP='0'
GNULIB_MBSNLEN='0'
GNULIB_MBSPBRK='0'
GNULIB_MBSPCASECMP='0'
GNULIB_MBSRCHR='0'
GNULIB_MBSSEP='0'
GNULIB_MBSSPN='0'
GNULIB_MBSSTR='0'
GNULIB_MBSTOK_R='0'
GNULIB_MBTOWC='0'
GNULIB_MEMCHR='0'
GNULIB_MEMMEM='0'
GNULIB_MEMPCPY='0'
GNULIB_MEMRCHR='1'
GNULIB_MKDIRAT='0'
GNULIB_MKDTEMP='0'
GNULIB_MKFIFO='0'
GNULIB_MKFIFOAT='0'
GNULIB_MKNOD='0'
GNULIB_MKNODAT='0'
GNULIB_MKOSTEMP='1'
GNULIB_MKOSTEMPS='0'
GNULIB_MKSTEMP='0'
GNULIB_MKSTEMPS='0'
GNULIB_MKTIME='1'
GNULIB_NANOSLEEP='0'
GNULIB_NONBLOCKING='0'
GNULIB_OBSTACK_PRINTF='0'
GNULIB_OBSTACK_PRINTF_POSIX='0'
GNULIB_OPEN='0'
GNULIB_OPENAT='0'
GNULIB_OPENDIR='0'
GNULIB_PCLOSE='0'
GNULIB_PERROR='0'
GNULIB_PIPE2='1'
GNULIB_PIPE='0'
GNULIB_POPEN='0'
GNULIB_POSIX_OPENPT='0'
GNULIB_PREAD='0'
GNULIB_PRINTF='1'
GNULIB_PRINTF_POSIX='0'
GNULIB_PSELECT='1'
GNULIB_PTHREAD_SIGMASK='1'
GNULIB_PTSNAME='0'
GNULIB_PTSNAME_R='0'
GNULIB_PUTC='1'
GNULIB_PUTCHAR='1'
GNULIB_PUTENV='1'
GNULIB_PUTS='1'
GNULIB_PWRITE='0'
GNULIB_QSORT_R='0'
GNULIB_RAISE='0'
GNULIB_RANDOM='0'
GNULIB_RANDOM_R='0'
GNULIB_RAWMEMCHR='0'
GNULIB_READ='0'
GNULIB_READDIR='0'
GNULIB_READLINK='1'
GNULIB_READLINKAT='1'
GNULIB_REALLOC_POSIX='0'
GNULIB_REALPATH='0'
GNULIB_REMOVE='0'
GNULIB_RENAME='0'
GNULIB_RENAMEAT='0'
GNULIB_REWINDDIR='0'
GNULIB_RMDIR='0'
GNULIB_RPMATCH='0'
GNULIB_SCANDIR='0'
GNULIB_SCANF='1'
GNULIB_SECURE_GETENV='0'
GNULIB_SELECT='0'
GNULIB_SETENV='0'
GNULIB_SETHOSTNAME='0'
GNULIB_SIGACTION='0'
GNULIB_SIGNAL_H_SIGPIPE='0'
GNULIB_SIGPROCMASK='0'
GNULIB_SLEEP='0'
GNULIB_SNPRINTF='0'
GNULIB_SPRINTF_POSIX='0'
GNULIB_STAT='0'
GNULIB_STDIO_H_NONBLOCKING='0'
GNULIB_STDIO_H_SIGPIPE='0'
GNULIB_STPCPY='1'
GNULIB_STPNCPY='0'
GNULIB_STRCASESTR='0'
GNULIB_STRCHRNUL='0'
GNULIB_STRDUP='0'
GNULIB_STRERROR='0'
GNULIB_STRERROR_R='0'
GNULIB_STRNCAT='0'
GNULIB_STRNDUP='0'
GNULIB_STRNLEN='0'
GNULIB_STRPBRK='0'
GNULIB_STRPTIME='0'
GNULIB_STRSEP='0'
GNULIB_STRSIGNAL='0'
GNULIB_STRSTR='0'
GNULIB_STRTOD='0'
GNULIB_STRTOIMAX='1'
GNULIB_STRTOK_R='0'
GNULIB_STRTOLL='0'
GNULIB_STRTOULL='0'
GNULIB_STRTOUMAX='1'
GNULIB_STRVERSCMP='0'
GNULIB_SYMLINK='1'
GNULIB_SYMLINKAT='0'
GNULIB_SYSTEM_POSIX='0'
GNULIB_TIMEGM='1'
GNULIB_TIME_R='1'
GNULIB_TIME_RZ='1'
GNULIB_TMPFILE='0'
GNULIB_TTYNAME_R='0'
GNULIB_UNISTD_H_NONBLOCKING='0'
GNULIB_UNISTD_H_SIGPIPE='0'
GNULIB_UNLINK='0'
GNULIB_UNLINKAT='0'
GNULIB_UNLOCKPT='0'
GNULIB_UNSETENV='0'
GNULIB_USLEEP='0'
GNULIB_UTIMENSAT='0'
GNULIB_VASPRINTF='0'
GNULIB_VDPRINTF='0'
GNULIB_VFPRINTF='1'
GNULIB_VFPRINTF_POSIX='0'
GNULIB_VFSCANF='0'
GNULIB_VPRINTF='1'
GNULIB_VPRINTF_POSIX='0'
GNULIB_VSCANF='0'
GNULIB_VSNPRINTF='0'
GNULIB_VSPRINTF_POSIX='0'
GNULIB_WARN_CFLAGS=''
GNULIB_WCTOMB='0'
GNULIB_WRITE='0'
GNULIB__EXIT='0'
GNUSTEP_CFLAGS=''
GNU_OBJC_CFLAGS=''
GOBJECT_CFLAGS='-I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
GOBJECT_LIBS='-lgobject-2.0 -lglib-2.0  '
GREP='/bin/grep'
GSETTINGS_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
GSETTINGS_LIBS='-lgio-2.0 -lgobject-2.0 -lglib-2.0  '
GTK_CFLAGS='-pthread -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/libpng12  '
GTK_LIBS='-lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0  '
GTK_OBJ='gtkutil.o emacsgtkfixed.o'
GZIP_PROG='/bin/gzip'
HAVE_ALPHASORT='1'
HAVE_ATOLL='1'
HAVE_CANONICALIZE_FILE_NAME='1'
HAVE_CHOWN='1'
HAVE_CLOSEDIR='1'
HAVE_DECL_DIRFD='1'
HAVE_DECL_ENVIRON='1'
HAVE_DECL_FCHDIR='1'
HAVE_DECL_FDATASYNC='1'
HAVE_DECL_FDOPENDIR='1'
HAVE_DECL_FPURGE='1'
HAVE_DECL_FSEEKO='1'
HAVE_DECL_FTELLO='1'
HAVE_DECL_GETDELIM='1'
HAVE_DECL_GETDOMAINNAME='1'
HAVE_DECL_GETLINE='1'
HAVE_DECL_GETLOADAVG='1'
HAVE_DECL_GETLOGIN_R='1'
HAVE_DECL_GETPAGESIZE='1'
HAVE_DECL_GETUSERSHELL='1'
HAVE_DECL_IMAXABS='1'
HAVE_DECL_IMAXDIV='1'
HAVE_DECL_LOCALTIME_R='1'
HAVE_DECL_MEMMEM='1'
HAVE_DECL_MEMRCHR='1'
HAVE_DECL_OBSTACK_PRINTF='1'
HAVE_DECL_SETENV='1'
HAVE_DECL_SETHOSTNAME='1'
HAVE_DECL_SNPRINTF='1'
HAVE_DECL_STRDUP='1'
HAVE_DECL_STRERROR_R='1'
HAVE_DECL_STRNDUP='1'
HAVE_DECL_STRNLEN='1'
HAVE_DECL_STRSIGNAL='1'
HAVE_DECL_STRTOIMAX='1'
HAVE_DECL_STRTOK_R='1'
HAVE_DECL_STRTOUMAX='1'
HAVE_DECL_TTYNAME_R='1'
HAVE_DECL_UNSETENV='1'
HAVE_DECL_VSNPRINTF='1'
HAVE_DIRENT_H='1'
HAVE_DPRINTF='1'
HAVE_DUP2='1'
HAVE_DUP3='1'
HAVE_EUIDACCESS='1'
HAVE_FACCESSAT='1'
HAVE_FCHDIR='1'
HAVE_FCHMODAT='1'
HAVE_FCHOWNAT='1'
HAVE_FCNTL='1'
HAVE_FDATASYNC='1'
HAVE_FDOPENDIR='1'
HAVE_FFSL='1'
HAVE_FFSLL='1'
HAVE_FSEEKO='1'
HAVE_FSTATAT='1'
HAVE_FSYNC='1'
HAVE_FTELLO='1'
HAVE_FTRUNCATE='1'
HAVE_FUTIMENS='1'
HAVE_GETDTABLESIZE='1'
HAVE_GETGROUPS='1'
HAVE_GETHOSTNAME='1'
HAVE_GETLOGIN='1'
HAVE_GETOPT_H='1'
HAVE_GETPAGESIZE='1'
HAVE_GETSUBOPT='1'
HAVE_GETTIMEOFDAY='1'
HAVE_GRANTPT='1'
HAVE_GROUP_MEMBER='1'
HAVE_INTTYPES_H='1'
HAVE_LCHMOD='1'
HAVE_LCHOWN='1'
HAVE_LINK='1'
HAVE_LINKAT='1'
HAVE_LONG_LONG_INT='1'
HAVE_LSTAT='1'
HAVE_MAKEINFO='yes'
HAVE_MAX_ALIGN_T='1'
HAVE_MBSLEN='0'
HAVE_MEMCHR='1'
HAVE_MEMPCPY='1'
HAVE_MKDIRAT='1'
HAVE_MKDTEMP='1'
HAVE_MKFIFO='1'
HAVE_MKFIFOAT='1'
HAVE_MKNOD='1'
HAVE_MKNODAT='1'
HAVE_MKOSTEMP='1'
HAVE_MKOSTEMPS='1'
HAVE_MKSTEMP='1'
HAVE_MKSTEMPS='1'
HAVE_NANOSLEEP='1'
HAVE_OPENAT='1'
HAVE_OPENDIR='1'
HAVE_OS_H='0'
HAVE_PCLOSE='1'
HAVE_PIPE2='1'
HAVE_PIPE='1'
HAVE_POPEN='1'
HAVE_POSIX_OPENPT='1'
HAVE_POSIX_SIGNALBLOCKING='1'
HAVE_PREAD='1'
HAVE_PSELECT='1'
HAVE_PTHREAD_SIGMASK='1'
HAVE_PTSNAME='1'
HAVE_PTSNAME_R='1'
HAVE_PWRITE='1'
HAVE_RAISE='1'
HAVE_RANDOM='1'
HAVE_RANDOM_H='1'
HAVE_RANDOM_R='1'
HAVE_RAWMEMCHR='1'
HAVE_READDIR='1'
HAVE_READLINK='1'
HAVE_READLINKAT='1'
HAVE_REALPATH='1'
HAVE_RENAMEAT='1'
HAVE_REWINDDIR='1'
HAVE_RPMATCH='1'
HAVE_SCANDIR='1'
HAVE_SECURE_GETENV='1'
HAVE_SETENV='1'
HAVE_SETHOSTNAME='1'
HAVE_SIGACTION='1'
HAVE_SIGHANDLER_T='1'
HAVE_SIGINFO_T='1'
HAVE_SIGNED_SIG_ATOMIC_T=''
HAVE_SIGNED_WCHAR_T=''
HAVE_SIGNED_WINT_T=''
HAVE_SIGSET_T='1'
HAVE_SLEEP='1'
HAVE_STDINT_H='1'
HAVE_STPCPY='1'
HAVE_STPNCPY='1'
HAVE_STRCASESTR='1'
HAVE_STRCHRNUL='1'
HAVE_STRPBRK='1'
HAVE_STRPTIME='1'
HAVE_STRSEP='1'
HAVE_STRTOD='1'
HAVE_STRTOLL='1'
HAVE_STRTOULL='1'
HAVE_STRUCT_RANDOM_DATA='1'
HAVE_STRUCT_SIGACTION_SA_SIGACTION='1'
HAVE_STRUCT_TIMEVAL='1'
HAVE_STRVERSCMP='1'
HAVE_SYMLINK='1'
HAVE_SYMLINKAT='1'
HAVE_SYS_BITYPES_H=''
HAVE_SYS_INTTYPES_H=''
HAVE_SYS_LOADAVG_H='0'
HAVE_SYS_PARAM_H='0'
HAVE_SYS_SELECT_H='1'
HAVE_SYS_TIME_H='1'
HAVE_SYS_TYPES_H='1'
HAVE_TIMEGM='1'
HAVE_TIMEZONE_T='0'
HAVE_TYPE_VOLATILE_SIG_ATOMIC_T='1'
HAVE_UNISTD_H='1'
HAVE_UNLINKAT='1'
HAVE_UNLOCKPT='1'
HAVE_UNSIGNED_LONG_LONG_INT='1'
HAVE_USLEEP='1'
HAVE_UTIMENSAT='1'
HAVE_VASPRINTF='1'
HAVE_VDPRINTF='1'
HAVE_WCHAR_H='1'
HAVE_WCHAR_T='1'
HAVE_WINSOCK2_H='0'
HAVE_XSERVER=''
HAVE__EXIT='1'
HYBRID_MALLOC=''
HYBRID_MALLOC_LIB_FALSE=''
HYBRID_MALLOC_LIB_TRUE='#'
IMAGEMAGICK_CFLAGS=''
IMAGEMAGICK_LIBS=''
INCLUDE_NEXT='include_next'
INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'
INSTALL_ARCH_INDEP_EXTRA='install-etc'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_INFO='/home/redknight/local/bin/install-info'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
INT32_MAX_LT_INTMAX_MAX='1'
INT64_MAX_EQ_LONG_MAX='defined _LP64'
KQUEUE_CFLAGS=''
KQUEUE_LIBS=''
KRB4LIB=''
KRB5LIB=''
LDFLAGS=' '
LD_SWITCH_SYSTEM=''
LD_SWITCH_SYSTEM_TEMACS='-Wl,-znocombreloc $(LD_SWITCH_X_SITE_RPATH)'
LD_SWITCH_X_SITE=''
LD_SWITCH_X_SITE_RPATH=''
LIBGIF='-lgif'
LIBGNUTLS3_CFLAGS=''
LIBGNUTLS3_LIBS=''
LIBGNUTLS_CFLAGS='-I/usr/include/p11-kit-1  '
LIBGNUTLS_LIBS='-lgnutls  '
LIBGNU_LIBDEPS=''
LIBGNU_LTLIBDEPS=''
LIBGPM='-lgpm'
LIBHESIOD=''
LIBINTL=''
LIBJPEG='-ljpeg'
LIBMODULES=''
LIBOBJS=''
LIBOTF_CFLAGS='-I/usr/include/freetype2  '
LIBOTF_LIBS='-lz -lotf -lfreetype  '
LIBPNG='-lpng12'
LIBRESOLV=''
LIBS=' '
LIBSELINUX_LIBS='-lselinux'
LIBSOUND=' -lasound  '
LIBS_ECLIENT=''
LIBS_GNUSTEP=''
LIBS_MAIL='-llockfile'
LIBS_SYSTEM=''
LIBS_TERMCAP='-ltinfo'
LIBTIFF='-ltiff'
LIBXMENU=''
LIBXML2_CFLAGS='-I/usr/include/libxml2  '
LIBXML2_LIBS='-lxml2  '
LIBXMU=''
LIBXPM='-lXpm'
LIBXSM='-lSM -lICE'
LIBXTR6=''
LIBXT_OTHER='$(LIBXSM)'
LIBX_OTHER='$(LIBXT) $(LIBX_EXTRA)'
LIBZ='-lz'
LIB_ACL='-lacl'
LIB_CLOCK_GETTIME='-lrt'
LIB_EACCESS=''
LIB_EXECINFO=''
LIB_FDATASYNC=''
LIB_MATH='-lm'
LIB_PTHREAD='-lpthread'
LIB_PTHREAD_SIGMASK=''
LIB_TIMER_TIME='-lrt'
LIB_WSOCK32=''
LN_S_FILEONLY='ln -s'
LTLIBINTL=''
LTLIBOBJS=''
M17N_FLT_CFLAGS=' '
M17N_FLT_LIBS='-lm17n-flt -lm17n-core  '
MAKEINFO='makeinfo'
MAKE_PROG=''
MKDIR_P='/bin/mkdir -p'
MODULES_OBJ=''
NEXT_AS_FIRST_DIRECTIVE_DIRENT_H='<dirent.h>'
NEXT_AS_FIRST_DIRECTIVE_ERRNO_H=''
NEXT_AS_FIRST_DIRECTIVE_FCNTL_H='<fcntl.h>'
NEXT_AS_FIRST_DIRECTIVE_GETOPT_H='<getopt.h>'
NEXT_AS_FIRST_DIRECTIVE_INTTYPES_H='<inttypes.h>'
NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H='<signal.h>'
NEXT_AS_FIRST_DIRECTIVE_STDDEF_H=''
NEXT_AS_FIRST_DIRECTIVE_STDINT_H='<stdint.h>'
NEXT_AS_FIRST_DIRECTIVE_STDIO_H='<stdio.h>'
NEXT_AS_FIRST_DIRECTIVE_STDLIB_H='<stdlib.h>'
NEXT_AS_FIRST_DIRECTIVE_STRING_H='<string.h>'
NEXT_AS_FIRST_DIRECTIVE_SYS_SELECT_H='<sys/select.h>'
NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H='<sys/stat.h>'
NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H='<sys/time.h>'
NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H='<sys/types.h>'
NEXT_AS_FIRST_DIRECTIVE_TIME_H='<time.h>'
NEXT_AS_FIRST_DIRECTIVE_UNISTD_H='<unistd.h>'
NEXT_DIRENT_H='<dirent.h>'
NEXT_ERRNO_H=''
NEXT_FCNTL_H='<fcntl.h>'
NEXT_GETOPT_H='<getopt.h>'
NEXT_INTTYPES_H='<inttypes.h>'
NEXT_SIGNAL_H='<signal.h>'
NEXT_STDDEF_H=''
NEXT_STDINT_H='<stdint.h>'
NEXT_STDIO_H='<stdio.h>'
NEXT_STDLIB_H='<stdlib.h>'
NEXT_STRING_H='<string.h>'
NEXT_SYS_SELECT_H='<sys/select.h>'
NEXT_SYS_STAT_H='<sys/stat.h>'
NEXT_SYS_TIME_H='<sys/time.h>'
NEXT_SYS_TYPES_H='<sys/types.h>'
NEXT_TIME_H='<time.h>'
NEXT_UNISTD_H='<unistd.h>'
NOTIFY_CFLAGS=''
NOTIFY_LIBS=''
NOTIFY_OBJ='inotify.o'
NS_OBJ=''
NS_OBJC_OBJ=''
NTDIR=''
NTLIB=''
OBJEXT='o'
OTHER_FILES=''
PACKAGE='emacs'
PACKAGE_BUGREPORT='bug-gnu-emacs@gnu.org'
PACKAGE_NAME='GNU Emacs'
PACKAGE_STRING='GNU Emacs 25.1.50'
PACKAGE_TARNAME='emacs'
PACKAGE_URL='http://www.gnu.org/software/emacs/'
PACKAGE_VERSION='25.1.50'
PATH_SEPARATOR=':'
PAXCTL=''
PKG_CONFIG='/usr/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH=''
PNG_CFLAGS='-I/usr/include/libpng12'
POST_ALLOC_OBJ=''
PRAGMA_COLUMNS=''
PRAGMA_SYSTEM_HEADER='#pragma GCC system_header'
PRE_ALLOC_OBJ='lastfile.o'
PRIPTR_PREFIX='__PRIPTR_PREFIX'
PRI_MACROS_BROKEN='0'
PROFILING_CFLAGS=''
PTHREAD_H_DEFINES_STRUCT_TIMESPEC='0'
PTRDIFF_T_SUFFIX=''
RALLOC_OBJ=''
RANLIB='ranlib'
REPLACE_CALLOC='0'
REPLACE_CANONICALIZE_FILE_NAME='0'
REPLACE_CHOWN='0'
REPLACE_CLOSE='0'
REPLACE_CLOSEDIR='0'
REPLACE_DIRFD='0'
REPLACE_DPRINTF='0'
REPLACE_DUP2='0'
REPLACE_DUP='0'
REPLACE_FCHOWNAT='0'
REPLACE_FCLOSE='0'
REPLACE_FCNTL='1'
REPLACE_FDOPEN='0'
REPLACE_FDOPENDIR='0'
REPLACE_FFLUSH='0'
REPLACE_FOPEN='0'
REPLACE_FPRINTF='0'
REPLACE_FPURGE='0'
REPLACE_FREOPEN='0'
REPLACE_FSEEK='0'
REPLACE_FSEEKO='0'
REPLACE_FSTAT='0'
REPLACE_FSTATAT='0'
REPLACE_FTELL='0'
REPLACE_FTELLO='0'
REPLACE_FTRUNCATE='0'
REPLACE_FUTIMENS='0'
REPLACE_GETCWD='0'
REPLACE_GETDELIM='0'
REPLACE_GETDOMAINNAME='0'
REPLACE_GETDTABLESIZE='0'
REPLACE_GETGROUPS='0'
REPLACE_GETLINE='0'
REPLACE_GETLOGIN_R='0'
REPLACE_GETPAGESIZE='0'
REPLACE_GETTIMEOFDAY='0'
REPLACE_GMTIME='0'
REPLACE_ISATTY='0'
REPLACE_LCHOWN='0'
REPLACE_LINK='0'
REPLACE_LINKAT='0'
REPLACE_LOCALTIME='0'
REPLACE_LOCALTIME_R='0'
REPLACE_LSEEK='0'
REPLACE_LSTAT='0'
REPLACE_MALLOC='0'
REPLACE_MBTOWC='0'
REPLACE_MEMCHR='0'
REPLACE_MEMMEM='0'
REPLACE_MKDIR='0'
REPLACE_MKFIFO='0'
REPLACE_MKNOD='0'
REPLACE_MKSTEMP='0'
REPLACE_MKTIME='0'
REPLACE_NANOSLEEP='GNULIB_PORTCHECK'
REPLACE_NULL='0'
REPLACE_OBSTACK_PRINTF='0'
REPLACE_OPEN='0'
REPLACE_OPENAT='0'
REPLACE_OPENDIR='0'
REPLACE_PERROR='0'
REPLACE_POPEN='0'
REPLACE_PREAD='0'
REPLACE_PRINTF='0'
REPLACE_PSELECT='0'
REPLACE_PTHREAD_SIGMASK='0'
REPLACE_PTSNAME='0'
REPLACE_PTSNAME_R='0'
REPLACE_PUTENV='0'
REPLACE_PWRITE='0'
REPLACE_QSORT_R='0'
REPLACE_RAISE='0'
REPLACE_RANDOM_R='0'
REPLACE_READ='0'
REPLACE_READLINK='0'
REPLACE_READLINKAT='0'
REPLACE_REALLOC='0'
REPLACE_REALPATH='0'
REPLACE_REMOVE='0'
REPLACE_RENAME='0'
REPLACE_RENAMEAT='0'
REPLACE_RMDIR='0'
REPLACE_SELECT='0'
REPLACE_SETENV='0'
REPLACE_SLEEP='0'
REPLACE_SNPRINTF='0'
REPLACE_SPRINTF='0'
REPLACE_STAT='0'
REPLACE_STDIO_READ_FUNCS='0'
REPLACE_STDIO_WRITE_FUNCS='0'
REPLACE_STPNCPY='0'
REPLACE_STRCASESTR='0'
REPLACE_STRCHRNUL='0'
REPLACE_STRDUP='0'
REPLACE_STRERROR='0'
REPLACE_STRERROR_R='0'
REPLACE_STRNCAT='0'
REPLACE_STRNDUP='0'
REPLACE_STRNLEN='0'
REPLACE_STRSIGNAL='0'
REPLACE_STRSTR='0'
REPLACE_STRTOD='0'
REPLACE_STRTOIMAX='0'
REPLACE_STRTOK_R='0'
REPLACE_STRTOUMAX='0'
REPLACE_STRUCT_TIMEVAL='0'
REPLACE_SYMLINK='0'
REPLACE_SYMLINKAT='0'
REPLACE_TIMEGM='0'
REPLACE_TMPFILE='0'
REPLACE_TTYNAME_R='0'
REPLACE_UNLINK='0'
REPLACE_UNLINKAT='0'
REPLACE_UNSETENV='0'
REPLACE_USLEEP='0'
REPLACE_UTIMENSAT='0'
REPLACE_VASPRINTF='0'
REPLACE_VDPRINTF='0'
REPLACE_VFPRINTF='0'
REPLACE_VPRINTF='0'
REPLACE_VSNPRINTF='0'
REPLACE_VSPRINTF='0'
REPLACE_WCTOMB='0'
REPLACE_WRITE='0'
RSVG_CFLAGS='-pthread -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2  '
RSVG_LIBS='-lrsvg-2 -lm -lgio-2.0 -lgdk_pixbuf-2.0 -lcairo -lgobject-2.0 -lglib-2.0  '
SEPCHAR=':'
SETFATTR=''
SETTINGS_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include   -pthread -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib/i386-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include   -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  '
SETTINGS_LIBS='-lgio-2.0 -lgobject-2.0 -lglib-2.0   -lgconf-2 -lglib-2.0   -lgobject-2.0 -lglib-2.0  '
SET_MAKE=''
SHELL='/bin/bash'
SIG_ATOMIC_T_SUFFIX=''
SIZE_T_SUFFIX=''
STDALIGN_H='stdalign.h'
STDDEF_H=''
STDINT_H=''
STRIP=''
SUBDIR_MAKEFILES_IN=' $(srcdir)/lib/Makefile.in $(srcdir)/lib-src/Makefile.in $(srcdir)/oldXMenu/Makefile.in $(srcdir)/doc/emacs/Makefile.in $(srcdir)/doc/misc/Makefile.in $(srcdir)/doc/lispintro/Makefile.in $(srcdir)/doc/lispref/Makefile.in $(srcdir)/src/Makefile.in $(srcdir)/lwlib/Makefile.in $(srcdir)/lisp/Makefile.in $(srcdir)/leim/Makefile.in $(srcdir)/nextstep/Makefile.in $(srcdir)/nt/Makefile.in $(srcdir)/test/Makefile.in $(srcdir)/admin/charsets/Makefile.in $(srcdir)/admin/unidata/Makefile.in $(srcdir)/admin/grammars/Makefile.in'
SYS_TIME_H_DEFINES_STRUCT_TIMESPEC='0'
TERMCAP_OBJ='terminfo.o'
TIME_H_DEFINES_STRUCT_TIMESPEC='1'
TOOLKIT_LIBW='-lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0  '
UINT32_MAX_LT_UINTMAX_MAX='1'
UINT64_MAX_EQ_ULONG_MAX='defined _LP64'
UNDEFINE_STRTOK_R='0'
UNEXEC_OBJ='unexelf.o'
UNISTD_H_DEFINES_STRUCT_TIMESPEC='0'
UNISTD_H_HAVE_WINSOCK2_H='0'
UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS='0'
UPDATE_MANIFEST=''
USE_ACL='1'
VERSION='25.1.50'
VMLIMIT_OBJ='vm-limit.o'
W32_LIBS=''
W32_OBJ=''
W32_RES_LINK=''
WARN_CFLAGS=''
WCHAR_T_SUFFIX=''
WEBKIT_CFLAGS=''
WEBKIT_LIBS=''
WERROR_CFLAGS=''
WIDGET_OBJ=''
WINDOWS_64_BIT_OFF_T='0'
WINDOWS_64_BIT_ST_SIZE='0'
WINDOW_SYSTEM_OBJ='fontset.o fringe.o image.o'
WINDRES=''
WINT_T_SUFFIX=''
XARGS_LIMIT=''
XCB_LIBS=''
XCRUN=''
XFIXES_CFLAGS=' '
XFIXES_LIBS='-lXfixes  '
XFT_CFLAGS='-I/usr/include/freetype2  '
XFT_LIBS='-lXrender -lXft  '
XGSELOBJ='xgselect.o'
XINERAMA_CFLAGS=' '
XINERAMA_LIBS='-lXinerama  '
XMENU_OBJ='xmenu.o'
XMKMF=''
XOBJ='xterm.o xfns.o xselect.o xrdb.o xsmfns.o xsettings.o'
XRANDR_CFLAGS=' '
XRANDR_LIBS='-lXrandr  '
XWIDGETS_OBJ=''
X_TOOLKIT_TYPE='none'
ac_ct_AR='ar'
ac_ct_CC='gcc'
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__nodep='_no'
am__quote=''
am__tar='$${TAR-tar} chof - "$$tardir"'
am__untar='$${TAR-tar} xf -'
archlibdir='${libexecdir}/emacs/${version}/${configuration}'
bindir='${exec_prefix}/bin'
bitmapdir='/usr/include/X11/bitmaps'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
cache_file='/dev/null'
canonical='i686-pc-linux-gnu'
comma_space_version=''
comma_version=''
configuration='i686-pc-linux-gnu'
copyright='Copyright (C) 2016 Free Software Foundation, Inc.'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
etcdir='${datadir}/emacs/${version}/etc'
etcdocdir='${datadir}/emacs/${version}/etc'
exec_prefix='${prefix}'
gamedir='${localstatedir}/games/emacs'
gamegroup='games'
gameuser=''
gl_GNULIB_ENABLED_03e0aaad4cb89ca757653bd367a6ccb7_FALSE=''
gl_GNULIB_ENABLED_03e0aaad4cb89ca757653bd367a6ccb7_TRUE='#'
gl_GNULIB_ENABLED_260941c0e5dc67ec9e87d1fb321c300b_FALSE=''
gl_GNULIB_ENABLED_260941c0e5dc67ec9e87d1fb321c300b_TRUE='#'
gl_GNULIB_ENABLED_5264294aa0a5557541b53c8c741f7f31_FALSE=''
gl_GNULIB_ENABLED_5264294aa0a5557541b53c8c741f7f31_TRUE='#'
gl_GNULIB_ENABLED_6099e9737f757db36c47fa9d9f02e88c_FALSE=''
gl_GNULIB_ENABLED_6099e9737f757db36c47fa9d9f02e88c_TRUE='#'
gl_GNULIB_ENABLED_682e609604ccaac6be382e4ee3a4eaec_FALSE=''
gl_GNULIB_ENABLED_682e609604ccaac6be382e4ee3a4eaec_TRUE='#'
gl_GNULIB_ENABLED_a9786850e999ae65a836a6041e8e5ed1_FALSE=''
gl_GNULIB_ENABLED_a9786850e999ae65a836a6041e8e5ed1_TRUE='#'
gl_GNULIB_ENABLED_be453cec5eecf5731a274f2de7f2db36_FALSE='#'
gl_GNULIB_ENABLED_be453cec5eecf5731a274f2de7f2db36_TRUE=''
gl_GNULIB_ENABLED_dirfd_FALSE=''
gl_GNULIB_ENABLED_dirfd_TRUE='#'
gl_GNULIB_ENABLED_dosname_FALSE=''
gl_GNULIB_ENABLED_dosname_TRUE='#'
gl_GNULIB_ENABLED_euidaccess_FALSE=''
gl_GNULIB_ENABLED_euidaccess_TRUE='#'
gl_GNULIB_ENABLED_getdtablesize_FALSE='#'
gl_GNULIB_ENABLED_getdtablesize_TRUE=''
gl_GNULIB_ENABLED_getgroups_FALSE=''
gl_GNULIB_ENABLED_getgroups_TRUE='#'
gl_GNULIB_ENABLED_pathmax_FALSE=''
gl_GNULIB_ENABLED_pathmax_TRUE='#'
gl_GNULIB_ENABLED_secure_getenv_FALSE=''
gl_GNULIB_ENABLED_secure_getenv_TRUE='#'
gl_GNULIB_ENABLED_stat_FALSE=''
gl_GNULIB_ENABLED_stat_TRUE='#'
gl_GNULIB_ENABLED_strtoll_FALSE=''
gl_GNULIB_ENABLED_strtoll_TRUE='#'
gl_GNULIB_ENABLED_strtoull_FALSE=''
gl_GNULIB_ENABLED_strtoull_TRUE='#'
gl_GNULIB_ENABLED_tempname_FALSE=''
gl_GNULIB_ENABLED_tempname_TRUE='#'
gl_LIBOBJS=' fcntl.o getopt.o getopt1.o sig2str.o time_rz.o'
gl_LTLIBOBJS=' fcntl.lo getopt.lo getopt1.lo sig2str.lo time_rz.lo'
gltests_LIBOBJS=''
gltests_LTLIBOBJS=''
gltests_WITNESS='IN_EMACS_GNULIB_TESTS'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/redknight/git/emacs/build-aux/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
liblockfile=''
lispdir='${datadir}/emacs/${version}/lisp'
lisppath='${locallisppath}:${standardlisppath}'
localedir='${datarootdir}/locale'
locallisppath='${datadir}/emacs/${version}/site-lisp:${datadir}/emacs/site-lisp'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='/bin/mkdir -p'
ns_appbindir=''
ns_appdir=''
ns_appresdir=''
ns_appsrc=''
ns_check_file=''
ns_self_contained='no'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
srcdir='.'
standardlisppath='${lispdir}'
sysconfdir='${prefix}/etc'
target_alias=''
version='25.1.50'
x_default_search_path='/usr/share/X11/%L/%T/%N%C%S:/usr/share/X11/%l/%T/%N%C%S:/usr/share/X11/%T/%N%C%S:/usr/share/X11/%L/%T/%N%S:/usr/share/X11/%l/%T/%N%S:/usr/share/X11/%T/%N%S:/usr/lib/X11/%L/%T/%N%C%S:/usr/lib/X11/%l/%T/%N%C%S:/usr/lib/X11/%T/%N%C%S:/usr/lib/X11/%L/%T/%N%S:/usr/lib/X11/%l/%T/%N%S:/usr/lib/X11/%T/%N%S'

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME "GNU Emacs"
#define PACKAGE_TARNAME "emacs"
#define PACKAGE_VERSION "25.1.50"
#define PACKAGE_STRING "GNU Emacs 25.1.50"
#define PACKAGE_BUGREPORT "bug-gnu-emacs@gnu.org"
#define PACKAGE_URL "http://www.gnu.org/software/emacs/"
#define PACKAGE "emacs"
#define VERSION "25.1.50"
#define MAIL_USE_POP 1
#define WIDE_EMACS_INT 1
#define HAVE_PUTENV 1
#define HAVE_TZSET 1
#define HAVE_FCHMOD 1
#define HAVE_READLINKAT 1
#define HAVE_FACCESSAT 1
#define HAVE_FCNTL 1
#define HAVE_FDOPENDIR 1
#define HAVE_FSTATAT 1
#define HAVE_FSYNC 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_LSTAT 1
#define HAVE_MKOSTEMP 1
#define HAVE_PIPE2 1
#define HAVE_PSELECT 1
#define HAVE_READLINK 1
#define HAVE_STRTOIMAX 1
#define HAVE_STRTOUMAX 1
#define HAVE_SYMLINK 1
#define HAVE_LOCALTIME_R 1
#define HAVE_TIMEGM 1
#define HAVE_FUTIMES 1
#define HAVE_FUTIMESAT 1
#define HAVE_FUTIMENS 1
#define HAVE_UTIMENSAT 1
#define HAVE_LUTIMES 1
#define HAVE_GETDTABLESIZE 1
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define __EXTENSIONS__ 1
#define _ALL_SOURCE 1
#define _DARWIN_C_SOURCE 1
#define _GNU_SOURCE 1
#define __USE_MINGW_ANSI_STDIO 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _TANDEM_SOURCE 1
#define _FILE_OFFSET_BITS 64
#define _DARWIN_USE_64_BIT_INODE 1
#define SYSTEM_TYPE "gnu/linux"
#define HAVE_SYS_SOUNDCARD_H 1
#define HAVE_ALSA 1
#define HAVE_SOUND 1
#define HAVE_MALLOC_H 1
#define HAVE_SYS_SYSINFO_H 1
#define HAVE_PTY_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_UTSNAME_H 1
#define HAVE_PWD_H 1
#define HAVE_UTMP_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_STDLIB_H 1
#define HAVE_UNISTD_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_PTHREAD_H 1
#define HAVE_MAILLOCK_H 1
#define HAVE_SYS_UN_H 1
#define HAVE_DIRENT_H 1
#define HAVE_EXECINFO_H 1
#define HAVE_STDIO_EXT_H 1
#define HAVE_GETOPT_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_WCHAR_H 1
#define HAVE_STDINT_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_UTIME_H 1
#define HAVE_PERSONALITY_LINUX32 1
#define HAVE_LINUX_SYSINFO 1
#define LINUX_SYSINFO_UNIT 1
#define HAVE_TERM_H 1
#define TIME_WITH_SYS_TIME 1
#define HAVE_DECL_SYS_SIGLIST 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_NET_IF_H 1
#define HAVE_IFADDRS_H 1
#define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
#define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
#define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
#define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
#define HAVE_STRUCT_IFREQ_IFR_ADDR 1
#define HAVE_LONG_FILE_NAMES 1
#define HAVE_SYS_VLIMIT_H 1
#define HAVE_DATA_START 1
#define DOUG_LEA_MALLOC 1
#define HAVE_GETPAGESIZE 1
#define HAVE_MMAP 1
#define HAVE_PTHREAD 1
#define HAVE_XKB 1
#define HAVE_XRMSETDATABASE 1
#define HAVE_XSCREENRESOURCESTRING 1
#define HAVE_XSCREENNUMBEROFSCREEN 1
#define HAVE_X11R6 1
#define HAVE_X_I18N 1
#define HAVE_X11R6_XIM 1
#define HAVE_RSVG 1
#define HAVE_GTK3 1
#define GDK_DISABLE_DEPRECATION_WARNINGS 1
#define GLIB_DISABLE_DEPRECATION_WARNINGS 1
#define USE_GTK 1
#define HAVE_GTK_HANDLE_BOX_NEW 1
#define HAVE_GTK_TEAROFF_MENU_ITEM_NEW 1
#define HAVE_GTK_WIDGET_GET_WINDOW 1
#define HAVE_GTK_WIDGET_SET_HAS_WINDOW 1
#define HAVE_GTK_DIALOG_GET_ACTION_AREA 1
#define HAVE_GTK_WIDGET_GET_SENSITIVE 1
#define HAVE_GTK_WIDGET_GET_MAPPED 1
#define HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE 1
#define HAVE_GTK_ORIENTABLE_SET_ORIENTATION 1
#define HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP 1
#define HAVE_DBUS 1
#define HAVE_DBUS_WATCH_GET_UNIX_FD 1
#define HAVE_DBUS_TYPE_IS_VALID 1
#define HAVE_DBUS_VALIDATE_BUS_NAME 1
#define HAVE_DBUS_VALIDATE_PATH 1
#define HAVE_DBUS_VALIDATE_INTERFACE 1
#define HAVE_DBUS_VALIDATE_MEMBER 1
#define HAVE_GSETTINGS 1
#define HAVE_GCONF 1
#define HAVE_LIBSELINUX 1
#define HAVE_GNUTLS 1
#define HAVE_INOTIFY 1
#define USE_FILE_NOTIFY 1
#define USE_TOOLKIT_SCROLL_BARS 1
#define HAVE_XIM 1
#define USE_XIM 1
#define XRegisterIMInstantiateCallback_arg6 XPointer
#define HAVE_XFT 1
#define HAVE_FREETYPE 1
#define HAVE_LIBOTF 1
#define HAVE_OTF_GET_VARIATION_GLYPHS 1
#define HAVE_M17N_FLT 1
#define HAVE_XPM 1
#define HAVE_JPEG 1
#define HAVE_ZLIB 1
#define HAVE_DLADDR 1
#define HAVE_PNG 1
#define PNG_DEPSTRUCT /**/
#define HAVE_TIFF 1
#define HAVE_GIF 1
#define HAVE_GPM 1
#define HAVE_X_SM 1
#define HAVE_XRRGETOUTPUTPRIMARY 1
#define HAVE_XRRGETSCREENRESOURCESCURRENT 1
#define HAVE_XRANDR 1
#define HAVE_XINERAMA 1
#define HAVE_XFIXES 1
#define HAVE_LIBXML2 1
#define HAVE_H_ERRNO 1
#define HAVE_LIBLOCKFILE 1
#define HAVE_ACCEPT4 1
#define HAVE_FCHDIR 1
#define HAVE_GETHOSTNAME 1
#define HAVE_GETRUSAGE 1
#define HAVE_GET_CURRENT_DIR_NAME 1
#define HAVE_LRAND48 1
#define HAVE_RANDOM 1
#define HAVE_RINT 1
#define HAVE_SELECT 1
#define HAVE_GETPAGESIZE 1
#define HAVE_SETLOCALE 1
#define HAVE_NEWLOCALE 1
#define HAVE_GETRLIMIT 1
#define HAVE_SETRLIMIT 1
#define HAVE_SHUTDOWN 1
#define HAVE_GETADDRINFO 1
#define HAVE_PTHREAD_SIGMASK 1
#define HAVE_STRSIGNAL 1
#define HAVE_SETITIMER 1
#define HAVE_SENDTO 1
#define HAVE_RECVFROM 1
#define HAVE_GETSOCKNAME 1
#define HAVE_GETPEERNAME 1
#define HAVE_GETIFADDRS 1
#define HAVE_FREEIFADDRS 1
#define HAVE_GAI_STRERROR 1
#define HAVE_SYNC 1
#define HAVE_GETPWENT 1
#define HAVE_ENDPWENT 1
#define HAVE_GETGRENT 1
#define HAVE_ENDGRENT 1
#define HAVE_CFMAKERAW 1
#define HAVE_CFSETSPEED 1
#define HAVE_COPYSIGN 1
#define HAVE___EXECUTABLE_START 1
#define HAVE_LOG2 1
#define HAVE_POSIX_MEMALIGN 1
#define HAVE_DECL_ALIGNED_ALLOC 0
#define HAVE___BUILTIN_UNWIND_INIT 1
#define HAVE_FSEEKO 1
#define HAVE_GRANTPT 1
#define HAVE_GETPT 1
#define HAVE_POSIX_OPENPT 1
#define TERMINFO 1
#define HAVE_TIMERFD 1
#define HAVE_RES_INIT 1
#define HAVE_STRUCT_UNIPAIR_UNICODE 1
#define HAVE_INET_SOCKETS 1
#define HAVE_FORK 1
#define HAVE_VFORK 1
#define HAVE_WORKING_VFORK 1
#define HAVE_WORKING_FORK 1
#define HAVE_SNPRINTF 1
#define HAVE_GLIB 1
#define HAVE_LANGINFO_CODESET 1
#define HAVE_MBSTATE_T 1
#define AMPERSAND_FULL_NAME 1
#define HAVE_PTYS 1
#define HAVE_SOCKETS 1
#define NULL_DEVICE "/dev/null"
#define SEPCHAR ':'
#define subprocesses 1
#define USER_FULL_NAME pw->pw_gecos
#define DIRECTORY_SEP '/'
#define IS_DEVICE_SEP(_c_) 0
#define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
#define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
#define HAVE_PROCFS 1
#define DEFAULT_SOUND_DEVICE "/dev/dsp"
#define INTERRUPT_INPUT 1
#define NARROWPROTO 1
#define UNIX98_PTYS 1
#define PTY_ITERATION int i; for (i = 0; i < 1; i++)
#define PTY_TTY_NAME_SPRINTF { char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }
#define PTY_OPEN do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)
#define PTY_NAME_SPRINTF /**/
#define SIGNALS_VIA_CHARACTERS 1
#define GC_SETJMP_WORKS 1
#define GC_SETJMP_WORKS 1
#define HAVE__SETJMP 1
#define HAVE_SIGSETJMP 1
#define HAVE_STACK_OVERFLOW_HANDLING 1
#define USG /**/
#define GNU_LINUX /**/
#define USABLE_FIONREAD 1
#define USABLE_SIGIO 1
#define COPYRIGHT "Copyright (C) 2016 Free Software Foundation, Inc."
#define TERM_HEADER "gtkutil.h"
#define EMACS_CONFIGURATION "i686-pc-linux-gnu"
#define EMACS_CONFIG_OPTIONS "--with-wide-int"
#define HAVE_X_WINDOWS 1
#define HAVE_X11 1
#define HAVE_STRUCT_ATTRIBUTE_ALIGNED 1
#define GNU_MALLOC 1
#define HAVE_ALLOCA_H 1
#define HAVE_ALLOCA 1
#define HAVE_UNSIGNED_LONG_LONG_INT 1
#define HAVE_C99_STRTOLD 1
#define HAVE_ENVIRON_DECL 1
#define HAVE_DECL_FDATASYNC 1
#define HAVE_DECL_STRMODE 0
#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
#define HAVE_GETOPT_H 1
#define HAVE_GETOPT_LONG_ONLY 1
#define __GETOPT_PREFIX rpl_
#define HAVE_DECL_GETENV 1
#define restrict __restrict
#define HAVE_LONG_LONG_INT 1
#define HAVE_DECL_MEMRCHR 1
#define HAVE_DECL_ALARM 1
#define HAVE_SIGSET_T 1
#define HAVE_WCHAR_T 1
#define HAVE_STRUCT_TM_TM_ZONE 1
#define HAVE_TM_ZONE 1
#define HAVE_TM_GMTOFF 1
#define HAVE_DECL_STRTOIMAX 1
#define HAVE_DECL_STRTOUMAX 1
#define HAVE_WORKING_UTIMES 1
#define HAVE_STRUCT_UTIMBUF 1
#define GETGROUPS_T gid_t
#define HAVE_DECL_GETDTABLESIZE 1
#define HAVE_SYS_ACL_H 1
#define HAVE_ACL_GET_FILE 1
#define HAVE_ACL_GET_FD 1
#define HAVE_ACL_SET_FILE 1
#define HAVE_ACL_SET_FD 1
#define HAVE_ACL_FREE 1
#define HAVE_ACL_FROM_MODE 1
#define HAVE_ACL_FROM_TEXT 1
#define HAVE_ACL_DELETE_DEF_FILE 1
#define HAVE_ACL_EXTENDED_FILE 1
#define HAVE_ACL_LIBACL_H 1
#define HAVE_ACL_ENTRIES 1
#define HAVE_ACL_FIRST_ENTRY 1
#define USE_ACL 1
#define HAVE_ALLOCA 1
#define HAVE_BYTESWAP_H 1
#define HAVE_CLOCK_GETTIME 1
#define HAVE_CLOCK_SETTIME 1
#define GNULIB_CLOSE_STREAM 1
#define HAVE_DUP2 1
#define GNULIB_FACCESSAT 1
#define HAVE_DECL_FDOPENDIR 1
#define GNULIB_FDOPENDIR 1
#define HAVE_DECL___FPENDING 1
#define __GETOPT_PREFIX rpl_
#define GETTIMEOFDAY_TIMEZONE struct timezone
#define HAVE_MEMRCHR 1
#define GNULIB_MKOSTEMP 1
#define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
#define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
#define GNULIB_FSCANF 1
#define GNULIB_SCANF 1
#define HAVE_STPCPY 1
#define my_strftime nstrftime
#define HAVE_DECL_LOCALTIME_R 1
#define HAVE_TIMER_SETTIME 1
#define HAVE_C_VARARRAYS 1
#define HAVE_WINDOW_SYSTEM 1
#define POLL_FOR_INPUT 1
#define EMACS_CONFIG_FEATURES "XPM JPEG TIFF GIF PNG RSVG SOUND GPM DBUS GCONF GSETTINGS NOTIFY ACL LIBSELINUX GNUTLS LIBXML2 FREETYPE M17N_FLT LIBOTF XFT ZLIB TOOLKIT_SCROLL_BARS GTK3 X11"

configure: exit 0

[-- Attachment #5: screen-out2.txt --]
[-- Type: text/plain, Size: 24429 bytes --]

---------- Begin screen output 2 -------
redknight@jetstar:~/git/emacs$ ./configure --with-wide-int
checking for xcrun... no
checking for GNU Make... make
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... -std=gnu11
checking for style of include used by make... GNU
checking dependency style of gcc -std=gnu11... gcc3
checking whether gcc -std=gnu11 and cc understand -c and -o together... yes
checking for putenv... yes
checking for tzset... yes
checking for fchmod... yes
checking for readlinkat... yes
checking for faccessat... yes
checking for fcntl... yes
checking for fdopendir... yes
checking for fstatat... yes
checking for fsync... yes
checking for gettimeofday... yes
checking for nanotime... no
checking for lstat... yes
checking for mkostemp... yes
checking for pipe2... yes
checking for pselect... yes
checking for readlink... yes
checking for strtoimax... yes
checking for strtoumax... yes
checking for symlink... yes
checking for localtime_r... yes
checking for timegm... yes
checking for futimes... yes
checking for futimesat... yes
checking for futimens... yes
checking for utimensat... yes
checking for lutimes... yes
checking for getdtablesize... yes
checking for secure_getenv... no
checking how to run the C preprocessor... gcc -std=gnu11 -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for Minix Amsterdam compiler... no
checking for ar... ar
checking the archiver (ar) interface... ar
checking for ar... (cached) ar
checking for ranlib... ranlib
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking whether gcc -std=gnu11 accepts -g3 -O2... yes
checking whether the compiler is clang... no
checking whether make supports nested variables... (cached) yes
checking whether ln -s works for files in the same directory... yes
checking for install-info... /home/redknight/local/bin/install-info
checking for gzip... /bin/gzip
checking for paxctl... no
checking for setfattr... no
checking for -znocombreloc... yes
checking whether addresses are sanitized... no
checking for library containing sqrt... -lm
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for machine/soundcard.h... no
checking for sys/soundcard.h... yes
checking for soundcard.h... no
checking for mmsystem.h... no
checking for _oss_ioctl in -lossaudio... no
checking for ALSA... yes
checking for malloc.h... yes
checking for sys/systeminfo.h... no
checking for sys/sysinfo.h... yes
checking for coff.h... no
checking for pty.h... yes
checking for sys/resource.h... yes
checking for sys/utsname.h... yes
checking for pwd.h... yes
checking for utmp.h... yes
checking for util.h... no
checking for sys/socket.h... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... yes
checking for pthread.h... yes
checking for malloc/malloc.h... no
checking for maillock.h... yes
checking for sys/un.h... yes
checking for dirent.h... yes
checking for execinfo.h... yes
checking for stdio_ext.h... yes
checking for getopt.h... yes
checking for sys/time.h... yes
checking for wchar.h... yes
checking for stdint.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for sys/select.h... yes
checking for sys/stat.h... (cached) yes
checking for utime.h... yes
checking if personality LINUX32 can be set... yes
checking if Linux sysinfo may be used... yes
checking for term.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether sys_siglist is declared... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for net/if.h... yes
checking for ifaddrs.h... yes
checking for net/if_dl.h... no
checking for struct ifreq.ifr_flags... yes
checking for struct ifreq.ifr_hwaddr... yes
checking for struct ifreq.ifr_netmask... yes
checking for struct ifreq.ifr_broadaddr... yes
checking for struct ifreq.ifr_addr... yes
checking for struct ifreq.ifr_addr.sa_len... no
checking whether gcc understands -MMD -MF... yes
checking for long file names... yes
checking for X... libraries , headers
checking whether malloc is Doug Lea style... yes
checking sys/vlimit.h usability... yes
checking sys/vlimit.h presence... yes
checking for sys/vlimit.h... yes
checking for data_start... yes
checking for getpagesize... yes
checking for working mmap... yes
checking for main in -lXbsd... no
checking for pthread library... -lpthread
checking whether X on GNU/Linux needs -b to link... no
checking for Xkb... yes
checking for XrmSetDatabase... yes
checking for XScreenResourceString... yes
checking for XScreenNumberOfScreen... yes
checking X11 version 6... 6 or newer
checking for RSVG... yes
checking for IMAGEMAGICK... no
checking for GTK... yes
checking whether GTK compiles... yes
configure: WARNING: Your version of Gtk+ will have problems with
       closing open displays.  This is no problem if you just use
       one display, but if you use more than one and close one of them
       Emacs may crash.
       See http://bugzilla.gnome.org/show_bug.cgi?id=85715
checking whether GTK_TYPE_FILE_SELECTION is declared... no
checking whether GTK_TYPE_HANDLE_BOX is declared... yes
checking for gtk_handle_box_new... yes
checking whether GTK_TYPE_TEAROFF_MENU_ITEM is declared... yes
checking for gtk_tearoff_menu_item_new... yes
checking for gtk_widget_get_window... yes
checking for gtk_widget_set_has_window... yes
checking for gtk_dialog_get_action_area... yes
checking for gtk_widget_get_sensitive... yes
checking for gtk_widget_get_mapped... yes
checking for gtk_adjustment_get_page_size... yes
checking for gtk_orientable_set_orientation... yes
checking for gtk_window_set_has_resize_grip... yes
checking for DBUS... yes
checking for dbus_watch_get_unix_fd... yes
checking for dbus_type_is_valid... yes
checking for dbus_validate_bus_name... yes
checking for dbus_validate_path... yes
checking for dbus_validate_interface... yes
checking for dbus_validate_member... yes
checking for GSETTINGS... yes
checking whether GSettings is in gio... yes
checking for GCONF... yes
checking for GOBJECT... yes
checking for lgetfilecon in -lselinux... yes
checking for LIBGNUTLS... yes
checking for LIBGNUTLS3... no
checking sys/inotify.h usability... yes
checking sys/inotify.h presence... yes
checking for sys/inotify.h... yes
checking for inotify_init1... yes
checking for FONTCONFIG... yes
checking for XFT... yes
checking for XRenderQueryExtension in -lXrender... yes
checking for X11/Xft/Xft.h... yes
checking for XftFontOpen in -lXft... yes
checking for FREETYPE... yes
checking for LIBOTF... yes
checking for OTF_get_variation_glyphs in -lotf... yes
checking for M17N_FLT... yes
checking X11/Xlib-xcb.h usability... no
checking X11/Xlib-xcb.h presence... no
checking for X11/Xlib-xcb.h... no
checking X11/xpm.h usability... yes
checking X11/xpm.h presence... yes
checking for X11/xpm.h... yes
checking for XpmReadFileToPixmap in -lXpm... yes
checking for XpmReturnAllocPixels preprocessor define... yes
checking for jpeglib 6b or later... -ljpeg
checking for library containing inflateEnd... -lz
checking for dladdr... yes
checking for png... yes
checking whether png_longjmp is declared... no
checking tiffio.h usability... yes
checking tiffio.h presence... yes
checking for tiffio.h... yes
checking for TIFFGetVersion in -ltiff... yes
checking gif_lib.h usability... yes
checking gif_lib.h presence... yes
checking for gif_lib.h... yes
checking for GifMakeMapObject in -lgif... no
checking for EGifPutExtensionLast in -lgif... yes
checking gpm.h usability... yes
checking gpm.h presence... yes
checking for gpm.h... yes
checking for Gpm_Open in -lgpm... yes
checking X11/SM/SMlib.h usability... yes
checking X11/SM/SMlib.h presence... yes
checking for X11/SM/SMlib.h... yes
checking for SmcOpenConnection in -lSM... yes
checking for XRANDR... yes
checking for XRRGetOutputPrimary... yes
checking for XRRGetScreenResourcesCurrent... yes
checking for XINERAMA... yes
checking for XFIXES... yes
checking for LIBXML2... yes
checking for htmlReadMemory in -lxml2... yes
checking whether netdb declares h_errno... yes
checking for maillock in -lmail... no
checking for maillock in -llockfile... yes
checking for accept4... yes
checking for fchdir... yes
checking for gethostname... yes
checking for getrusage... yes
checking for get_current_dir_name... yes
checking for lrand48... yes
checking for random... yes
checking for rint... yes
checking for select... yes
checking for getpagesize... (cached) yes
checking for setlocale... yes
checking for newlocale... yes
checking for getrlimit... yes
checking for setrlimit... yes
checking for shutdown... yes
checking for getaddrinfo... yes
checking for pthread_sigmask... (cached) yes
checking for strsignal... yes
checking for setitimer... yes
checking for sendto... yes
checking for recvfrom... yes
checking for getsockname... yes
checking for getpeername... yes
checking for getifaddrs... yes
checking for freeifaddrs... yes
checking for gai_strerror... yes
checking for sync... yes
checking for getpwent... yes
checking for endpwent... yes
checking for getgrent... yes
checking for endgrent... yes
checking for cfmakeraw... yes
checking for cfsetspeed... yes
checking for copysign... yes
checking for __executable_start... yes
checking for log2... yes
checking for aligned_alloc... no
checking for posix_memalign... yes
checking whether aligned_alloc is declared... no
checking for __builtin_unwind_init... yes
checking for _LARGEFILE_SOURCE value needed for large files... no
checking for grantpt... yes
checking for getpt... yes
checking for posix_openpt... yes
checking for library containing tputs... -ltinfo
checking for timerfd interface... yes
checking whether signals can be handled on alternate stack... yes
checking valgrind/valgrind.h usability... no
checking valgrind/valgrind.h presence... no
checking for valgrind/valgrind.h... no
checking for struct unipair.unicode... yes
checking for socket... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking arpa/inet.h usability... yes
checking arpa/inet.h presence... yes
checking for arpa/inet.h... yes
checking for pid_t... yes
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for snprintf... yes
checking whether GLib is linked in... yes
checking for nl_langinfo and CODESET... yes
checking for mbstate_t... yes
checking for signals via characters... yes
checking for _setjmp... yes
checking for sigsetjmp... yes
checking for usable FIONREAD... yes
checking for usable SIGIO... yes
checking for struct alignment... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for unsigned long long int... yes
checking whether byte ordering is bigendian... no
checking whether the preprocessor supports include_next... yes
checking whether system header files limit the line length... no
checking whether strtold conforms to C99... yes
checking if environ is properly declared... yes
checking for complete errno.h... yes
checking for mode_t... yes
checking whether fdatasync is declared... yes
checking for st_dm_mode in struct stat... no
checking whether strmode is declared... no
checking whether lstat correctly handles trailing slash... yes
checking for getopt.h... (cached) yes
checking for getopt_long_only... yes
checking whether getopt is POSIX compatible... yes
checking for working GNU getopt function... no
checking whether getenv is declared... yes
checking for C/C++ restrict keyword... __restrict
checking for struct timeval... yes
checking for wide-enough struct timeval.tv_sec member... yes
checking for long long int... yes
checking whether stdint.h conforms to C99... yes
checking whether memrchr is declared... yes
checking whether alarm is declared... yes
checking whether <sys/select.h> is self-contained... yes
checking for sigset_t... yes
checking for wchar_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for struct tm.tm_gmtoff... yes
checking whether strtoimax is declared... yes
checking whether strtoumax is declared... yes
checking whether stat file-mode macros are broken... no
checking for struct timespec in <time.h>... yes
checking whether the utimes function works... yes
checking for struct utimbuf... yes
checking type of array argument to getgroups... gid_t
checking whether getdtablesize is declared... yes
checking sys/acl.h usability... yes
checking sys/acl.h presence... yes
checking for sys/acl.h... yes
checking for library containing acl_get_file... -lacl
checking for acl_get_file... yes
checking for acl_get_fd... yes
checking for acl_set_file... yes
checking for acl_set_fd... yes
checking for acl_free... yes
checking for acl_from_mode... yes
checking for acl_from_text... yes
checking for acl_delete_def_file... yes
checking for acl_extended_file... yes
checking for acl_delete_fd_np... no
checking for acl_delete_file_np... no
checking for acl_copy_ext_native... no
checking for acl_create_entry_np... no
checking for acl_to_short_text... no
checking for acl_free_text... no
checking for working acl_get_file... yes
checking acl/libacl.h usability... yes
checking acl/libacl.h presence... yes
checking for acl/libacl.h... yes
checking for acl_entries... yes
checking for ACL_FIRST_ENTRY... yes
checking for ACL_TYPE_EXTENDED... no
checking for alloca as a compiler built-in... yes
checking byteswap.h usability... yes
checking byteswap.h presence... yes
checking for byteswap.h... yes
checking for library containing clock_gettime... -lrt
checking for clock_gettime... yes
checking for clock_settime... yes
checking whether dup2 works... yes
checking for library containing backtrace_symbols_fd... none required
checking whether fcntl handles F_DUPFD correctly... yes
checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check
checking for library containing fdatasync... none required
checking whether fdopendir is declared... yes
checking whether fdopendir works... yes
checking for __fpending... yes
checking whether __fpending is declared... yes
checking whether fstatat (..., 0) works... yes
checking for getloadavg... yes
checking sys/loadavg.h usability... no
checking sys/loadavg.h presence... no
checking for sys/loadavg.h... no
checking whether getloadavg is declared... yes
checking whether gettimeofday clobbers localtime buffer... no
checking for gettimeofday with POSIX signature... almost
checking for memrchr... yes
checking for working mktime... yes
checking whether signature of pselect conforms to POSIX... yes
checking whether pselect detects invalid fds... yes
checking whether pthread_sigmask returns error numbers... yes
checking whether pthread_sigmask unblocks signals correctly... guessing yes
checking whether readlink signature is correct... yes
checking whether readlink handles trailing slash correctly... yes
checking whether readlinkat signature is correct... yes
checking for sig2str... no
checking for volatile sig_atomic_t... yes
checking for sighandler_t... yes
checking for socklen_t... yes
checking for ssize_t... yes
checking for struct stat.st_atim.tv_nsec... yes
checking whether struct stat.st_atim is of type struct timespec... yes
checking for struct stat.st_birthtimespec.tv_nsec... no
checking for struct stat.st_birthtimensec... no
checking for struct stat.st_birthtim.tv_nsec... no
checking for working stdalign.h... no
checking for max_align_t... yes
checking whether NULL can be used in arbitrary expressions... yes
checking which flavor of printf attribute matches inttypes macros... system
checking for stpcpy... yes
checking whether strtoimax works... yes
checking whether symlink handles trailing slash correctly... yes
checking whether <sys/select.h> is self-contained... (cached) yes
checking for nlink_t... yes
checking whether localtime_r is declared... yes
checking whether localtime_r is compatible with its POSIX signature... yes
checking for timezone_t... no
checking for library containing timer_settime... -lrt
checking for timer_settime... yes
checking for variable-length arrays... yes
checking whether getdtablesize works... yes
checking whether gcc -std=gnu11 accepts -nopie... no

Configured for 'i686-pc-linux-gnu'.

  Where should the build process find the source code?    .
  What compiler should emacs be built with?               gcc -std=gnu11 -g3 -O2
  Should Emacs use the GNU version of malloc?             yes
      (Using Doug Lea's new malloc from the GNU C Library.)
  Should Emacs use a relocating allocator for buffers?    no
  Should Emacs use mmap(2) for buffer allocation?         no
  What window system should Emacs use?                    x11
  What toolkit should Emacs use?                          GTK3
  Where do we find X Windows header files?                Standard dirs
  Where do we find X Windows libraries?                   Standard dirs
  Does Emacs use -lXaw3d?                                 no
  Does Emacs use -lXpm?                                   yes
  Does Emacs use -ljpeg?                                  yes
  Does Emacs use -ltiff?                                  yes
  Does Emacs use a gif library?                           yes -lgif
  Does Emacs use a png library?                           yes -lpng12
  Does Emacs use -lrsvg-2?                                yes
  Does Emacs use cairo?                                   no
  Does Emacs use imagemagick?                             no
  Does Emacs support sound?                               yes
  Does Emacs use -lgpm?                                   yes
  Does Emacs use -ldbus?                                  yes
  Does Emacs use -lgconf?                                 yes
  Does Emacs use GSettings?                               yes
  Does Emacs use a file notification library?             yes -lglibc (inotify)
  Does Emacs use access control lists?                    yes -lacl
  Does Emacs use -lselinux?                               yes
  Does Emacs use -lgnutls?                                yes
  Does Emacs use -lxml2?                                  yes
  Does Emacs use -lfreetype?                              yes
  Does Emacs use -lm17n-flt?                              yes
  Does Emacs use -lotf?                                   yes
  Does Emacs use -lxft?                                   yes
  Does Emacs directly use zlib?                           yes
  Does Emacs have dynamic modules support?                no
  Does Emacs use toolkit scroll bars?                     yes
  Does Emacs support Xwidgets (requires gtk3)?            no


configure: creating ./config.status
config.status: creating ./doc/man/emacs.1
config.status: creating Makefile
config.status: creating lib/Makefile
config.status: creating lib-src/Makefile
config.status: creating oldXMenu/Makefile
config.status: creating doc/emacs/Makefile
config.status: creating doc/misc/Makefile
config.status: creating doc/lispintro/Makefile
config.status: creating doc/lispref/Makefile
config.status: creating src/Makefile
config.status: creating lwlib/Makefile
config.status: creating lisp/Makefile
config.status: creating leim/Makefile
config.status: creating nextstep/Makefile
config.status: creating nt/Makefile
config.status: creating test/Makefile
config.status: creating admin/charsets/Makefile
config.status: creating admin/unidata/Makefile
config.status: creating admin/grammars/Makefile
config.status: creating src/config.h
config.status: executing depfiles commands
config.status: executing src/epaths.h commands
config.status: executing src/.gdbinit commands
config.status: executing doc/emacs/emacsver.texi commands
config.status: executing etc-refcards-emacsver.tex commands
redknight@jetstar:~/git/emacs$ make
make -C lib all
make[1]: Entering directory `/home/redknight/git/emacs/lib'
  GEN    alloca.h
  GEN    c++defs.h
  GEN    arg-nonnull.h
  GEN    warn-on-use.h
  GEN    dirent.h
  GEN    fcntl.h
  GEN    getopt.h
  GEN    inttypes.h
  GEN    signal.h
  GEN    stdalign.h
  GEN    stdio.h
  GEN    stdlib.h
  GEN    string.h
  GEN    sys/select.h
  GEN    sys/stat.h
  GEN    sys/time.h
  GEN    sys/types.h
  GEN    time.h
  GEN    unistd.h
make  all-am
make[2]: Entering directory `/home/redknight/git/emacs/lib'
  CC     acl-errno-valid.o
  CC     acl-internal.o
  CC     get-permissions.o
  CC     set-permissions.o
  CC     allocator.o
  CC     binary-io.o
  CC     c-ctype.o
  CC     c-strcasecmp.o
  CC     c-strncasecmp.o
  CC     careadlinkat.o
  CC     close-stream.o
  CC     count-one-bits.o
  CC     count-trailing-zeros.o
  CC     md5.o
  CC     sha1.o
  CC     sha256.o
  CC     sha512.o
  CC     dtoastr.o
  CC     dtotimespec.o
  CC     filemode.o
  CC     gettime.o
  CC     pipe2.o
  CC     qcopy-acl.o
  CC     stat-time.o
  CC     strftime.o
  CC     timespec.o
  CC     timespec-add.o
  CC     timespec-sub.o
  CC     u64.o
  CC     unistd.o
  CC     utimens.o
  CC     openat-die.o
  CC     save-cwd.o
  CC     fcntl.o
  CC     getopt.o
  CC     getopt1.o
  CC     sig2str.o
  CC     time_rz.o
  AR     libgnu.a
make[2]: Leaving directory `/home/redknight/git/emacs/lib'
make[1]: Leaving directory `/home/redknight/git/emacs/lib'
make -C lib-src all
make[1]: Entering directory `/home/redknight/git/emacs/lib-src'
  CC       regex.o
  CCLD     etags
  CCLD     ctags
  CCLD     emacsclient
  CCLD     ebrowse
  CCLD     profile
  CC       pop.o
  CCLD     movemail
  CCLD     hexl
  CCLD     update-game-score
  CCLD     make-docfile
make[1]: Leaving directory `/home/redknight/git/emacs/lib-src'
make -C src VCSWITNESS='$(srcdir)/../.git/logs/HEAD' all
make[1]: Entering directory `/home/redknight/git/emacs/src'
  GEN      lisp.mk
make[1]: Leaving directory `/home/redknight/git/emacs/src'
make[1]: Entering directory `/home/redknight/git/emacs/src'
  GEN      globals.h
  CC       vm-limit.o
In file included from vm-limit.c:21:0:
lisp.h:281:3: error: #error "alignas not defined"
In file included from lisp.h:758:0,
		 from vm-limit.c:21:
globals.h:1050:29: error: expected declaration specifiers or ‘...’ before numeric constant
In file included from vm-limit.c:21:0:
lisp.h: In function ‘XSYMBOL’:
lisp.h:955:22: error: ‘lispsym’ undeclared (first use in this function)
lisp.h:955:22: note: each undeclared identifier is reported only once for each function it appears in
lisp.h: In function ‘make_lisp_symbol’:
lisp.h:1122:24: error: ‘lispsym’ undeclared (first use in this function)
lisp.h: In function ‘builtin_lisp_symbol’:
lisp.h:1130:28: error: ‘lispsym’ undeclared (first use in this function)
lisp.h: At top level:
lisp.h:1590:22: error: ‘lispsym’ undeclared here (not in a function)
lisp.h: In function ‘memclear’:
lisp.h:1598:3: error: static assertion failed: "verify (NIL_IS_ZERO)"
make[1]: *** [vm-limit.o] Error 1
make[1]: Leaving directory `/home/redknight/git/emacs/src'
make: *** [src] Error 2
redknight@jetstar:~/git/emacs$
---------- End screen output 2 ---------

^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-05  1:22   ` Paul Eggert
  2016-02-05  9:45     ` Colin Baxter
@ 2016-02-06 10:55     ` Herbert J. Skuhra
  2016-02-06 16:04       ` Herbert J. Skuhra
  2016-02-06 20:34       ` Paul Eggert
  1 sibling, 2 replies; 27+ messages in thread
From: Herbert J. Skuhra @ 2016-02-06 10:55 UTC (permalink / raw)
  To: Paul Eggert; +Cc: emacs-devel

On Fri, 05 Feb 2016 02:22:42 +0100, Paul Eggert wrote:
> 
> On 02/04/2016 02:29 PM, Herbert J. Skuhra wrote:
> > Commit d6585a910ed3e9e0e43c093b5fbfeb6d56b703b4 is obviously the
> > culprit. The workaround is successful.
>
> Thanks, but I'm not getting the connection. I don't understand why
> that commit would cause this problem. USE_LSB_TAG's value depends on
> EMACS_INT_MAX and INTPTR_MAX, neither of which should be affected by
> that commit.
> 
> I guess you're configuring with the equivalent of './configure
> --with-x-toolkit=lucid'; that would explain why you're compiling
> lwlib.c. However, when I configure that way, I don't get an error on
> Fedora 23 x86.
> 
> Can you tell us what the values of EMACS_INT_MAX and INTPTR_MAX are,
> in your environment? They should both be 2**31 - 1, but perhaps
> something has gone wrong in their configuration.

INTPTR_MAX=0x7fffffff
EMACS_INT_MAX=0x7fffffffffffffffLL

Before the commit mentioned above both are 0x7fffffff. 

Thanks.

--
Herbert




^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-06 10:55     ` Herbert J. Skuhra
@ 2016-02-06 16:04       ` Herbert J. Skuhra
  2016-02-07 15:11         ` Wolfgang Jenkner
                           ` (2 more replies)
  2016-02-06 20:34       ` Paul Eggert
  1 sibling, 3 replies; 27+ messages in thread
From: Herbert J. Skuhra @ 2016-02-06 16:04 UTC (permalink / raw)
  To: Paul Eggert; +Cc: emacs-devel

On Sat, 06 Feb 2016 11:55:15 +0100,
"Herbert J. Skuhra" <herbert@mailbox.org> wrote:
> 
> On Fri, 05 Feb 2016 02:22:42 +0100, Paul Eggert wrote:
> > 
> > On 02/04/2016 02:29 PM, Herbert J. Skuhra wrote:
> > > Commit d6585a910ed3e9e0e43c093b5fbfeb6d56b703b4 is obviously the
> > > culprit. The workaround is successful.
> >
> > Thanks, but I'm not getting the connection. I don't understand why
> > that commit would cause this problem. USE_LSB_TAG's value depends on
> > EMACS_INT_MAX and INTPTR_MAX, neither of which should be affected by
> > that commit.
> > 
> > I guess you're configuring with the equivalent of './configure
> > --with-x-toolkit=lucid'; that would explain why you're compiling
> > lwlib.c. However, when I configure that way, I don't get an error on
> > Fedora 23 x86.
> > 
> > Can you tell us what the values of EMACS_INT_MAX and INTPTR_MAX are,
> > in your environment? They should both be 2**31 - 1, but perhaps
> > something has gone wrong in their configuration.
> 
> INTPTR_MAX=0x7fffffff
> EMACS_INT_MAX=0x7fffffffffffffffLL
> 
> Before the commit mentioned above both are 0x7fffffff. 

I can build master on FreeBSD HEAD (amd64). Should hybrid_malloc work/be
used on FreeBSD (i386)?

I've tried this patch:

diff --git a/configure.ac b/configure.ac
index 286ca52..098ee52 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2124,7 +2124,7 @@ esac
 
 if test "${system_malloc}" != yes && test "${doug_lea_malloc}" != yes \
    && test "${UNEXEC_OBJ}" = unexelf.o; then
-  hybrid_malloc=yes
+  hybrid_malloc=no
 fi
 
 GMALLOC_OBJ=

Now the build fails later with this error:

  CCLD     temacs
gmalloc.o: In function `calloc':
/mnt/daten/source/emacs/src/gmalloc.c:1801: undefined reference to `gcalloc'
collect2: error: ld returned 1 exit status
Makefile:599: recipe for target 'temacs' failed
gmake[1]: *** [temacs] Error 1
gmake[1]: Leaving directory '/mnt/daten/source/emacs/src'
Makefile:394: recipe for target 'src' failed
gmake: *** [src] Error 2

--
Herbert



^ permalink raw reply related	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-06 10:55     ` Herbert J. Skuhra
  2016-02-06 16:04       ` Herbert J. Skuhra
@ 2016-02-06 20:34       ` Paul Eggert
  2016-02-07 16:52         ` Herbert J. Skuhra
  1 sibling, 1 reply; 27+ messages in thread
From: Paul Eggert @ 2016-02-06 20:34 UTC (permalink / raw)
  To: Herbert J. Skuhra; +Cc: emacs-devel

Herbert J. Skuhra wrote:
> INTPTR_MAX=0x7fffffff
> EMACS_INT_MAX=0x7fffffffffffffffLL
>
> Before the commit mentioned above both are 0x7fffffff.

Commit d6585a910ed3e9e0e43c093b5fbfeb6d56b703b4 should not have affected 
EMACS_INT_MAX, and I don't see how it did.

I assume you are not configuring with --with-wide-int, so the reason 
EMACS_INT_MAX has that large value is due to the following tests in src/lisp.h:

   # if INTPTR_MAX <= 0
   #  error "INTPTR_MAX misconfigured"
   # elif INTPTR_MAX <= INT_MAX >> NONPOINTER_BITS && !defined WIDE_EMACS_INT
   ...
   # elif INTPTR_MAX <= LONG_MAX >> NONPOINTER_BITS && !defined WIDE_EMACS_INT
   ...
   # elif INTPTR_MAX <= LLONG_MAX
   ...
   #  define EMACS_INT_MAX LLONG_MAX
   #endif

Is the value of NONPOINTER_BITS 0 on your platform, or 3?  If 0, is this 
correct? That is, does malloc ever return a pointer that, when treated as an 
integer, is not a multiple of 8? If malloc always returns a multiple of 8, then 
we should be able to work around the problem by setting NONPOINTER_BITS to 0 on 
your platform.



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-06 16:04       ` Herbert J. Skuhra
@ 2016-02-07 15:11         ` Wolfgang Jenkner
  2016-02-07 19:14           ` Herbert J. Skuhra
  2016-02-07 21:35           ` Herbert J. Skuhra
  2016-02-09 15:53         ` Wolfgang Jenkner
  2016-02-09 23:33         ` Paul Eggert
  2 siblings, 2 replies; 27+ messages in thread
From: Wolfgang Jenkner @ 2016-02-07 15:11 UTC (permalink / raw)
  To: Herbert J. Skuhra; +Cc: Paul Eggert, emacs-devel

On Sat, Feb 06 2016, Herbert J. Skuhra wrote:

> I can build master on FreeBSD HEAD (amd64). Should hybrid_malloc work/be
> used on FreeBSD (i386)?

Yes.  But on HEAD (aka CURRENT, FreeBSD 11) the ports build for i386 has
been broken (apparently with the same error message?) since long before
the hybrid malloc patch was committed:

http://permalink.gmane.org/gmane.os.freebsd.devel.pkg-fallout/231439

However, you report that for i386 the build fails in the same way on the
latest 10-STABLE as well, and that seems to be new.  As the ports build
cluster seems to build packages for 10.1-RELEASE, I'm tempted to suspect
that something has been merged from CURRENT in the meantime, but this
seems to contradict your observations.

It would be interesting to know if the same emacs trunk revision that is
currently in ports (0a7ad07) still builds on your 10.3-PRERELEASE i386
system.



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-06 20:34       ` Paul Eggert
@ 2016-02-07 16:52         ` Herbert J. Skuhra
  2016-02-07 21:34           ` Paul Eggert
  0 siblings, 1 reply; 27+ messages in thread
From: Herbert J. Skuhra @ 2016-02-07 16:52 UTC (permalink / raw)
  To: Paul Eggert; +Cc: emacs-devel

On Sat, 06 Feb 2016 21:34:40 +0100, Paul Eggert wrote:
> 
> Herbert J. Skuhra wrote:
> > INTPTR_MAX=0x7fffffff
> > EMACS_INT_MAX=0x7fffffffffffffffLL
> > 
> > Before the commit mentioned above both are 0x7fffffff.
> 
> Commit d6585a910ed3e9e0e43c093b5fbfeb6d56b703b4 should not have
> affected EMACS_INT_MAX, and I don't see how it did.

Before this commit I get:

(EMACS_INT_MAX=0x7fffffff, INTPTR_MAX=0x7fffffff, NONPOINTER_BITS=0)

After this commit:

(EMACS_INT_MAX=0x7fffffffffffffffLL, INTPTR_MAX=0x7fffffff, NONPOINTER_BITS=3)

I can fix the build by:

--- a/configure.ac
+++ b/configure.ac
@@ -2123,7 +2123,7 @@ esac

 if test "${system_malloc}" != yes && test "${doug_lea_malloc}" != yes \
    && test "${UNEXEC_OBJ}" = unexelf.o && test "${hybrid_malloc}" != no; then
-  hybrid_malloc=yes
+  hybrid_malloc=no
 fi

(EMACS_INT_MAX=0x7fffffff, INTPTR_MAX=0x7fffffff, NONPOINTER_BITS=0)

This does not work on later master checkouts.

> I assume you are not configuring with --with-wide-int, so the reason
> EMACS_INT_MAX has that large value is due to the following tests in
> src/lisp.h:

Enabling "--with-wide-int" does indeed fix the build.

(EMACS_INT_MAX=0x7fffffffffffffffLL, INTPTR_MAX=0x7fffffff, NONPOINTER_BITS=3)

> Is the value of NONPOINTER_BITS 0 on your platform, or 3?  If 0, is
> this correct? That is, does malloc ever return a pointer that, when
> treated as an integer, is not a multiple of 8? If malloc always
> returns a multiple of 8, then we should be able to work around the
> problem by setting NONPOINTER_BITS to 0 on your platform.

How can I tell?

Without "--with-wide-int" I also get

EMACS_INT_MAX=0x7fffffffffffffffLL, INTPTR_MAX=0x7fffffff, NONPOINTER_BITS=3

To be able to build master without "--with-wide-int" I have to apply:

@@ -73,7 +76,7 @@ DEFINE_GDB_SYMBOL_END (GCTYPEBITS)
    2.  We know malloc returns a multiple of 8.  */
 #if (defined alignas \
      && (defined GNU_MALLOC || defined DOUG_LEA_MALLOC || defined __GLIBC__ \
-        || defined DARWIN_OS || defined __sun || defined __MINGW32__ \
+        || defined __FreeBSD__ || defined DARWIN_OS || defined __sun || defined __MINGW32__ \
         || defined CYGWIN))
 # define NONPOINTER_BITS 0
 #else

(EMACS_INT_MAX=0x7fffffff, INTPTR_MAX=0x7fffffff, NONPOINTER_BITS=0)

--
Herbert



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-07 15:11         ` Wolfgang Jenkner
@ 2016-02-07 19:14           ` Herbert J. Skuhra
  2016-02-07 21:35           ` Herbert J. Skuhra
  1 sibling, 0 replies; 27+ messages in thread
From: Herbert J. Skuhra @ 2016-02-07 19:14 UTC (permalink / raw)
  To: Wolfgang Jenkner; +Cc: emacs-devel

On Sun, 07 Feb 2016 16:11:16 +0100, Wolfgang Jenkner wrote:
>
> It would be interesting to know if the same emacs trunk revision that is
> currently in ports (0a7ad07) still builds on your 10.3-PRERELEASE i386
> system.

- Yes I can build the port (with clang) and the checkout (with clang &
  gcc5)
- I used 'git bisect' to find the commit that breaks the build on my
  system (so I did compile quite a few revisions)

Thanks.

-- 
Herbert



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-07 16:52         ` Herbert J. Skuhra
@ 2016-02-07 21:34           ` Paul Eggert
  0 siblings, 0 replies; 27+ messages in thread
From: Paul Eggert @ 2016-02-07 21:34 UTC (permalink / raw)
  To: Herbert J. Skuhra; +Cc: emacs-devel

Herbert J. Skuhra wrote:
> -        || defined DARWIN_OS || defined __sun || defined __MINGW32__ \
> +        || defined __FreeBSD__ || defined DARWIN_OS || defined __sun || defined __MINGW32__ \

Thanks, I installed something along these lines into master, so builds should 
work again. This is just a short-term fix, though, as the problem will probably 
occur in other platforms. I'll look into a better fix.



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-07 15:11         ` Wolfgang Jenkner
  2016-02-07 19:14           ` Herbert J. Skuhra
@ 2016-02-07 21:35           ` Herbert J. Skuhra
  2016-02-08 19:45             ` Paul Eggert
  1 sibling, 1 reply; 27+ messages in thread
From: Herbert J. Skuhra @ 2016-02-07 21:35 UTC (permalink / raw)
  To: emacs-devel

On Sun, 07 Feb 2016 16:11:16 +0100,
Wolfgang Jenkner <wjenkner@inode.at> wrote:
> 
> On Sat, Feb 06 2016, Herbert J. Skuhra wrote:
> 
> > I can build master on FreeBSD HEAD (amd64). Should hybrid_malloc work/be
> > used on FreeBSD (i386)?
> 
> Yes.  But on HEAD (aka CURRENT, FreeBSD 11) the ports build for i386 has
> been broken (apparently with the same error message?) since long before
> the hybrid malloc patch was committed:
> 
> http://permalink.gmane.org/gmane.os.freebsd.devel.pkg-fallout/231439

On FreeBSD 11-CURRENT i386 (r295345)

- the emacs-devel port compiles with gcc only (tested with USE_GCC=5)
- even emacs-25 does not build with clang
- the breakage starts also with d6585a9 (using gcc5)

--
Herbert



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-07 21:35           ` Herbert J. Skuhra
@ 2016-02-08 19:45             ` Paul Eggert
  2016-02-08 20:14               ` Eli Zaretskii
  2016-02-08 23:01               ` Herbert J. Skuhra
  0 siblings, 2 replies; 27+ messages in thread
From: Paul Eggert @ 2016-02-08 19:45 UTC (permalink / raw)
  To: Herbert J. Skuhra, emacs-devel; +Cc: C. Baxter

[-- Attachment #1: Type: text/plain, Size: 539 bytes --]

On 02/07/2016 01:35 PM, Herbert J. Skuhra wrote:
> On FreeBSD 11-CURRENT i386 (r295345)
>
> - the emacs-devel port compiles with gcc only (tested with USE_GCC=5)
> - even emacs-25 does not build with clang
> - the breakage starts also with d6585a9 (using gcc5)

Thanks for pointing out these problems. Since this is a regression in 
emacs-25 we need to fix it there. Please try the latest version of 
emacs-25, which contains the attached patch. If this works it will be 
merged into master. It should work with clang as well as with GCC.

[-- Attachment #2: 0001-Port-to-FreeBSD-11-CURRENT-i386.patch --]
[-- Type: application/x-patch, Size: 5640 bytes --]

^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-08 19:45             ` Paul Eggert
@ 2016-02-08 20:14               ` Eli Zaretskii
  2016-02-09  8:39                 ` Paul Eggert
  2016-02-08 23:01               ` Herbert J. Skuhra
  1 sibling, 1 reply; 27+ messages in thread
From: Eli Zaretskii @ 2016-02-08 20:14 UTC (permalink / raw)
  To: Paul Eggert; +Cc: m43cap, herbert, emacs-devel

> From: Paul Eggert <eggert@cs.ucla.edu>
> Date: Mon, 8 Feb 2016 11:45:00 -0800
> Cc: "C. Baxter" <m43cap@yandex.com>
> 
> On 02/07/2016 01:35 PM, Herbert J. Skuhra wrote:
> > On FreeBSD 11-CURRENT i386 (r295345)
> >
> > - the emacs-devel port compiles with gcc only (tested with USE_GCC=5)
> > - even emacs-25 does not build with clang
> > - the breakage starts also with d6585a9 (using gcc5)
> 
> Thanks for pointing out these problems. Since this is a regression in 
> emacs-25 we need to fix it there. Please try the latest version of 
> emacs-25, which contains the attached patch. If this works it will be 
> merged into master. It should work with clang as well as with GCC.

Could you please add a commentary explaining the need for this
additional layer of lmalloc/lrealloc?  The existing commentary
explains what the new functions and macros do, but it doesn't explain
why that is needed.

Thanks.



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-08 19:45             ` Paul Eggert
  2016-02-08 20:14               ` Eli Zaretskii
@ 2016-02-08 23:01               ` Herbert J. Skuhra
  2016-02-09  1:10                 ` Paul Eggert
  1 sibling, 1 reply; 27+ messages in thread
From: Herbert J. Skuhra @ 2016-02-08 23:01 UTC (permalink / raw)
  To: Paul Eggert; +Cc: C. Baxter, emacs-devel

On Mon, 08 Feb 2016 20:45:00 +0100,
Paul Eggert <eggert@cs.ucla.edu> wrote:
> 
> On 02/07/2016 01:35 PM, Herbert J. Skuhra wrote:
> > On FreeBSD 11-CURRENT i386 (r295345)
> > 
> > - the emacs-devel port compiles with gcc only (tested with USE_GCC=5)
> > - even emacs-25 does not build with clang
> > - the breakage starts also with d6585a9 (using gcc5)
> 
> Thanks for pointing out these problems. Since this is a regression in
> emacs-25 we need to fix it there. Please try the latest version of
> emacs-25, which contains the attached patch. If this works it will be
> merged into master. It should work with clang as well as with GCC.

GCC 5 works but clang still fails. If I add

#define alignas _Alignas

to src/lisp.h the build succeeds.

----------
  CC       vm-limit.o
In file included from vm-limit.c:21:
./lisp.h:266:3: error: "alignas not defined"
# error "alignas not defined"
  ^
In file included from vm-limit.c:21:
In file included from ./lisp.h:741:
./globals.h:1046:29: error: expected parameter declarator
struct Lisp_Symbol alignas (GCALIGNMENT) lispsym[1081];
                            ^
./lisp.h:228:21: note: expanded from macro 'GCALIGNMENT'
#define GCALIGNMENT 8
                    ^
In file included from vm-limit.c:21:
In file included from ./lisp.h:741:
./globals.h:1046:29: error: expected ')'
./lisp.h:228:21: note: expanded from macro 'GCALIGNMENT'
#define GCALIGNMENT 8
                    ^
./globals.h:1046:28: note: to match this '('
struct Lisp_Symbol alignas (GCALIGNMENT) lispsym[1081];
                           ^
./globals.h:1046:42: error: expected function body after function declarator
struct Lisp_Symbol alignas (GCALIGNMENT) lispsym[1081];
                                         ^
In file included from vm-limit.c:21:
./lisp.h:858:10: error: use of undeclared identifier 'lispsym'
  return lisp_h_XSYMBOL (a);
         ^
./lisp.h:346:20: note: expanded from macro 'lisp_h_XSYMBOL'
                             + (char *) lispsym))
                                        ^
./lisp.h:1105:63: error: use of undeclared identifier 'lispsym'
  Lisp_Object a = XIL (TAG_SYMOFFSET ((char *) sym - (char *) lispsym));
                                                              ^
./lisp.h:719:53: note: expanded from macro 'TAG_SYMOFFSET'
#define TAG_SYMOFFSET(offset) TAG_PTR (Lisp_Symbol, offset)
                                                    ^
./lisp.h:714:18: note: expanded from macro 'TAG_PTR'
   ? (intptr_t) (ptr) + (tag) \
                 ^
./lisp.h:1105:63: error: use of undeclared identifier 'lispsym'
./lisp.h:719:53: note: expanded from macro 'TAG_SYMOFFSET'
#define TAG_SYMOFFSET(offset) TAG_PTR (Lisp_Symbol, offset)
                                                    ^
./lisp.h:715:66: note: expanded from macro 'TAG_PTR'
   : (EMACS_INT) (((EMACS_UINT) (tag) << VALBITS) + (uintptr_t) (ptr)))
                                                                 ^
./lisp.h:1113:28: error: use of undeclared identifier 'lispsym'
  return make_lisp_symbol (lispsym + index);
                           ^
./lisp.h:1573:22: error: use of undeclared identifier 'lispsym'
enum { NIL_IS_ZERO = XLI_BUILTIN_LISPSYM (iQnil) == 0 };
                     ^
./lisp.h:724:69: note: expanded from macro 'XLI_BUILTIN_LISPSYM'
#define XLI_BUILTIN_LISPSYM(iname) TAG_SYMOFFSET ((iname) * sizeof *lispsym)
                                                                    ^
./lisp.h:719:53: note: expanded from macro 'TAG_SYMOFFSET'
#define TAG_SYMOFFSET(offset) TAG_PTR (Lisp_Symbol, offset)
                                                    ^
./lisp.h:714:18: note: expanded from macro 'TAG_PTR'
   ? (intptr_t) (ptr) + (tag) \
                 ^
./lisp.h:1573:22: error: use of undeclared identifier 'lispsym'
./lisp.h:724:69: note: expanded from macro 'XLI_BUILTIN_LISPSYM'
#define XLI_BUILTIN_LISPSYM(iname) TAG_SYMOFFSET ((iname) * sizeof *lispsym)
                                                                    ^
./lisp.h:719:53: note: expanded from macro 'TAG_SYMOFFSET'
#define TAG_SYMOFFSET(offset) TAG_PTR (Lisp_Symbol, offset)
                                                    ^
./lisp.h:715:66: note: expanded from macro 'TAG_PTR'
   : (EMACS_INT) (((EMACS_UINT) (tag) << VALBITS) + (uintptr_t) (ptr)))
                                                                 ^
./lisp.h:1581:3: error: bit-field '_gl_verify_error_if_negative' has negative width (-1)
  verify (NIL_IS_ZERO);
  ^
../lib/verify.h:251:19: note: expanded from macro 'verify'
#define verify(R) _GL_VERIFY (R, "verify (" #R ")")
                  ^
../lib/verify.h:211:8: note: expanded from macro '_GL_VERIFY'
      [_GL_VERIFY_TRUE (R, DIAGNOSTIC)]
       ^
../lib/verify.h:176:15: note: expanded from macro '_GL_VERIFY_TRUE'
   (!!sizeof (_GL_VERIFY_TYPE (R, DIAGNOSTIC)))
              ^
../lib/verify.h:196:27: note: expanded from macro '_GL_VERIFY_TYPE'
    struct { unsigned int _gl_verify_error_if_negative: (R) ? 1 : -1; }
                          ^
11 errors generated.
Makefile:377: recipe for target 'vm-limit.o' failed
gmake[1]: *** [vm-limit.o] Error 1
gmake[1]: Leaving directory '/usr/home/herbert/source/emacs/src'
Makefile:394: recipe for target 'src' failed
gmake: *** [src] Error 2
----------

-- 
Herbert



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-08 23:01               ` Herbert J. Skuhra
@ 2016-02-09  1:10                 ` Paul Eggert
  2016-02-09 11:12                   ` Herbert J. Skuhra
  0 siblings, 1 reply; 27+ messages in thread
From: Paul Eggert @ 2016-02-09  1:10 UTC (permalink / raw)
  To: Herbert J. Skuhra; +Cc: C. Baxter, emacs-devel

On 02/08/2016 03:01 PM, Herbert J. Skuhra wrote:
> GCC 5 works but clang still fails. If I add
>
> #define alignas _Alignas
>
> to src/lisp.h the build succeeds.

Thanks, could you explain why that "#define" is helpful? On my platform 
(Fedora 23 x86-64, clang 3.7.0) clang's <stdalign.h>, which is in 
/usr/lib/clang/3.7.0/include/stdalign.h, contains this:

#ifndef __cplusplus
#define alignas _Alignas
#define alignof _Alignof
#endif

and src/lisp.h includes <stdalign.h> before using or checking alignas, 
so there should be no need to add "#define alignas _Alignas" to lisp.h.

Is there a file src/stdalign.h in your build directory? If so, why is it 
there, and why does it not define alignas?

Are you building with clang++?  That might explain the situation, but 
why would clang++ be needed?



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-08 20:14               ` Eli Zaretskii
@ 2016-02-09  8:39                 ` Paul Eggert
  2016-02-09 16:59                   ` Eli Zaretskii
  0 siblings, 1 reply; 27+ messages in thread
From: Paul Eggert @ 2016-02-09  8:39 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: m43cap, herbert, emacs-devel

Eli Zaretskii wrote:
> Could you please add a commentary explaining the need for this
> additional layer of lmalloc/lrealloc?

Sure. I gave it a shot in emacs-25 commit 
b1079c0f86c218f016a6c2e84ea402f4e175fc53 as part of a patch to improve 
portability to hosts where realloc and malloc can return pointers that are not 
multiples of 8. (I don't have access to any such hosts, which I think are rare 
nowadays though some may still exist.)



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-09  1:10                 ` Paul Eggert
@ 2016-02-09 11:12                   ` Herbert J. Skuhra
  2016-02-09 23:37                     ` Paul Eggert
  0 siblings, 1 reply; 27+ messages in thread
From: Herbert J. Skuhra @ 2016-02-09 11:12 UTC (permalink / raw)
  To: Paul Eggert; +Cc: emacs-devel

On Tue, 09 Feb 2016 02:10:09 +0100,
Paul Eggert <eggert@cs.ucla.edu> wrote:
> 
> On 02/08/2016 03:01 PM, Herbert J. Skuhra wrote:
> > GCC 5 works but clang still fails. If I add
> > 
> > #define alignas _Alignas
> > 
> > to src/lisp.h the build succeeds.
> 
> Thanks, could you explain why that "#define" is helpful? On my
> platform (Fedora 23 x86-64, clang 3.7.0) clang's <stdalign.h>, which
> is in /usr/lib/clang/3.7.0/include/stdalign.h, contains this:
> 
> #ifndef __cplusplus
> #define alignas _Alignas
> #define alignof _Alignof
> #endif
> 
> and src/lisp.h includes <stdalign.h> before using or checking alignas,
> so there should be no need to add "#define alignas _Alignas" to
> lisp.h.

Checking for working stdalign.h fails with clang:

configure:28312: clang -c -g3 -O2    conftest.c >&5
conftest.c:309:30: error: 'test_double' declared as an array with a negative size
            char test_double[ao (double) % _Alignof (double) == 0 ? 1 : -1];
                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
conftest.c:307:31: note: expanded from macro 'ao'
            # define ao(type) offsetof (struct { char a; type b; }, b)
                              ^
/usr/include/stddef.h:65:32: note: expanded from macro 'offsetof'
#define offsetof(type, member)  __offsetof(type, member)
                                ^
/usr/include/sys/cdefs.h:476:34: note: expanded from macro '__offsetof'
#define __offsetof(type, field)  __builtin_offsetof(type, field)
                                 ^
1 error generated.

If I modify the configure script as follows

--- configure.bak       2016-02-09 12:47:41.800783000 +0100
+++ configure   2016-02-09 12:48:06.230442000 +0100
@@ -28113,7 +28113,7 @@
 if ac_fn_c_try_compile "$LINENO"; then :
   gl_cv_header_working_stdalign_h=yes
 else
-  gl_cv_header_working_stdalign_h=no
+  gl_cv_header_working_stdalign_h=yes
 fi
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 fi

the build succeeds.

> Is there a file src/stdalign.h in your build directory?

Yes, lib/stdalign.h.
(Not after modifying configure.)

> If so, why is it there, and why does it not define alignas?

Sorry, I couldn't figure it out yet. 

> Are you building with clang++?

No.

--
Herbert



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-06 16:04       ` Herbert J. Skuhra
  2016-02-07 15:11         ` Wolfgang Jenkner
@ 2016-02-09 15:53         ` Wolfgang Jenkner
  2016-02-09 23:33         ` Paul Eggert
  2 siblings, 0 replies; 27+ messages in thread
From: Wolfgang Jenkner @ 2016-02-09 15:53 UTC (permalink / raw)
  To: Herbert J. Skuhra; +Cc: Paul Eggert, emacs-devel

On Sat, Feb 06 2016, Herbert J. Skuhra wrote:

> -  hybrid_malloc=yes
> +  hybrid_malloc=no
>  fi
>  
>  GMALLOC_OBJ=
>
> Now the build fails later with this error:
>
>   CCLD     temacs
> gmalloc.o: In function `calloc':
> /mnt/daten/source/emacs/src/gmalloc.c:1801: undefined reference to `gcalloc'

I think this ought to work.  Please see

http://debbugs.gnu.org/cgi/bugreport.cgi?bug=22086#139



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-09  8:39                 ` Paul Eggert
@ 2016-02-09 16:59                   ` Eli Zaretskii
  2016-02-09 17:37                     ` Paul Eggert
  0 siblings, 1 reply; 27+ messages in thread
From: Eli Zaretskii @ 2016-02-09 16:59 UTC (permalink / raw)
  To: Paul Eggert; +Cc: m43cap, herbert, emacs-devel

> Cc: herbert@mailbox.org, emacs-devel@gnu.org, m43cap@yandex.com
> From: Paul Eggert <eggert@cs.ucla.edu>
> Date: Tue, 9 Feb 2016 00:39:13 -0800
> 
> Eli Zaretskii wrote:
> > Could you please add a commentary explaining the need for this
> > additional layer of lmalloc/lrealloc?
> 
> Sure. I gave it a shot in emacs-25 commit 
> b1079c0f86c218f016a6c2e84ea402f4e175fc53 as part of a patch to improve 
> portability to hosts where realloc and malloc can return pointers that are not 
> multiples of 8. (I don't have access to any such hosts, which I think are rare 
> nowadays though some may still exist.)

Thanks.  Out of curiosity: which hosts can behave like that?

Also, why are we sure that the loops will end at some point on those
hosts?  Shouldn't we perhaps set a limit to the loop iterations, to be
sure we don't infloop there?



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-09 16:59                   ` Eli Zaretskii
@ 2016-02-09 17:37                     ` Paul Eggert
  2016-02-09 18:02                       ` Eli Zaretskii
  0 siblings, 1 reply; 27+ messages in thread
From: Paul Eggert @ 2016-02-09 17:37 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: m43cap, herbert, emacs-devel

On 02/09/2016 08:59 AM, Eli Zaretskii wrote:
> Thanks.  Out of curiosity: which hosts can behave like that?

16-bit PDP-11s running 7th Edition Unix. malloc returned only a multiple 
of 2 there. :-)

I think there were 32-bit platforms where malloc returned only a 
multiple of 4, but can't find any offhand now. For what it's worth, 
glibc documents a minimum of 8, for all glibc platforms.

> Also, why are we sure that the loops will end at some point on those
> hosts?  Shouldn't we perhaps set a limit to the loop iterations, to be
> sure we don't infloop there?

We're not absolutely sure. Certainly the C standard doesn't guarantee 
it; malloc can return a pointer that is always odd, on weird platforms 
where alignof always returns 1. I view this as almost purely theoretical 
though, due to the practical performance benefit of alignment to at 
least sizeof(double). It's conceivable (though very unlikely) that Emacs 
will infloop on some truly oddball platform that does not care about 
performance; but if that happens it'll be OK, as the infloop would 
almost surely happen during a build and the builder would then send us a 
bug report and we can deal with it then. I think adding a counter would 
complicate the code (and possibly introduce bugs, in code that's never 
really exercised) for not enough benefit.



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-09 17:37                     ` Paul Eggert
@ 2016-02-09 18:02                       ` Eli Zaretskii
  2016-02-10 19:29                         ` Colin Baxter
  0 siblings, 1 reply; 27+ messages in thread
From: Eli Zaretskii @ 2016-02-09 18:02 UTC (permalink / raw)
  To: Paul Eggert; +Cc: m43cap, herbert, emacs-devel

> Cc: herbert@mailbox.org, emacs-devel@gnu.org, m43cap@yandex.com
> From: Paul Eggert <eggert@cs.ucla.edu>
> Date: Tue, 9 Feb 2016 09:37:15 -0800
> 
> On 02/09/2016 08:59 AM, Eli Zaretskii wrote:
> > Thanks.  Out of curiosity: which hosts can behave like that?
> 
> 16-bit PDP-11s running 7th Edition Unix. malloc returned only a multiple 
> of 2 there. :-)

There's only one 16-bit platform supported by Emacs: MS-DOS.  And
there the problem doesn't exist, because the library switches the CPU
to 32-bit mode.

> > Also, why are we sure that the loops will end at some point on those
> > hosts?  Shouldn't we perhaps set a limit to the loop iterations, to be
> > sure we don't infloop there?
> 
> We're not absolutely sure. Certainly the C standard doesn't guarantee 
> it; malloc can return a pointer that is always odd, on weird platforms 
> where alignof always returns 1. I view this as almost purely theoretical 
> though, due to the practical performance benefit of alignment to at 
> least sizeof(double). It's conceivable (though very unlikely) that Emacs 
> will infloop on some truly oddball platform that does not care about 
> performance; but if that happens it'll be OK, as the infloop would 
> almost surely happen during a build and the builder would then send us a 
> bug report and we can deal with it then. I think adding a counter would 
> complicate the code (and possibly introduce bugs, in code that's never 
> really exercised) for not enough benefit.

Maybe these considerations are worth having as comments near the loop,
so that whoever bumps into the problem will know faster and better
what to do.

Thanks.



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-06 16:04       ` Herbert J. Skuhra
  2016-02-07 15:11         ` Wolfgang Jenkner
  2016-02-09 15:53         ` Wolfgang Jenkner
@ 2016-02-09 23:33         ` Paul Eggert
  2 siblings, 0 replies; 27+ messages in thread
From: Paul Eggert @ 2016-02-09 23:33 UTC (permalink / raw)
  To: Herbert J. Skuhra; +Cc: emacs-devel

On 02/06/2016 08:04 AM, Herbert J. Skuhra wrote:
> Now the build fails later with this error:
>
>    CCLD     temacs
> gmalloc.o: In function `calloc':
> /mnt/daten/source/emacs/src/gmalloc.c:1801: undefined reference to `gcalloc'

Thanks, I installed Wolfgang's patch for that, so please try 'master' 
again when you have the time. See:

http://bugs.gnu.org/22086#142



^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-09 11:12                   ` Herbert J. Skuhra
@ 2016-02-09 23:37                     ` Paul Eggert
  0 siblings, 0 replies; 27+ messages in thread
From: Paul Eggert @ 2016-02-09 23:37 UTC (permalink / raw)
  To: Herbert J. Skuhra; +Cc: Gnulib bugs, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 368 bytes --]

On 02/09/2016 03:12 AM, Herbert J. Skuhra wrote:
> Checking for working stdalign.h fails with clang

This is due to a clang bug, which exposed a typo in the Gnulib code that 
was supposed to work around the clang bug. A patch to Gnulib is 
attached, and I've installed this in Gnulib and in the emacs-25 and 
master branches of the Emacs source. Please give it a try.

[-- Attachment #2: 0001-stdalign-port-to-clang-3.7.0.patch --]
[-- Type: application/x-patch, Size: 1668 bytes --]

^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: USE_LSB_TAG not supported on this platform
  2016-02-09 18:02                       ` Eli Zaretskii
@ 2016-02-10 19:29                         ` Colin Baxter
  0 siblings, 0 replies; 27+ messages in thread
From: Colin Baxter @ 2016-02-10 19:29 UTC (permalink / raw)
  To: emacs-devel

>> Cc: herbert@mailbox.org, emacs-devel@gnu.org, m43cap@yandex.com
>> From: Paul Eggert <eggert@cs.ucla.edu>
>> Date: Tue, 9 Feb 2016 09:37:15 -0800
>> 
>> On 02/09/2016 08:59 AM, Eli Zaretskii wrote:
>> > Thanks.  Out of curiosity: which hosts can behave like that?
>> 
>> 16-bit PDP-11s running 7th Edition Unix. malloc returned only a multiple 
>> of 2 there. :-)
>
> There's only one 16-bit platform supported by Emacs: MS-DOS.  And
> there the problem doesn't exist, because the library switches the CPU
> to 32-bit mode.
>
>> > Also, why are we sure that the loops will end at some point on those
>> > hosts?  Shouldn't we perhaps set a limit to the loop iterations, to be
>> > sure we don't infloop there?
>> 
>> We're not absolutely sure. Certainly the C standard doesn't guarantee 
>> it; malloc can return a pointer that is always odd, on weird platforms 
>> where alignof always returns 1. I view this as almost purely theoretical 
>> though, due to the practical performance benefit of alignment to at 
>> least sizeof(double). It's conceivable (though very unlikely) that Emacs 
>> will infloop on some truly oddball platform that does not care about 
>> performance; but if that happens it'll be OK, as the infloop would 
>> almost surely happen during a build and the builder would then send us a 
>> bug report and we can deal with it then. I think adding a counter would 
>> complicate the code (and possibly introduce bugs, in code that's never 
>> really exercised) for not enough benefit.
>
> Maybe these considerations are worth having as comments near the loop,
> so that whoever bumps into the problem will know faster and better
> what to do.
>
> Thanks.

You might like to know that the latest git-pull builds satisfactorily
for me, giving Emacs 25.1.50.1 (i686-pc-linux-gnu, GTK+ Version 3.4.2)
of 2016-02-10

Best wishes,

Colin.




^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2016-02-10 19:29 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-04  8:32 USE_LSB_TAG not supported on this platform C. Baxter
2016-02-04 13:24 ` Stefan Monnier
2016-02-04 15:51 ` Paul Eggert
2016-02-04 22:29 ` Herbert J. Skuhra
2016-02-05  1:22   ` Paul Eggert
2016-02-05  9:45     ` Colin Baxter
2016-02-06 10:55     ` Herbert J. Skuhra
2016-02-06 16:04       ` Herbert J. Skuhra
2016-02-07 15:11         ` Wolfgang Jenkner
2016-02-07 19:14           ` Herbert J. Skuhra
2016-02-07 21:35           ` Herbert J. Skuhra
2016-02-08 19:45             ` Paul Eggert
2016-02-08 20:14               ` Eli Zaretskii
2016-02-09  8:39                 ` Paul Eggert
2016-02-09 16:59                   ` Eli Zaretskii
2016-02-09 17:37                     ` Paul Eggert
2016-02-09 18:02                       ` Eli Zaretskii
2016-02-10 19:29                         ` Colin Baxter
2016-02-08 23:01               ` Herbert J. Skuhra
2016-02-09  1:10                 ` Paul Eggert
2016-02-09 11:12                   ` Herbert J. Skuhra
2016-02-09 23:37                     ` Paul Eggert
2016-02-09 15:53         ` Wolfgang Jenkner
2016-02-09 23:33         ` Paul Eggert
2016-02-06 20:34       ` Paul Eggert
2016-02-07 16:52         ` Herbert J. Skuhra
2016-02-07 21:34           ` Paul Eggert

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).