Quoting message written on Thursday 2015-06-18 21:03:18:
> You might want to add '--enable-silent-rules', although it will not
> solve any of your problem, just make the compilation more readable.

Hi Christophe, thank you for the response.
I have used the '--enable-silent-rules' this time.

> > [...]
> > wraster.h:182: error: wrong number of arguments specified for
> > 'deprecated' attribute
> Could you please provide the answer for both commands:
>   gcc --version

$ gcc --version
gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-11)
Copyright (C) 2010 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.

>   fgrep -C1 deprecated wrlib/wraster.h

$ fgrep -C1 deprecated wrlib/wraster.h
#if __GNUC__ >= 4
#define __wrlib_deprecated(msg)  __attribute__ ((deprecated(msg)))
#elif __GNUC__ >= 3
#define __wrlib_deprecated(msg)  __attribute__ ((deprecated))
#else
#define __wrlib_deprecated(msg)
#endif
--
        unsigned int optimize_for_speed:1
            __wrlib_deprecated("Flag optimize_for_speed in RContext is not used 
anymore "
                               "and will be removed in future version, please 
do not use");
--
 */
#undef __wrlib_deprecated


> > After that I can continue compiling the source until I get to the next
> > problem: [...]
> > /usr/bin/ld: cannot open linker script file libwraster.map: No such
> > file or directory
>
> There are 2 things that would help understanding what's going on:
>  - the file 'config.log'

I have attached the config.log file (~102KiB).

>  - fgrep libwraster.map wrlib/Makefile

$ fgrep libwraster.map wrlib/Makefile
am__append_1 = -Wl,--version-script=libwraster.map
EXTRA_libwraster_la_DEPENDENCIES = libwraster.map
CLEANFILES = libwraster.map
libwraster.map: $(include_HEADERS) 
$(top_srcdir)/script/generate-mapfile-from-header.sh
                -n LIBWRASTER -v $(WRASTER_VERSION) 
$(srcdir)/$(include_HEADERS) > libwraster.map


Here is how compile looks with '--enable-silent-rules' option:

Window Maker was configured as follows:

Installation path prefix            : /usr/local/windowmaker-0.95.7
Installation path for binaries      : /usr/local/windowmaker-0.95.7/bin
Installation path for libraries     : /usr/local/windowmaker-0.95.7/lib
Installation path for WPrefs.app    : /usr/local/windowmaker-0.95.7
Supported core features:            : Animations MWMHints XDnD
Supported X extensions:             : XShape XShm Xinerama RandR
Supported graphic format libraries  : XPM PNG JPEG GIF TIFF WebP Magick 
builtin-PPM
Unsupported features                :
Antialiased text support in WINGs   : yes
Pango text layout support in WINGs  : no
Translated languages to support     : disabled

$ make
Generating config-paths.h
make  all-recursive
make[1]: Entering directory `/home/djosip/download/novi_wmaker/wmaker-crm'
Making all in wrlib
make[2]: Entering directory `/home/djosip/download/novi_wmaker/wmaker-crm/wrlib'
Making all in .
make[3]: Entering directory `/home/djosip/download/novi_wmaker/wmaker-crm/wrlib'
  CC     raster.lo
In file included from raster.c:29:
wraster.h:182: error: wrong number of arguments specified for 'deprecated' 
attribute
make[3]: *** [raster.lo] Error 1
make[3]: Leaving directory `/home/djosip/download/novi_wmaker/wmaker-crm/wrlib'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/djosip/download/novi_wmaker/wmaker-crm/wrlib'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/djosip/download/novi_wmaker/wmaker-crm'
make: *** [all] Error 2


At that point I need to modify the file wrlib/wraster.h in order to continue
with the compile.
In line 181 of the file wrlib/wraster.h I simply change these lines:

        unsigned int optimize_for_speed:1
            __wrlib_deprecated("Flag optimize_for_speed in RContext is not used 
anymore "
                               "and will be removed in future version, please 
do not use");

with these lines:
        unsigned int optimize_for_speed:1;
/*            __wrlib_deprecated("Flag optimize_for_speed in RContext is not 
used anymore "
                               "and will be removed in future version, please 
do not use");*/


And then I can continue with the compile until the next error:

$ make
make  all-recursive
make[1]: Entering directory `/home/djosip/download/novi_wmaker/wmaker-crm'
Making all in wrlib
make[2]: Entering directory `/home/djosip/download/novi_wmaker/wmaker-crm/wrlib'
Making all in .
make[3]: Entering directory `/home/djosip/download/novi_wmaker/wmaker-crm/wrlib'
  CC     raster.lo
  CC     alpha_combine.lo
  CC     draw.lo
  CC     color.lo
  CC     load.lo
  CC     save.lo
  CC     gradient.lo
  CC     xpixmap.lo
  CC     convert.lo
  CC     context.lo
  CC     misc.lo
  CC     scale.lo
  CC     rotate.lo
  CC     flip.lo
  CC     convolve.lo
  CC     save_xpm.lo
  CC     xutil.lo
  CC     load_ppm.lo
  CC     load_gif.lo
  CC     load_jpeg.lo
  CC     load_png.lo
  CC     load_tiff.lo
  CC     load_xpm.lo
  CC     load_webp.lo
  CC     load_magick.lo
  CCLD   libwraster.la
/usr/bin/ld: cannot open linker script file libwraster.map: No such file or 
directory
collect2: ld returned 1 exit status
make[3]: *** [libwraster.la] Error 1
make[3]: Leaving directory `/home/djosip/download/novi_wmaker/wmaker-crm/wrlib'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/djosip/download/novi_wmaker/wmaker-crm/wrlib'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/djosip/download/novi_wmaker/wmaker-crm'
make: *** [all] Error 2


Obviously libwraster.map file doesn't get created and I don't see why.
If I copy libwraster.map from older windowmaker source directories then the
source would compile but I prefer to get it created during compile time as it
probably should be. Otherwise I cannot be sure that some bugs regarding widget
elements drawing I would like to report are actually bugs and not the result of
an invalid compile.


Please let me know if there is anything else I could do to help understanding 
this
issue.

Several months ago when I have compiled windowmaker I had no problems compiling
windowmaker. It might be that some update changed the behavior of my system
because if I do "make distclean" and manually remove libwraster.map file (it is
not removed by the "make distclean" command then I cannot compile even the code
several months old which was previously successfully compiled.


Regards

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

It was created by WindowMaker configure 0.95.6, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ./configure --prefix=/usr/local/windowmaker-0.95.7 --libdir=/usr/local/windowmaker-0.95.7/lib --enable-modelock --enable-randr --enable-xinerama --enable-usermenu --enable-silent-rules

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

hostname = libria
uname -m = x86_64
uname -r = 2.6.32-431.29.2.el6.x86_64
uname -s = Linux
uname -v = #1 SMP Tue Sep 9 21:36:05 UTC 2014

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

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

PATH: /usr/lib64/qt-3.3/bin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/local/sbin
PATH: /usr/sbin
PATH: /sbin
PATH: /usr/libexec/sdcc
PATH: /home/djosip/bin
PATH: /sbin
PATH: /usr/sbin
PATH: /usr/local/java/bin
PATH: /usr/local/java/jre/bin
PATH: /usr/libexec/sdcc
PATH: /home/djosip/bin
PATH: /sbin
PATH: /usr/sbin
PATH: /usr/local/java/bin
PATH: /usr/local/java/jre/bin


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

configure:2612: checking for a BSD-compatible install
configure:2680: result: /usr/bin/install -c
configure:2691: checking whether build environment is sane
configure:2741: result: yes
configure:2882: checking for a thread-safe mkdir -p
configure:2921: result: /bin/mkdir -p
configure:2934: checking for gawk
configure:2950: found /usr/bin/gawk
configure:2961: result: gawk
configure:2972: checking whether make sets $(MAKE)
configure:2994: result: yes
configure:3157: checking for gcc
configure:3173: found /usr/bin/gcc
configure:3184: result: gcc
configure:3413: checking for C compiler version
configure:3422: gcc --version >&5
gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-11)
Copyright (C) 2010 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:3433: $? = 0
configure:3422: gcc -v >&5
Using built-in specs.
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux
Thread model: posix
gcc version 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC) 
configure:3433: $? = 0
configure:3422: gcc -V >&5
gcc: '-V' option must have argument
configure:3433: $? = 1
configure:3422: gcc -qversion >&5
gcc: unrecognized option '-qversion'
gcc: no input files
configure:3433: $? = 1
configure:3453: checking whether the C compiler works
configure:3475: gcc    conftest.c  >&5
configure:3479: $? = 0
configure:3527: result: yes
configure:3530: checking for C compiler default output file name
configure:3532: result: a.out
configure:3538: checking for suffix of executables
configure:3545: gcc -o conftest    conftest.c  >&5
configure:3549: $? = 0
configure:3571: result: 
configure:3593: checking whether we are cross compiling
configure:3601: gcc -o conftest    conftest.c  >&5
configure:3605: $? = 0
configure:3612: ./conftest
configure:3616: $? = 0
configure:3631: result: no
configure:3636: checking for suffix of object files
configure:3658: gcc -c   conftest.c >&5
configure:3662: $? = 0
configure:3683: result: o
configure:3687: checking whether we are using the GNU C compiler
configure:3706: gcc -c   conftest.c >&5
configure:3706: $? = 0
configure:3715: result: yes
configure:3724: checking whether gcc accepts -g
configure:3744: gcc -c -g  conftest.c >&5
configure:3744: $? = 0
configure:3785: result: yes
configure:3802: checking for gcc option to accept ISO C89
configure:3865: gcc  -c -g -O2  conftest.c >&5
configure:3865: $? = 0
configure:3878: result: none needed
configure:3909: checking for style of include used by make
configure:3937: result: GNU
configure:3962: checking dependency style of gcc
configure:4072: result: gcc3
configure:4088: checking for C11 standard support
configure:4112: gcc -c -g -O2   conftest.c >&5
conftest.c: In function 'main':
conftest.c:16: error: 'fail_because_stdc_version_is_older_than_C11' undeclared (first use in this function)
conftest.c:16: error: (Each undeclared identifier is reported only once
conftest.c:16: error: for each function it appears in.)
configure:4112: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| #if __STDC_VERSION__ < 201112L
| fail_because_stdc_version_is_older_than_C11;
| #endif
| 
|   ;
|   return 0;
| }
configure:4112: gcc -c -g -O2 -std=c11  conftest.c >&5
cc1: error: unrecognized command line option "-std=c11"
configure:4112: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| #if __STDC_VERSION__ < 201112L
| fail_because_stdc_version_is_older_than_C11;
| #endif
| 
|   ;
|   return 0;
| }
configure:4119: result: no
configure:4128: checking whether ln -s works
configure:4132: result: yes
configure:4144: checking how to run the C preprocessor
configure:4175: gcc -E  conftest.c
configure:4175: $? = 0
configure:4189: gcc -E  conftest.c
conftest.c:11:28: error: ac_nonexistent.h: No such file or directory
configure:4189: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4214: result: gcc -E
configure:4234: gcc -E  conftest.c
configure:4234: $? = 0
configure:4248: gcc -E  conftest.c
conftest.c:11:28: error: ac_nonexistent.h: No such file or directory
configure:4248: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4277: checking for grep that handles long lines and -e
configure:4335: result: /bin/grep
configure:4340: checking for egrep
configure:4402: result: /bin/grep -E
configure:4408: checking whether gcc needs -traditional
configure:4442: result: no
configure:4478: checking build system type
configure:4492: result: x86_64-unknown-linux-gnu
configure:4512: checking host system type
configure:4525: result: x86_64-unknown-linux-gnu
configure:4545: checking for a sed that does not truncate output
configure:4609: result: /bin/sed
configure:4627: checking for fgrep
configure:4689: result: /bin/grep -F
configure:4724: checking for ld used by gcc
configure:4791: result: /usr/bin/ld
configure:4798: checking if the linker (/usr/bin/ld) is GNU ld
configure:4813: result: yes
configure:4825: checking for BSD- or MS-compatible name lister (nm)
configure:4874: result: /usr/bin/nm -B
configure:4992: checking the name lister (/usr/bin/nm -B) interface
configure:4999: gcc -c -g -O2  conftest.c >&5
configure:5002: /usr/bin/nm -B "conftest.o"
configure:5005: output
0000000000000000 B some_variable
configure:5012: result: BSD nm
configure:5016: checking the maximum length of command line arguments
configure:5136: result: 1966080
configure:5153: checking whether the shell understands some XSI constructs
configure:5163: result: yes
configure:5167: checking whether the shell understands "+="
configure:5173: result: yes
configure:5208: checking for /usr/bin/ld option to reload object files
configure:5215: result: -r
configure:5284: checking for objdump
configure:5300: found /usr/bin/objdump
configure:5311: result: objdump
configure:5343: checking how to recognize dependent libraries
configure:5539: result: pass_all
configure:5599: checking for ar
configure:5615: found /usr/bin/ar
configure:5626: result: ar
configure:5704: checking for strip
configure:5720: found /usr/bin/strip
configure:5731: result: strip
configure:5803: checking for ranlib
configure:5819: found /usr/bin/ranlib
configure:5830: result: ranlib
configure:5920: checking command to parse /usr/bin/nm -B output from gcc object
configure:6038: gcc -c -g -O2  conftest.c >&5
configure:6041: $? = 0
configure:6045: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:6048: $? = 0
configure:6102: gcc -o conftest -g -O2   conftest.c conftstm.o >&5
configure:6105: $? = 0
configure:6143: result: ok
configure:6238: gcc -c -g -O2  conftest.c >&5
configure:6241: $? = 0
configure:6946: checking for ANSI C header files
configure:6966: gcc -c -g -O2  conftest.c >&5
configure:6966: $? = 0
configure:7039: gcc -o conftest -g -O2   conftest.c  >&5
configure:7039: $? = 0
configure:7039: ./conftest
configure:7039: $? = 0
configure:7050: result: yes
configure:7063: checking for sys/types.h
configure:7063: gcc -c -g -O2  conftest.c >&5
configure:7063: $? = 0
configure:7063: result: yes
configure:7063: checking for sys/stat.h
configure:7063: gcc -c -g -O2  conftest.c >&5
configure:7063: $? = 0
configure:7063: result: yes
configure:7063: checking for stdlib.h
configure:7063: gcc -c -g -O2  conftest.c >&5
configure:7063: $? = 0
configure:7063: result: yes
configure:7063: checking for string.h
configure:7063: gcc -c -g -O2  conftest.c >&5
configure:7063: $? = 0
configure:7063: result: yes
configure:7063: checking for memory.h
configure:7063: gcc -c -g -O2  conftest.c >&5
configure:7063: $? = 0
configure:7063: result: yes
configure:7063: checking for strings.h
configure:7063: gcc -c -g -O2  conftest.c >&5
configure:7063: $? = 0
configure:7063: result: yes
configure:7063: checking for inttypes.h
configure:7063: gcc -c -g -O2  conftest.c >&5
configure:7063: $? = 0
configure:7063: result: yes
configure:7063: checking for stdint.h
configure:7063: gcc -c -g -O2  conftest.c >&5
configure:7063: $? = 0
configure:7063: result: yes
configure:7063: checking for unistd.h
configure:7063: gcc -c -g -O2  conftest.c >&5
configure:7063: $? = 0
configure:7063: result: yes
configure:7077: checking for dlfcn.h
configure:7077: gcc -c -g -O2  conftest.c >&5
configure:7077: $? = 0
configure:7077: result: yes
configure:7261: checking for objdir
configure:7276: result: .libs
configure:7572: checking if gcc supports -fno-rtti -fno-exceptions
configure:7590: gcc -c -g -O2  -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
configure:7594: $? = 0
configure:7607: result: no
configure:7627: checking for gcc option to produce PIC
configure:7899: result: -fPIC -DPIC
configure:7911: checking if gcc PIC flag -fPIC -DPIC works
configure:7929: gcc -c -g -O2  -fPIC -DPIC -DPIC conftest.c >&5
configure:7933: $? = 0
configure:7946: result: yes
configure:7970: checking if gcc static flag -static works
configure:7998: result: no
configure:8013: checking if gcc supports -c -o file.o
configure:8034: gcc -c -g -O2  -o out/conftest2.o conftest.c >&5
configure:8038: $? = 0
configure:8060: result: yes
configure:8068: checking if gcc supports -c -o file.o
configure:8115: result: yes
configure:8148: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:9134: result: yes
configure:9171: checking whether -lc should be explicitly linked in
configure:9176: gcc -c -g -O2  conftest.c >&5
configure:9179: $? = 0
configure:9194: gcc -shared conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep  -lc  \>/dev/null 2\>\&1
configure:9197: $? = 0
configure:9209: result: no
configure:9373: checking dynamic linker characteristics
configure:9806: gcc -o conftest -g -O2   -Wl,-rpath -Wl,/foo conftest.c  >&5
configure:9806: $? = 0
configure:10027: result: GNU/Linux ld.so
configure:10129: checking how to hardcode library paths into programs
configure:10154: result: immediate
configure:10674: checking whether stripping libraries is possible
configure:10679: result: yes
configure:10714: checking if libtool supports shared libraries
configure:10716: result: yes
configure:10719: checking whether to build shared libraries
configure:10740: result: yes
configure:10743: checking whether to build static libraries
configure:10747: result: yes
configure:10875: checking CFLAGS for gcc -Wall
configure:10902: gcc -c -g -O2 -pedantic -Werror  -Wall  -DNDEBUG conftest.c >&5
configure:10902: $? = 0
configure:10916: result: -Wall
configure:10928: : CFLAGS="$CFLAGS $ax_cv_cflags_gcc_option__Wall"
configure:10931: $? = 0
configure:10938: checking CFLAGS for gcc -Wextra -Wno-sign-compare
configure:10965: gcc -c -g -O2 -Wall -pedantic -Werror  -Wextra -Wno-sign-compare  -DNDEBUG conftest.c >&5
configure:10965: $? = 0
configure:10979: result: -Wextra -Wno-sign-compare
configure:10991: : CFLAGS="$CFLAGS $ax_cv_cflags_gcc_option__Wextra__Wno_sign_compare"
configure:10994: $? = 0
configure:11030: checking CFLAGS for -Wtrampolines
configure:11019: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Werror -Werror=trampolines  -DNDEBUG conftest.c >&5
cc1: error: -Werror=trampolines: No option -Wtrampolines
configure:11019: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:11019: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Werror -Wtrampolines  -DNDEBUG conftest.c >&5
cc1: error: unrecognized command line option "-Wtrampolines"
configure:11019: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:11042: result: no, unknown
configure:12149: checking CFLAGS for gcc -Wno-deprecated
configure:12176: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -pedantic -Werror  -Wno-deprecated  -DNDEBUG conftest.c >&5
configure:12176: $? = 0
configure:12190: result: -Wno-deprecated
configure:12202: : CFLAGS="$CFLAGS $ax_cv_cflags_gcc_option__Wno_deprecated"
configure:12205: $? = 0
configure:12212: checking CFLAGS for gcc -Wno-deprecated-declarations
configure:12239: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -pedantic -Werror  -Wno-deprecated-declarations  -DNDEBUG conftest.c >&5
configure:12239: $? = 0
configure:12253: result: -Wno-deprecated-declarations
configure:12265: : CFLAGS="$CFLAGS $ax_cv_cflags_gcc_option__Wno_deprecated_declarations"
configure:12268: $? = 0
configure:12279: checking if compiler supports nested functions
configure:12306: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG conftest.c >&5
configure:12306: $? = 0
configure:12313: result: yes
configure:12437: checking if compiler needs -Werror to reject unknown flags
configure:12453: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations -Werror -Wunknown-warning-option -Wsizeof-array-argument  -DNDEBUG conftest.c >&5
cc1: error: unrecognized command line option "-Wunknown-warning-option"
cc1: error: unrecognized command line option "-Wsizeof-array-argument"
configure:12453: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| int foo(void);
| int
| main ()
| {
| foo()
|   ;
|   return 0;
| }
configure:12458: result: no
configure:12524: checking for the pthreads library -lpthreads
configure:12562: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations    -DNDEBUG  conftest.c -lpthreads  >&5
/usr/bin/ld: cannot find -lpthreads
collect2: ld returned 1 exit status
configure:12562: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <pthread.h>
|                         static void routine(void *a) { a = 0; }
|                         static void *start_routine(void *a) { return a; }
| int
| main ()
| {
| pthread_t th; pthread_attr_t attr;
|                         pthread_create(&th, 0, start_routine, 0);
|                         pthread_join(th, 0);
|                         pthread_attr_init(&attr);
|                         pthread_cleanup_push(routine, 0);
|                         pthread_cleanup_pop(0) /* ; */
|   ;
|   return 0;
| }
configure:12571: result: no
configure:12469: checking whether pthreads work without any flags
configure:12562: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations    -DNDEBUG  conftest.c   >&5
/tmp/ccG5w667.o: In function `main':
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:30: undefined reference to `pthread_create'
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:31: undefined reference to `pthread_join'
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:33: undefined reference to `__pthread_register_cancel'
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:34: undefined reference to `__pthread_unregister_cancel'
collect2: ld returned 1 exit status
configure:12562: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <pthread.h>
|                         static void routine(void *a) { a = 0; }
|                         static void *start_routine(void *a) { return a; }
| int
| main ()
| {
| pthread_t th; pthread_attr_t attr;
|                         pthread_create(&th, 0, start_routine, 0);
|                         pthread_join(th, 0);
|                         pthread_attr_init(&attr);
|                         pthread_cleanup_push(routine, 0);
|                         pthread_cleanup_pop(0) /* ; */
|   ;
|   return 0;
| }
configure:12571: result: no
configure:12474: checking whether pthreads work with -Kthread
configure:12562: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations -Kthread   -DNDEBUG  conftest.c   >&5
gcc: unrecognized option '-Kthread'
/tmp/ccwpJm3c.o: In function `main':
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:30: undefined reference to `pthread_create'
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:31: undefined reference to `pthread_join'
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:33: undefined reference to `__pthread_register_cancel'
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:34: undefined reference to `__pthread_unregister_cancel'
collect2: ld returned 1 exit status
configure:12562: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <pthread.h>
|                         static void routine(void *a) { a = 0; }
|                         static void *start_routine(void *a) { return a; }
| int
| main ()
| {
| pthread_t th; pthread_attr_t attr;
|                         pthread_create(&th, 0, start_routine, 0);
|                         pthread_join(th, 0);
|                         pthread_attr_init(&attr);
|                         pthread_cleanup_push(routine, 0);
|                         pthread_cleanup_pop(0) /* ; */
|   ;
|   return 0;
| }
configure:12571: result: no
configure:12474: checking whether pthreads work with -kthread
configure:12562: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations -kthread   -DNDEBUG  conftest.c   >&5
gcc: unrecognized option '-kthread'
/tmp/ccKtd8qh.o: In function `main':
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:30: undefined reference to `pthread_create'
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:31: undefined reference to `pthread_join'
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:33: undefined reference to `__pthread_register_cancel'
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:34: undefined reference to `__pthread_unregister_cancel'
collect2: ld returned 1 exit status
configure:12562: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <pthread.h>
|                         static void routine(void *a) { a = 0; }
|                         static void *start_routine(void *a) { return a; }
| int
| main ()
| {
| pthread_t th; pthread_attr_t attr;
|                         pthread_create(&th, 0, start_routine, 0);
|                         pthread_join(th, 0);
|                         pthread_attr_init(&attr);
|                         pthread_cleanup_push(routine, 0);
|                         pthread_cleanup_pop(0) /* ; */
|   ;
|   return 0;
| }
configure:12571: result: no
configure:12524: checking for the pthreads library -llthread
configure:12562: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations    -DNDEBUG  conftest.c -llthread  >&5
/usr/bin/ld: cannot find -llthread
collect2: ld returned 1 exit status
configure:12562: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <pthread.h>
|                         static void routine(void *a) { a = 0; }
|                         static void *start_routine(void *a) { return a; }
| int
| main ()
| {
| pthread_t th; pthread_attr_t attr;
|                         pthread_create(&th, 0, start_routine, 0);
|                         pthread_join(th, 0);
|                         pthread_attr_init(&attr);
|                         pthread_cleanup_push(routine, 0);
|                         pthread_cleanup_pop(0) /* ; */
|   ;
|   return 0;
| }
configure:12571: result: no
configure:12474: checking whether pthreads work with -pthread
configure:12562: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations -pthread   -DNDEBUG  conftest.c   >&5
configure:12562: $? = 0
configure:12571: result: yes
configure:12590: checking for joinable pthread attribute
configure:12605: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations -pthread  -DNDEBUG  conftest.c   >&5
configure:12605: $? = 0
configure:12611: result: PTHREAD_CREATE_JOINABLE
configure:12621: checking if more special flags are required for pthreads
configure:12636: result: no
configure:12642: checking for PTHREAD_PRIO_INHERIT
configure:12659: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations -pthread  -DNDEBUG  conftest.c   >&5
conftest.c: In function 'main':
conftest.c:27: error: 'PTHREAD_PRIO_INHERIT' undeclared (first use in this function)
conftest.c:27: error: (Each undeclared identifier is reported only once
conftest.c:27: error: for each function it appears in.)
conftest.c:27: warning: unused variable 'i'
configure:12659: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <pthread.h>
| int
| main ()
| {
| int i = PTHREAD_PRIO_INHERIT;
|   ;
|   return 0;
| }
configure:12668: result: no
configure:13077: checking for working memcmp
configure:13120: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
configure:13120: $? = 0
configure:13120: ./conftest
configure:13120: $? = 0
configure:13130: result: yes
configure:13141: checking for vprintf
configure:13141: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
conftest.c:49: warning: conflicting types for built-in function 'vprintf'
configure:13141: $? = 0
configure:13141: result: yes
configure:13147: checking for _doprnt
configure:13147: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
/tmp/ccJ8JBPJ.o: In function `main':
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:61: undefined reference to `_doprnt'
collect2: ld returned 1 exit status
configure:13147: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| /* end confdefs.h.  */
| /* Define _doprnt to an innocuous variant, in case <limits.h> declares _doprnt.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define _doprnt innocuous__doprnt
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char _doprnt (); 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 _doprnt
| 
| /* 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 _doprnt ();
| /* 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__doprnt || defined __stub____doprnt
| choke me
| #endif
| 
| int
| main ()
| {
| return _doprnt ();
|   ;
|   return 0;
| }
configure:13147: result: no
configure:13226: checking for secure_getenv
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -Werror=implicit-function-declaration  -DNDEBUG -D_XOPEN_SOURCE=600 conftest.c >&5
conftest.c: In function 'main':
conftest.c:33: error: implicit declaration of function 'secure_getenv'
conftest.c:33: warning: assignment makes pointer from integer without a cast
configure:13216: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| /* end confdefs.h.  */
| #include <stdlib.h>
| 
| const char *h;
| int
| main ()
| {
|   h = secure_getenv("HOME");
|   ;
|   return 0;
| }
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations -D_GNU_SOURCE -Werror=implicit-function-declaration  -DNDEBUG -D_XOPEN_SOURCE=600 conftest.c >&5
conftest.c: In function 'main':
conftest.c:33: error: implicit declaration of function 'secure_getenv'
conftest.c:33: warning: assignment makes pointer from integer without a cast
configure:13216: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| /* end confdefs.h.  */
| #include <stdlib.h>
| 
| const char *h;
| int
| main ()
| {
|   h = secure_getenv("HOME");
|   ;
|   return 0;
| }
configure:13241: result: no
configure:13263: checking for gethostname
configure:13263: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
configure:13263: $? = 0
configure:13263: result: yes
configure:13263: checking for select
configure:13263: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
configure:13263: $? = 0
configure:13263: result: yes
configure:13263: checking for poll
configure:13263: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
configure:13263: $? = 0
configure:13263: result: yes
configure:13263: checking for strcasecmp
configure:13263: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
conftest.c:53: warning: conflicting types for built-in function 'strcasecmp'
configure:13263: $? = 0
configure:13263: result: yes
configure:13263: checking for strncasecmp
configure:13263: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
conftest.c:54: warning: conflicting types for built-in function 'strncasecmp'
configure:13263: $? = 0
configure:13263: result: yes
configure:13263: checking for setsid
configure:13263: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
configure:13263: $? = 0
configure:13263: result: yes
configure:13263: checking for mallinfo
configure:13263: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
configure:13263: $? = 0
configure:13263: result: yes
configure:13263: checking for mkstemp
configure:13263: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
configure:13263: $? = 0
configure:13263: result: yes
configure:13263: checking for sysconf
configure:13263: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
configure:13263: $? = 0
configure:13263: result: yes
configure:13272: checking for library containing strerror
configure:13303: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
configure:13303: $? = 0
configure:13320: result: none required
configure:13329: checking for library containing nanosleep
configure:13360: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
configure:13360: $? = 0
configure:13377: result: none required
configure:13388: checking for O_NOFOLLOW
configure:13415: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600  conftest.c  >&5
conftest.c: In function 'main':
conftest.c:44: error: 'O_NOFOLLOW' undeclared (first use in this function)
conftest.c:44: error: (Each undeclared identifier is reported only once
conftest.c:44: error: for each function it appears in.)
configure:13415: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/stat.h>
| #include <fcntl.h>
| int
| main ()
| {
|   int fd;
| 
|   fd = open("/dev/null", O_RDONLY | O_NOFOLLOW);
|   return fd;
|   ;
|   return 0;
| }
configure:13415: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  >&5
configure:13415: $? = 0
configure:13429: result: -D_POSIX_C_SOURCE=200809L
configure:13460: checking for library containing strlcat
configure:13492: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  >&5
/tmp/ccnjIPet.o: In function `main':
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:47: undefined reference to `strlcat'
collect2: ld returned 1 exit status
configure:13492: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 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 strlcat ();
| int
| main ()
| {
| return strlcat ();
|   ;
|   return 0;
| }
configure:13492: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c -lbsd
  >&5
/tmp/cccbxRJu.o: In function `main':
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:47: undefined reference to `strlcat'
collect2: ld returned 1 exit status
configure:13492: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 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 strlcat ();
| int
| main ()
| {
| return strlcat ();
|   ;
|   return 0;
| }
configure:13509: result: no
configure:13519: checking for library containing strlcpy
configure:13551: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  >&5
/tmp/cc4fyNbA.o: In function `main':
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:47: undefined reference to `strlcpy'
collect2: ld returned 1 exit status
configure:13551: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 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 strlcpy ();
| int
| main ()
| {
| return strlcpy ();
|   ;
|   return 0;
| }
configure:13551: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c -lbsd
  >&5
/tmp/cc2YATTB.o: In function `main':
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:47: undefined reference to `strlcpy'
collect2: ld returned 1 exit status
configure:13551: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 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 strlcpy ();
| int
| main ()
| {
| return strlcpy ();
|   ;
|   return 0;
| }
configure:13568: result: no
configure:13662: checking sys/inotify.h usability
configure:13662: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13662: $? = 0
configure:13662: result: yes
configure:13662: checking sys/inotify.h presence
configure:13662: gcc -E  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c
configure:13662: $? = 0
configure:13662: result: yes
configure:13662: checking for sys/inotify.h
configure:13662: result: yes
configure:13678: checking syslog.h usability
configure:13678: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13678: $? = 0
configure:13678: result: yes
configure:13678: checking syslog.h presence
configure:13678: gcc -E  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c
configure:13678: $? = 0
configure:13678: result: yes
configure:13678: checking for syslog.h
configure:13678: result: yes
configure:13692: checking for sys/wait.h that is POSIX.1 compatible
configure:13718: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13718: $? = 0
configure:13725: result: yes
configure:13733: checking whether time.h and sys/time.h may both be included
configure:13753: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13753: $? = 0
configure:13760: result: yes
configure:13772: checking fcntl.h usability
configure:13772: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking fcntl.h presence
configure:13772: gcc -E  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking for fcntl.h
configure:13772: result: yes
configure:13772: checking limits.h usability
configure:13772: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking limits.h presence
configure:13772: gcc -E  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking for limits.h
configure:13772: result: yes
configure:13772: checking sys/ioctl.h usability
configure:13772: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking sys/ioctl.h presence
configure:13772: gcc -E  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking for sys/ioctl.h
configure:13772: result: yes
configure:13772: checking libintl.h usability
configure:13772: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking libintl.h presence
configure:13772: gcc -E  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking for libintl.h
configure:13772: result: yes
configure:13772: checking poll.h usability
configure:13772: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking poll.h presence
configure:13772: gcc -E  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking for poll.h
configure:13772: result: yes
configure:13772: checking malloc.h usability
configure:13772: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking malloc.h presence
configure:13772: gcc -E  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking for malloc.h
configure:13772: result: yes
configure:13772: checking ctype.h usability
configure:13772: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking ctype.h presence
configure:13772: gcc -E  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c
configure:13772: $? = 0
configure:13772: result: yes
configure:13772: checking for ctype.h
configure:13772: result: yes
configure:13772: checking for string.h
configure:13772: result: yes
configure:13772: checking for strings.h
configure:13772: result: yes
configure:13784: checking for an ANSI C-conforming const
configure:13850: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13850: $? = 0
configure:13857: result: yes
configure:13865: checking for inline
configure:13881: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13881: $? = 0
configure:13889: result: inline
configure:13942: checking for noreturn
configure:13969: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
conftest.c:52:25: error: stdnoreturn.h: No such file or directory
conftest.c:55: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'int'
conftest.c:58: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'int'
conftest.c: In function 'main':
conftest.c:65: warning: implicit declaration of function 'test_function'
configure:13969: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 1
| #define HAVE_SYS_INOTIFY_H 1
| #define HAVE_INOTIFY 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYSLOG 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_POLL_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_CTYPE_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| /* end confdefs.h.  */
| #include <unistd.h>
| #include <stdnoreturn.h>
| 
| /* Attribute in the prototype of the function */
| noreturn int test_function(void);
| 
| /* Attribute on the function itself */
| noreturn int test_function(void) {
|   _exit(1);
| }
| 
| int
| main ()
| {
|   test_function();
|   ;
|   return 0;
| }
configure:13932: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
conftest.c: In function 'test_function':
conftest.c:57: warning: function declared 'noreturn' has a 'return' statement
conftest.c:58: warning: 'noreturn' function does return
configure:13932: $? = 0
configure:13980: result: __attribute__((noreturn))
configure:13999: checking for size_t
configure:13999: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13999: $? = 0
configure:13999: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
conftest.c: In function 'main':
conftest.c:88: error: expected expression before ')' token
configure:13999: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 1
| #define HAVE_SYS_INOTIFY_H 1
| #define HAVE_INOTIFY 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYSLOG 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_POLL_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_CTYPE_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define noreturn __attribute__((noreturn))
| /* 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 ((size_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:13999: result: yes
configure:14010: checking for pid_t
configure:14010: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:14010: $? = 0
configure:14010: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
conftest.c: In function 'main':
conftest.c:88: error: expected expression before ')' token
configure:14010: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 1
| #define HAVE_SYS_INOTIFY_H 1
| #define HAVE_INOTIFY 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYSLOG 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_POLL_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_CTYPE_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define noreturn __attribute__((noreturn))
| /* 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:14010: result: yes
configure:14021: checking return type of signal handlers
configure:14039: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
conftest.c: In function 'main':
conftest.c:58: error: void value not ignored as it ought to be
configure:14039: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 1
| #define HAVE_SYS_INOTIFY_H 1
| #define HAVE_INOTIFY 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYSLOG 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_POLL_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_CTYPE_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define noreturn __attribute__((noreturn))
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <signal.h>
| 
| int
| main ()
| {
| return *(signal (0, 0)) (0) == 1;
|   ;
|   return 0;
| }
configure:14046: result: void
configure:14057: checking for pkg-config
configure:14073: found /usr/bin/pkg-config
configure:14084: result: pkg-config
configure:14302: checking for xgettext
configure:14318: found /usr/bin/xgettext
configure:14329: result: xgettext
configure:14388: checking for X
configure:14527: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c -lX11  >&5
configure:14527: $? = 0
configure:14577: result: libraries , headers 
configure:14676: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c   -lX11 >&5
configure:14676: $? = 0
configure:14774: checking for gethostbyname
configure:14774: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  >&5
configure:14774: $? = 0
configure:14774: result: yes
configure:14871: checking for connect
configure:14871: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  >&5
configure:14871: $? = 0
configure:14871: result: yes
configure:14920: checking for remove
configure:14920: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  >&5
configure:14920: $? = 0
configure:14920: result: yes
configure:14969: checking for shmat
configure:14969: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  >&5
configure:14969: $? = 0
configure:14969: result: yes
configure:15027: checking for IceConnectionNumber in -lICE
configure:15052: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c -lICE   >&5
configure:15052: $? = 0
configure:15061: result: yes
configure:15102: checking for _Xsetlocale in -lX11
configure:15127: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c -lX11  -lX11   >&5
/tmp/ccubRfU5.o: In function `main':
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:64: undefined reference to `_Xsetlocale'
collect2: ld returned 1 exit status
configure:15127: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 1
| #define HAVE_SYS_INOTIFY_H 1
| #define HAVE_INOTIFY 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYSLOG 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_POLL_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_CTYPE_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define noreturn __attribute__((noreturn))
| #define RETSIGTYPE void
| /* 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 _Xsetlocale ();
| int
| main ()
| {
| return _Xsetlocale ();
|   ;
|   return 0;
| }
configure:15136: result: no
configure:15153: checking for XInternAtoms in -lX11
configure:15178: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c -lX11  -lX11   >&5
configure:15178: $? = 0
configure:15187: result: yes
configure:15197: checking for XConvertCase in -lX11
configure:15222: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c -lX11  -lX11   >&5
configure:15222: $? = 0
configure:15231: result: yes
configure:15326: checking for XShape support library
configure:13183: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  -lX11  -lXext >&5
configure:13183: $? = 0
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:15351: result: -lXext
configure:15391: checking for XShm support library
configure:13183: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  -lX11  -lXext -lXext >&5
configure:13183: $? = 0
configure:15422: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:15422: $? = 0
configure:15441: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:15441: $? = 0
configure:15451: result: -lXext
configure:15475: checking for Xmu library
configure:13183: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  -lXmu >&5
configure:13183: $? = 0
configure:15507: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:15507: $? = 0
configure:15515: result: -lXmu
configure:15537: checking for Xinerama support library
configure:13183: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c   -lX11  -lXext -lXinerama >&5
configure:13183: $? = 0
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:15573: result: -lXinerama 
configure:15614: checking for RandR support library
configure:13183: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  -lX11  -lXext -lXrandr >&5
configure:13183: $? = 0
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:15639: result: -lXrandr
configure:15663: checking math.h usability
configure:15663: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:15663: $? = 0
configure:15663: result: yes
configure:15663: checking math.h presence
configure:15663: gcc -E  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c
configure:15663: $? = 0
configure:15663: result: yes
configure:15663: checking for math.h
configure:15663: result: yes
configure:15671: checking for atan
configure:15671: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  >&5
conftest.c:84: warning: conflicting types for built-in function 'atan'
/tmp/cc27w1AM.o: In function `main':
/home/djosip/download/novi_wmaker/wmaker-crm/conftest.c:95: undefined reference to `atan'
collect2: ld returned 1 exit status
configure:15671: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 1
| #define HAVE_SYS_INOTIFY_H 1
| #define HAVE_INOTIFY 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYSLOG 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_POLL_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_CTYPE_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define noreturn __attribute__((noreturn))
| #define RETSIGTYPE void
| #define HAVE_XINTERNATOMS 1
| #define HAVE_XCONVERTCASE 1
| #define XKB_MODELOCK 1
| #define USE_DOCK_XDND 1
| #define USE_XSHAPE 1
| #define USE_XSHM 1
| #define USE_XINERAMA 1
| #define USE_RANDR 1
| /* end confdefs.h.  */
| /* Define atan to an innocuous variant, in case <limits.h> declares atan.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define atan innocuous_atan
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char atan (); 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 atan
| 
| /* 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 atan ();
| /* 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_atan || defined __stub___atan
| choke me
| #endif
| 
| int
| main ()
| {
| return atan ();
|   ;
|   return 0;
| }
configure:15671: result: no
configure:15675: checking for atan in -lm
configure:15700: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c -lm   >&5
conftest.c:68: warning: conflicting types for built-in function 'atan'
configure:15700: $? = 0
configure:15709: result: yes
configure:15720: checking if M_PI is defined in math.h
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:15734: result: yes
configure:15748: checking if sinf+cosf are defined in math.h
configure:15779: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  -lm >&5
configure:15779: $? = 0
configure:15788: result: yes
configure:15801: checking for fontconfig library
configure:15808: result: found
configure:15861: checking for the Xft2 library
configure:15867: result: found
configure:15889: checking whether libXft is at least version 2.1.0
configure:15912: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/usr/include/freetype2   -I${includedir}   conftest.c  >&5
configure:15912: $? = 0
configure:15922: result: yes
configure:15989: checking for XPM support library
configure:13183: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c   -lX11  -lXext -lXpm >&5
configure:13183: $? = 0
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:16019: result: -lXpm
configure:16058: checking libexif/exif-data.h usability
configure:16058: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
conftest.c:97:31: error: libexif/exif-data.h: No such file or directory
configure:16058: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 1
| #define HAVE_SYS_INOTIFY_H 1
| #define HAVE_INOTIFY 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYSLOG 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_POLL_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_CTYPE_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define noreturn __attribute__((noreturn))
| #define RETSIGTYPE void
| #define HAVE_XINTERNATOMS 1
| #define HAVE_XCONVERTCASE 1
| #define XKB_MODELOCK 1
| #define USE_DOCK_XDND 1
| #define USE_XSHAPE 1
| #define USE_XSHM 1
| #define USE_XINERAMA 1
| #define USE_RANDR 1
| #define WM_PI (M_PI)
| #define HAVE_FLOAT_MATHFUNC 1
| #define USE_XPM 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 <libexif/exif-data.h>
configure:16058: result: no
configure:16058: checking libexif/exif-data.h presence
configure:16058: gcc -E  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c
conftest.c:64:31: error: libexif/exif-data.h: No such file or directory
configure:16058: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 1
| #define HAVE_SYS_INOTIFY_H 1
| #define HAVE_INOTIFY 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYSLOG 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_POLL_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_CTYPE_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define noreturn __attribute__((noreturn))
| #define RETSIGTYPE void
| #define HAVE_XINTERNATOMS 1
| #define HAVE_XCONVERTCASE 1
| #define XKB_MODELOCK 1
| #define USE_DOCK_XDND 1
| #define USE_XSHAPE 1
| #define USE_XSHM 1
| #define USE_XINERAMA 1
| #define USE_RANDR 1
| #define WM_PI (M_PI)
| #define HAVE_FLOAT_MATHFUNC 1
| #define USE_XPM 1
| /* end confdefs.h.  */
| #include <libexif/exif-data.h>
configure:16058: result: no
configure:16058: checking for libexif/exif-data.h
configure:16058: result: no
configure:16111: WARNING: header for EXIF library not found
configure:16140: checking for PNG support library
configure:13183: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c   -lX11  -lXext -lpng >&5
configure:13183: $? = 0
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:16172: result: -lpng
configure:16219: checking for JPEG support library
configure:13183: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c   -lX11  -lXext -ljpeg >&5
configure:13183: $? = 0
configure:16249: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:16249: $? = 0
configure:16263: result: -ljpeg
configure:16310: checking for GIF support library
configure:13183: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c   -lX11  -lXext -lgif >&5
configure:13183: $? = 0
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:16362: result: -lgif version:4
configure:16411: checking for TIFF support library
configure:13183: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c   -lX11  -lXext -ltiff >&5
configure:13183: $? = 0
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations   -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:16447: result: -ltiff
configure:16493: checking for WebP support library
configure:16512: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  -lwebp >&5
configure:16512: $? = 0
configure:16522: result: -lwebp
configure:16567: checking for Magick support library
configure:13183: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  conftest.c  -lMagickWand -lMagickCore   >&5
configure:13183: $? = 0
configure:13216: gcc -c -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations -fopenmp -I/usr/include/ImageMagick    -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L conftest.c >&5
configure:13216: $? = 0
configure:16632: result: -fopenmp -I/usr/include/ImageMagick   % -lMagickWand -lMagickCore  
configure:16701: checking for stdlib.h
configure:16701: result: yes
configure:16791: checking if LD -Wl,--version-script works
configure:16811: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  -Wl,--version-script=conftest.map conftest.c  >&5
/usr/bin/ld:conftest.map:2: syntax error in VERSION script
collect2: ld returned 1 exit status
configure:16811: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "WindowMaker"
| #define PACKAGE_TARNAME "WindowMaker"
| #define PACKAGE_VERSION "0.95.6"
| #define PACKAGE_STRING "WindowMaker 0.95.6"
| #define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
| #define PACKAGE_URL "http://www.windowmaker.org/";
| #define PACKAGE "WindowMaker"
| #define VERSION "0.95.6"
| #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 HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_PTHREAD 1
| #define USE_ANIMATIONS 1
| #define USE_MWM_HINTS 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_SELECT 1
| #define HAVE_POLL 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_SETSID 1
| #define HAVE_MALLINFO 1
| #define HAVE_MKSTEMP 1
| #define HAVE_SYSCONF 1
| #define HAVE_SYS_INOTIFY_H 1
| #define HAVE_INOTIFY 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYSLOG 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_POLL_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_CTYPE_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define noreturn __attribute__((noreturn))
| #define RETSIGTYPE void
| #define HAVE_XINTERNATOMS 1
| #define HAVE_XCONVERTCASE 1
| #define XKB_MODELOCK 1
| #define USE_DOCK_XDND 1
| #define USE_XSHAPE 1
| #define USE_XSHM 1
| #define USE_XINERAMA 1
| #define USE_RANDR 1
| #define WM_PI (M_PI)
| #define HAVE_FLOAT_MATHFUNC 1
| #define USE_XPM 1
| #define USE_PNG 1
| #define USE_JPEG 1
| #define USE_GIF 4
| #define USE_TIFF 1
| #define USE_WEBP 1
| #define USE_MAGICK 1
| #define HAVE_STDLIB_H 1
| #define USER_MENU 1
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:16834: gcc -o conftest -g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations  -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L  -Wl,--version-script=conftest.map conftest.c  >&5
configure:16834: $? = 0
configure:16845: result: yes
configure:17102: creating ./config.status

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

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

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

on libria

config.status:1232: creating Makefile
config.status:1232: creating wrlib/Makefile
config.status:1232: creating wrlib/tests/Makefile
config.status:1232: creating WINGs/Makefile
config.status:1232: creating WINGs/WINGs/Makefile
config.status:1232: creating WINGs/po/Makefile
config.status:1232: creating WINGs/Documentation/Makefile
config.status:1232: creating WINGs/Resources/Makefile
config.status:1232: creating WINGs/Extras/Makefile
config.status:1232: creating WINGs/Examples/Makefile
config.status:1232: creating WINGs/Tests/Makefile
config.status:1232: creating src/Makefile
config.status:1232: creating src/wconfig.h
config.status:1232: creating po/Makefile
config.status:1232: creating doc/Makefile
config.status:1232: creating doc/build/Makefile
config.status:1232: creating doc/sk/Makefile
config.status:1232: creating doc/cs/Makefile
config.status:1232: creating doc/ru/Makefile
config.status:1232: creating WindowMaker/Makefile
config.status:1232: creating WindowMaker/Backgrounds/Makefile
config.status:1232: creating WindowMaker/Defaults/Makefile
config.status:1232: creating WindowMaker/IconSets/Makefile
config.status:1232: creating WindowMaker/Icons/Makefile
config.status:1232: creating WindowMaker/Pixmaps/Makefile
config.status:1232: creating WindowMaker/Styles/Makefile
config.status:1232: creating WindowMaker/Themes/Makefile
config.status:1232: creating WPrefs.app/Makefile
config.status:1232: creating WPrefs.app/po/Makefile
config.status:1232: creating WPrefs.app/tiff/Makefile
config.status:1232: creating WPrefs.app/xpm/Makefile
config.status:1232: creating util/Makefile
config.status:1232: creating util/po/Makefile
config.status:1232: creating wmlib/Makefile
config.status:1232: creating test/Makefile
config.status:1232: creating config.h
config.status:1461: executing depfiles commands
config.status:1461: executing libtool commands

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

ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_inline=inline
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_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_LINGUAS_set=
ac_cv_env_LINGUAS_value=
ac_cv_env_XMKMF_set=
ac_cv_env_XMKMF_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__doprnt=no
ac_cv_func_atan=no
ac_cv_func_connect=yes
ac_cv_func_gethostbyname=yes
ac_cv_func_gethostname=yes
ac_cv_func_mallinfo=yes
ac_cv_func_memcmp_working=yes
ac_cv_func_mkstemp=yes
ac_cv_func_poll=yes
ac_cv_func_remove=yes
ac_cv_func_select=yes
ac_cv_func_setsid=yes
ac_cv_func_shmat=yes
ac_cv_func_strcasecmp=yes
ac_cv_func_strncasecmp=yes
ac_cv_func_sysconf=yes
ac_cv_func_vprintf=yes
ac_cv_have_x='have_x=yes	ac_x_includes='\'''\''	ac_x_libraries='\'''\'''
ac_cv_header_ctype_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_libexif_exif_data_h=no
ac_cv_header_libintl_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_malloc_h=yes
ac_cv_header_math_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_poll_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_inotify_h=yes
ac_cv_header_sys_ioctl_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_syslog_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_host=x86_64-unknown-linux-gnu
ac_cv_lib_ICE_IceConnectionNumber=yes
ac_cv_lib_X11_XConvertCase=yes
ac_cv_lib_X11_XInternAtoms=yes
ac_cv_lib_X11__Xsetlocale=no
ac_cv_lib_m_atan=yes
ac_cv_lib_xft_version_ok=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GREP=/bin/grep
ac_cv_path_SED=/bin/sed
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_PKGCONFIG=pkg-config
ac_cv_prog_XGETTEXT=xgettext
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_gcc_traditional=no
ac_cv_prog_make_make_set=yes
ac_cv_search_nanosleep='none required'
ac_cv_search_strerror='none required'
ac_cv_search_strlcat=no
ac_cv_search_strlcpy=no
ac_cv_type_pid_t=yes
ac_cv_type_size_t=yes
am_cv_CC_dependencies_compiler_type=gcc3
ax_cv_PTHREAD_PRIO_INHERIT=no
ax_cv_cflags_gcc_option__Wall=-Wall
ax_cv_cflags_gcc_option__Wextra__Wno_sign_compare='-Wextra -Wno-sign-compare'
ax_cv_cflags_gcc_option__Wno_deprecated=-Wno-deprecated
ax_cv_cflags_gcc_option__Wno_deprecated_declarations=-Wno-deprecated-declarations
gl_cv_sys_ld_version_script=yes
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=no
lt_cv_prog_gnu_ld=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/  {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"lib\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_max_cmd_len=1966080
wm_cv_c_check_compopt_Werror_trampolines='no, unknown'
wm_cv_c_noreturn='__attribute__((noreturn))'
wm_cv_func_open_nofollow=-D_POSIX_C_SOURCE=200809L
wm_cv_func_secure_getenv=no
wm_cv_imgfmt_gif='-lgif version:4'
wm_cv_imgfmt_webp=-lwebp
wm_cv_imgfmt_xpm=-lXpm
wm_cv_libchk_jpeg=-ljpeg
wm_cv_libchk_magick='-fopenmp -I/usr/include/ImageMagick   % -lMagickWand -lMagickCore  '
wm_cv_libchk_magick_cflags='-fopenmp -I/usr/include/ImageMagick  '
wm_cv_libchk_magick_libs='-lMagickWand -lMagickCore  '
wm_cv_libchk_png=-lpng
wm_cv_libchk_randr=-lXrandr
wm_cv_libchk_tiff=-ltiff
wm_cv_libchk_xshape=-lXext
wm_cv_libchk_xshm=-lXext
wm_cv_libm_pi=yes
wm_cv_libm_sinf=yes
wm_cv_prog_cc_c11=no
wm_cv_prog_cc_nestedfunc=yes
wm_cv_type_signal=void
wm_cv_xext_xinerama='-lXinerama '
wm_cv_xext_xmu=-lXmu

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

ACLOCAL='${SHELL} /home/djosip/download/novi_wmaker/wmaker-crm/missing --run aclocal-1.11'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/djosip/download/novi_wmaker/wmaker-crm/missing --run tar'
AM_BACKSLASH='\'
AM_DEFAULT_VERBOSITY='0'
AR='ar'
AUTOCONF='${SHELL} /home/djosip/download/novi_wmaker/wmaker-crm/missing --run autoconf'
AUTOHEADER='${SHELL} /home/djosip/download/novi_wmaker/wmaker-crm/missing --run autoheader'
AUTOMAKE='${SHELL} /home/djosip/download/novi_wmaker/wmaker-crm/missing --run automake-1.11'
AWK='gawk'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2 -Wall -Wextra -Wno-sign-compare -Wno-deprecated -Wno-deprecated-declarations'
CPP='gcc -E'
CPPFLAGS=' -DNDEBUG -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DSYMUTIL=''
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
FCLIBS='-lfontconfig  '
FGREP='/bin/grep -F'
GFXLIBS=' -lXpm -lpng -ljpeg -lgif -ltiff -lwebp'
GREP='/bin/grep'
HAVE_LD_VERSION_SCRIPT_FALSE='#'
HAVE_LD_VERSION_SCRIPT_TRUE=''
HAVE_XGETTEXT_FALSE='#'
HAVE_XGETTEXT_TRUE=''
HEADER_SEARCH_PATH='-I${includedir}  '
ICONEXT='tiff'
ICON_EXT_TIFF_FALSE='#'
ICON_EXT_TIFF_TRUE=''
ICON_EXT_XPM_FALSE=''
ICON_EXT_XPM_TRUE='#'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
INTLIBS=''
LD='/usr/bin/ld -m elf_x86_64'
LDFLAGS=''
LIBBSD=''
LIBEXIF=''
LIBM='-lm'
LIBOBJS=''
LIBRARY_SEARCH_PATH='-L${libdir} '
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIBXINERAMA='-lXinerama '
LIBXMU='-lXmu'
LIBXRANDR=' -lXrandr'
LINGUAS=''
LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
MAGICKFLAGS='-fopenmp -I/usr/include/ImageMagick'
MAGICKLIBS='-lMagickWand -lMagickCore  '
MAKEINFO='${SHELL} /home/djosip/download/novi_wmaker/wmaker-crm/missing --run makeinfo'
MANLANGDIRS=''
MKDIR_P='/bin/mkdir -p'
MSGFMT=''
NM='/usr/bin/nm -B'
NMEDIT=''
OBJDUMP='objdump'
OBJEXT='o'
OTOOL64=''
OTOOL=''
PACKAGE='WindowMaker'
PACKAGE_BUGREPORT='wmaker-dev@lists.windowmaker.org'
PACKAGE_NAME='WindowMaker'
PACKAGE_STRING='WindowMaker 0.95.6'
PACKAGE_TARNAME='WindowMaker'
PACKAGE_URL='http://www.windowmaker.org/'
PACKAGE_VERSION='0.95.6'
PANGOLIBS=''
PATH_SEPARATOR=':'
PKGCONFIG='pkg-config'
PTHREAD_CC='gcc'
PTHREAD_CFLAGS='-pthread'
PTHREAD_LIBS=''
RANLIB='ranlib'
SED='/bin/sed'
SET_MAKE=''
SHELL='/bin/sh'
STRIP='strip'
USE_DOCK_XDND_FALSE='#'
USE_DOCK_XDND_TRUE=''
USE_GIF_FALSE='#'
USE_GIF_TRUE=''
USE_JPEG_FALSE='#'
USE_JPEG_TRUE=''
USE_LCOV_FALSE=''
USE_LCOV_TRUE='#'
USE_MAGICK_FALSE='#'
USE_MAGICK_TRUE=''
USE_MWM_HINTS_FALSE='#'
USE_MWM_HINTS_TRUE=''
USE_NESTED_FUNC_FALSE='#'
USE_NESTED_FUNC_TRUE=''
USE_PNG_FALSE='#'
USE_PNG_TRUE=''
USE_TIFF_FALSE='#'
USE_TIFF_TRUE=''
USE_WEBP_FALSE='#'
USE_WEBP_TRUE=''
USE_XPM_FALSE='#'
USE_XPM_TRUE=''
UTILMOFILES=''
VERSION='0.95.6'
WINGSMOFILES=''
WINGS_VERSION='4:0:1'
WMAKERMOFILES=''
WM_OSDEP_BSD_FALSE=''
WM_OSDEP_BSD_TRUE='#'
WM_OSDEP_DARWIN_FALSE=''
WM_OSDEP_DARWIN_TRUE='#'
WM_OSDEP_GENERIC_FALSE=''
WM_OSDEP_GENERIC_TRUE='#'
WM_OSDEP_LINUX_FALSE='#'
WM_OSDEP_LINUX_TRUE=''
WPREFSMOFILES=''
WRASTER_VERSION='5:0:0'
WUTIL_VERSION='5:0:0'
XCFLAGS=''
XFTCONFIG='pkg-config xft'
XFTFLAGS='-I/usr/include/freetype2  '
XFTLIBS='-lXft  '
XGETTEXT='xgettext'
XLFLAGS=''
XLIBS='-lX11  -lXext'
XMKMF=''
X_CFLAGS=''
X_EXTRA_LIBS=''
X_LIBRARY_PATH=''
X_LIBS=''
X_PRE_LIBS=' -lSM -lICE'
ac_ct_CC='gcc'
ac_ct_DUMPBIN=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
ax_pthread_config=''
bindir='${exec_prefix}/bin'
build='x86_64-unknown-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='unknown'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host='x86_64-unknown-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='unknown'
htmldir='${docdir}'
inc_search_path='-I${includedir}  '
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/djosip/download/novi_wmaker/wmaker-crm/install-sh'
lcov_output_directory=''
lib_search_path='-L${libdir} '
libdir='/usr/local/windowmaker-0.95.7/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
lt_ECHO='echo'
mandir='${datarootdir}/man'
mkdir_p='/bin/mkdir -p'
oldincludedir='/usr/include'
pdfdir='${docdir}'
pixmapdir='${datadir}/pixmaps'
prefix='/usr/local/windowmaker-0.95.7'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
wprefs_bindir='${exec_prefix}/bin'
wprefs_datadir='${datarootdir}/WPrefs'

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

/* confdefs.h */
#define PACKAGE_NAME "WindowMaker"
#define PACKAGE_TARNAME "WindowMaker"
#define PACKAGE_VERSION "0.95.6"
#define PACKAGE_STRING "WindowMaker 0.95.6"
#define PACKAGE_BUGREPORT "wmaker-dev@lists.windowmaker.org"
#define PACKAGE_URL "http://www.windowmaker.org/";
#define PACKAGE "WindowMaker"
#define VERSION "0.95.6"
#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 HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#define HAVE_PTHREAD 1
#define USE_ANIMATIONS 1
#define USE_MWM_HINTS 1
#define HAVE_VPRINTF 1
#define HAVE_GETHOSTNAME 1
#define HAVE_SELECT 1
#define HAVE_POLL 1
#define HAVE_STRCASECMP 1
#define HAVE_STRNCASECMP 1
#define HAVE_SETSID 1
#define HAVE_MALLINFO 1
#define HAVE_MKSTEMP 1
#define HAVE_SYSCONF 1
#define HAVE_SYS_INOTIFY_H 1
#define HAVE_INOTIFY 1
#define HAVE_SYSLOG_H 1
#define HAVE_SYSLOG 1
#define HAVE_SYS_WAIT_H 1
#define TIME_WITH_SYS_TIME 1
#define HAVE_FCNTL_H 1
#define HAVE_LIMITS_H 1
#define HAVE_SYS_IOCTL_H 1
#define HAVE_LIBINTL_H 1
#define HAVE_POLL_H 1
#define HAVE_MALLOC_H 1
#define HAVE_CTYPE_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define noreturn __attribute__((noreturn))
#define RETSIGTYPE void
#define HAVE_XINTERNATOMS 1
#define HAVE_XCONVERTCASE 1
#define XKB_MODELOCK 1
#define USE_DOCK_XDND 1
#define USE_XSHAPE 1
#define USE_XSHM 1
#define USE_XINERAMA 1
#define USE_RANDR 1
#define WM_PI (M_PI)
#define HAVE_FLOAT_MATHFUNC 1
#define USE_XPM 1
#define USE_PNG 1
#define USE_JPEG 1
#define USE_GIF 4
#define USE_TIFF 1
#define USE_WEBP 1
#define USE_MAGICK 1
#define HAVE_STDLIB_H 1
#define USER_MENU 1

configure: exit 0

Reply via email to