instalação do QGIS

1. instalação do QGIS

Perfil removido
removido

(usa Nenhuma)

Enviado em 02/02/2018 - 22:16h

1- É só roda o mapping_tools_v2.7_install.sh?

2- Quais são os principais problemas?

3- Não tem conflito de pacote que esta na pasta mapping_tools_v2.7 com os instalados no sistema?


Slackware
QGIS estável

Pacotes em http://qgis.gotslack.org


https://qgis.org/pt_BR/site/forusers/download.html



#!/bin/bash
#
#####################################################
#
# removes qgis, all dependencies and user 'postgres'
# from a Slackware 14.2 installation
#
# only useful for testing/development
#
# Jim Hammack
# Archerfish Technologies, LLC
# 30 November 2017
#
VERSION=2.7
####################################################
#
# must be run by root
#
if [ `whoami` != "root" ]; then
echo 'this script must be run by root'
exit 1
fi

echo ' '
echo 'Mapping Tools Remove, Version '$VERSION
echo ' '

#
# remove pyspatialite using easy_install
# http://peak.telecommunity.com/DevCenter/EasyInstall#uninstalling-packages
# this must be done from the dir containing the SlackBuild - is this true???
#
ARCH=`uname -m`
LIBDIRSUFFIX=""
if [ "$ARCH" = "x86_64" ]; then
LIBDIRSUFFIX="64"
fi
CWD=`pwd`
cd ../pyspatialite
/usr/bin/easy_install -mxN pyspatialite
rm -vf /usr/lib$LIBDIRSUFFIX/python2.7/site-packages/pyspatialite*.egg
cd $CWD
#
# stop postgres so we can remove the user
#
echo ' '
/etc/rc.d/rc.postgresql stop
echo ' '
echo 'postgres stopped'
echo ' '
/usr/sbin/userdel -fr postgres
echo ' '
echo ' user >postgres< removed'
echo ' '
#
# now remove the packages
#
# No! included in Slackware 14.2 #/sbin/removepkg pysetuptools
/sbin/removepkg proj
/sbin/removepkg qca
/sbin/removepkg qca-ossl
#/sbin/removepkg pyspatialite
# No! now part of Slackware 14.2 #/sbin/removepkg libtiff
/sbin/removepkg freexl
/sbin/removepkg geos
/sbin/removepkg netcdf
/sbin/removepkg hdf5
/sbin/removepkg qwt
/sbin/removepkg unixODBC
/sbin/removepkg gsl
/sbin/removepkg readosm
/sbin/removepkg spatialite-tools
/sbin/removepkg libspatialite
/sbin/removepkg libspatialindex
/sbin/removepkg txt2tags
/sbin/removepkg OpenBLAS
/sbin/removepkg lapack
/sbin/removepkg numpy
/sbin/removepkg libecwj2
/sbin/removepkg libNCSEcw
/sbin/removepkg FileGDB_API
/sbin/removepkg MrSID_DSDK
/sbin/removepkg postgresql
/sbin/removepkg psycopg2
/sbin/removepkg gdal
/sbin/removepkg postgis
/sbin/removepkg qgis
/sbin/removepkg fcgi
/sbin/removepkg mapserver
/sbin/removepkg osm2pgsql
# the following packages are needed for some common plugins
/sbin/removepkg tornado
/sbin/removepkg pyparsing
/sbin/removepkg matplotlib
echo ' '
echo 'All packages removed, now deleting the tarballs'
echo ' '
#rm -fv /tmp/pysetuptools*t?z
rm -fv /tmp/freexl*t?z
rm -fv /tmp/gdal*t?z
rm -fv /tmp/geos*t?z
rm -fv /tmp/gsl*t?z
rm -fv /tmp/hdf5*t?z
rm -fv /tmp/readosm*t?z
rm -fv /tmp/spatialit-tools*t?z
rm -fv /tmp/libstatialindex*t?z
rm -fv /tmp/libspatialite*t?z
#rm -fv /tmp/libtiff*t?z
rm -fv /tmp/netcdf*t?z
rm -fv /tmp/postgis*t?z
rm -fv /tmp/postgresql*t?z
rm -fv /tmp/proj*t?z
rm -fv /tmp/psycopg2*t?z
rm -fv /tmp/qwt*t?z
rm -fv /tmp/txt2tags*t?z
rm -fv /tmp/unixODBC*t?z
rm -fv /tmp/qgis*t?z
rm -fv /tmp/numpy*t?z
rm -fv /tmp/jah/libecwj2*t?z
rm -fv /tmp/jah/libNCSEcw*t?z
rm -fv /tmp/jah/FileGDB_API*t?z
rm -fv /tmp/jah/MrSID_SDK*t?z
rm -fv /tmp/jah/fcgi*t?z
rm -fv /tmp//jah/mapserver*t?z
rm -fv /tmp/osm2pgsql*t?z
rm -fv /tmp/qca*t?z
rm -fv /tmp/openBLAS*t?z
rm -fv /tmp/lapack*t?z
rm -fv /tmp/tornado*t?z
rm -fv /tmp/pyparsing*t?z
rm -fv /tmp/matplotlib*t?z
echo ' '
echo 'Complete'
echo ' '









#!/bin/bash
#
########################################################
#
# builds qgis 2.18.14 and all dependencies on Slackware 14.2
#
# Jim Hammack
# Archerfish Technologies, LLC
# 30 November 2017
#
VERSION=2.7
#########################################################

# must be run by root
if [ `whoami` != "root" ]; then
echo 'this script must be run by root'
exit 1
fi

#
# get system architecture
#
ARCH=`uname -m`

# bail on error
set -e

#
# remove previous installations
#
cd CLEAN
./mapping_tools_remove.sh
#
# build and install the packages
# order is important!
#
cd ../proj
./proj.SlackBuild
/sbin/installpkg /tmp/proj-4.9.2-$ARCH-1_SBo.tgz
#
cd ../qca
./qca.SlackBuild
/sbin/installpkg /tmp/qca-2.0.3-$ARCH-1.txz
#
cd ../qca-ossl
./qca-ossl.SlackBuild
/sbin/installpkg /tmp/qca-ossl-2.0.0_beta3-$ARCH-2.txz
#
# Slackware 14.2 includes libtiff 4.0.6
#cd ../libtiff
#./libtiff.SlackBuild
#/sbin/installpkg /tmp/libtiff-4.0.3-$ARCH-3wsr.txz
#
cd ../freexl
./freexl.SlackBuild
/sbin/installpkg /tmp/freexl-1.0.0d-$ARCH-1_SBo.tgz
#
cd ../geos
./geos.SlackBuild
/sbin/installpkg /tmp/geos-3.5.0-$ARCH-1_SBo.tgz
#
# Slackware 14.2 includes python-setuptools-22.0.5
#cd ../pysetuptools
#./pysetuptools.SlackBuild
#/sbin/installpkg /tmp/pysetuptools-0.6c11-x86_64-1_SBo.tgz
#
cd ../pyspatialite
# need CFLAGS to get around pyspatialite installation bug
# see: https://github.com/lokkju/pyspatialite/issues/18
export CFLAGS="-I/usr/include"
./pyspatialite.SlackBuild
#
cd ../netcdf
./netcdf.SlackBuild
/sbin/installpkg /tmp/netcdf-4.1.1-$ARCH-1_SBo.tgz
#
cd ../hdf5
./hdf5.SlackBuild
/sbin/installpkg /tmp/hdf5-1.8.15_patch1-$ARCH-1_SBo.tgz
#
cd ../qwt
./qwt.SlackBuild
/sbin/installpkg /tmp/qwt-6.0.1-$ARCH-1-sl.txz
#
cd ../unixODBC
./unixODBC.SlackBuild
/sbin/installpkg /tmp/unixODBC-2.3.1-$ARCH-1_SBo.tgz
#
cd ../gsl
./gsl.SlackBuild
/sbin/installpkg /tmp/gsl-1.15-$ARCH-1_SBo.tgz
#
cd ../readosm
./readosm.SlackBuild
/sbin/installpkg /tmp/readosm-1.0.0d-$ARCH-1_SBo.tgz
#
cd ../libspatialite
./libspatialite.SlackBuild
/sbin/installpkg /tmp/libspatialite-4.2.0-$ARCH-1_SBo.tgz
#
cd ../spatialite-tools
./spatialite-tools.SlackBuild
/sbin/installpkg /tmp/spatialite-tools-4.2.0-$ARCH-1_SBo.tgz
#
cd ../libspatialindex
./libspatialindex.SlackBuild
/sbin/installpkg /tmp/libspatialindex-1.7.1-$ARCH-2_SBo.tgz
#
cd ../txt2tags
./txt2tags.SlackBuild
/sbin/installpkg /tmp/txt2tags-2.5-noarch-1_SBo.tgz
#
cd ../OpenBLAS
./OpenBLAS.SlackBuild
/sbin/installpkg /tmp/OpenBLAS-0.2.11-$ARCH-1_SBo.tgz
#
cd ../lapack
./lapack.SlackBuild
/sbin/installpkg /tmp/lapack-3.6.0-$ARCH-1_SBo.tgz
#
cd ../numpy
./numpy.SlackBuild
/sbin/installpkg /tmp/numpy-1.7.0-$ARCH-1_SBo.tgz
#
cd ../erdas_ecw
./libNCSEcw.SlackBuild
/sbin/installpkg /tmp/jah/libNCSEcw-5.2.1-$ARCH-2_jah.txz
#
cd ../FileGDB
./FileGDB_API.SlackBuild
/sbin/installpkg /tmp/jah/FileGDB_API-1.4-$ARCH-3_jah.txz
#
cd ../mrsid
./MrSID_DSDK.SlackBuild
/sbin/installpkg /tmp/jah/MrSID_DSDK-9.5.1.4427-$ARCH-4_jah.txz
#
cd ../postgresql
#
# add the postgres user before building postgresql
#
/usr/sbin/groupadd -f -g 209 postgres
/usr/sbin/useradd -u 209 -g 209 -m -d /var/lib/pgsql postgres
./postgresql.SlackBuild
/sbin/installpkg /tmp/postgresql-9.2.1-$ARCH-1_SBo.tgz
#
cd ../psycopg2
./psycopg2.SlackBuild
/sbin/installpkg /tmp/psycopg2-2.5.1-$ARCH-1_SBo.tgz
#
cd ../gdal
./gdal.SlackBuild
/sbin/installpkg /tmp/jah/gdal-2.2.1-$ARCH-1_jah.txz
#
# upgrade GDAL Python bindings from 1.11.4 to 2.2.1
easy_install GDAL
#
cd ../postgis
./postgis.SlackBuild
/sbin/installpkg /tmp/postgis-2.2.2-$ARCH-2_SBo.tgz
#
cd ../fcgi
./fcgi.SlackBuild
/sbin/installpkg /tmp/fcgi-2.4.0-$ARCH-2_SBo.tgz
#
cd ../qgis
./qgis.SlackBuild
/sbin/installpkg /tmp/jah/qgis-2.18.14-$ARCH-1_jah.txz
#
cd ../mapserver
./mapserver.SlackBuild
/sbin/installpkg /tmp/jah/mapserver-6.4.3-$ARCH-1_jah.txz
#
cd ../osm2pgsql
./osm2pgsql.SlackBuild
/sbin/installpkg /tmp/osm2pgsql-0.81.0-$ARCH-1_jah_SBo.tgz
#
cd ../pyparsing
./pyparsing.SlackBuild
/sbin/installpkg /tmp/pyparsing-2.1.8-x86_64-1_SBo.tgz
#
cd ../tornado
./tornado.SlackBuild
/sbin/installpkg /tmp/tornado-4.4.2-x86_64-1_SBo.tgz
#
cd ../matplotlib
./matplotlib.SlackBuild
/sbin/installpkg /tmp/matplotlib-1.4.2-x86_64-1_SBo.tgz
#
echo ' '
echo 'Mapping Tools Version' $VERSION 'installation complete'
echo ' '




  


2. Re: instalação do QGIS

Perfil removido
removido

(usa Nenhuma)

Enviado em 02/02/2018 - 23:08h


$ tar -Jxvf mapping_tools_v2.7.txz

$ cd mapping_tools_v2.7

# chmod +x mapping_tools_v2.6_install.sh

# ./mapping_tools_v2.6_install.sh


getarch_2nd.c:12:35: note: each undeclared identifier is reported only once for each function it appears in
getarch_2nd.c:13:35: error: ‘SGEMM_DEFAULT_UNROLL_N’ undeclared (first use in this function)
printf("SGEMM_UNROLL_N=%d\n", SGEMM_DEFAULT_UNROLL_N);
^
getarch_2nd.c:14:35: error: ‘DGEMM_DEFAULT_UNROLL_M’ undeclared (first use in this function)
printf("DGEMM_UNROLL_M=%d\n", DGEMM_DEFAULT_UNROLL_M);
^
getarch_2nd.c:15:35: error: ‘DGEMM_DEFAULT_UNROLL_N’ undeclared (first use in this function)
printf("DGEMM_UNROLL_N=%d\n", DGEMM_DEFAULT_UNROLL_N);
^
getarch_2nd.c:19:35: error: ‘CGEMM_DEFAULT_UNROLL_M’ undeclared (first use in this function)
printf("CGEMM_UNROLL_M=%d\n", CGEMM_DEFAULT_UNROLL_M);
^
getarch_2nd.c:20:35: error: ‘CGEMM_DEFAULT_UNROLL_N’ undeclared (first use in this function)
printf("CGEMM_UNROLL_N=%d\n", CGEMM_DEFAULT_UNROLL_N);
^
getarch_2nd.c:21:35: error: ‘ZGEMM_DEFAULT_UNROLL_M’ undeclared (first use in this function)
printf("ZGEMM_UNROLL_M=%d\n", ZGEMM_DEFAULT_UNROLL_M);
^
getarch_2nd.c:22:35: error: ‘ZGEMM_DEFAULT_UNROLL_N’ undeclared (first use in this function)
printf("ZGEMM_UNROLL_N=%d\n", ZGEMM_DEFAULT_UNROLL_N);
^
getarch_2nd.c:67:50: error: ‘SGEMM_DEFAULT_Q’ undeclared (first use in this function)
printf("#define SLOCAL_BUFFER_SIZE\t%ld\n", (SGEMM_DEFAULT_Q * SGEMM_DEFAULT_UNROLL_N * 4 * 1 * sizeof(float)));
^
getarch_2nd.c:68:50: error: ‘DGEMM_DEFAULT_Q’ undeclared (first use in this function)
printf("#define DLOCAL_BUFFER_SIZE\t%ld\n", (DGEMM_DEFAULT_Q * DGEMM_DEFAULT_UNROLL_N * 2 * 1 * sizeof(double)));
^
getarch_2nd.c:69:50: error: ‘CGEMM_DEFAULT_Q’ undeclared (first use in this function)
printf("#define CLOCAL_BUFFER_SIZE\t%ld\n", (CGEMM_DEFAULT_Q * CGEMM_DEFAULT_UNROLL_N * 4 * 2 * sizeof(float)));
^
getarch_2nd.c:70:50: error: ‘ZGEMM_DEFAULT_Q’ undeclared (first use in this function)
printf("#define ZLOCAL_BUFFER_SIZE\t%ld\n", (ZGEMM_DEFAULT_Q * ZGEMM_DEFAULT_UNROLL_N * 2 * 2 * sizeof(double)));
^
make: *** [getarch_2nd] Error 1
make[1]: Entering directory '/tmp/SBo/OpenBLAS-0.2.11/interface'
gcc -c -I/usr/include -O2 -Wall -m64 -DF_INTERFACE_GFORT -fPIC -DSMP_SERVER -DNO_WARMUP -DMAX_CPU_NUMBER=4 -DASMNAME= -DASMFNAME=_ -DNAME=_ -DCNAME= -DCHAR_NAME=\"_\" -DCHAR_CNAME=\"\" -DNO_AFFINITY -I. -O2 -Wall -m64 -DF_INTERFACE_GFORT -fPIC -DSMP_SERVER -DNO_WARMUP -DMAX_CPU_NUMBER=4 -DASMNAME=sgemv -DASMFNAME=sgemv_ -DNAME=sgemv_ -DCNAME=sgemv -DCHAR_NAME=\"sgemv_\" -DCHAR_CNAME=\"sgemv\" -DNO_AFFINITY -I.. -I. -UDOUBLE -UCOMPLEX -o sgemv.o gemv.c
gcc -c -I/usr/include -O2 -Wall -m64 -DF_INTERFACE_GFORT -fPIC -DSMP_SERVER -DNO_WARMUP -DMAX_CPU_NUMBER=4 -DASMNAME= -DASMFNAME=_ -DNAME=_ -DCNAME= -DCHAR_NAME=\"_\" -DCHAR_CNAME=\"\" -DNO_AFFINITY -I. -O2 -Wall -m64 -DF_INTERFACE_GFORT -fPIC -DSMP_SERVER -DNO_WARMUP -DMAX_CPU_NUMBER=4 -DASMNAME=strsv -DASMFNAME=strsv_ -DNAME=strsv_ -DCNAME=strsv -DCHAR_NAME=\"strsv_\" -DCHAR_CNAME=\"strsv\" -DNO_AFFINITY -I.. -I. -UDOUBLE -UCOMPLEX trsv.c -o strsv.o
gcc -c -I/usr/include -O2 -Wall -m64 -DF_INTERFACE_GFORT -fPIC -DSMP_SERVER -DNO_WARMUP -DMAX_CPU_NUMBER=4 -DASMNAME= -DASMFNAME=_ -DNAME=_ -DCNAME= -DCHAR_NAME=\"_\" -DCHAR_CNAME=\"\" -DNO_AFFINITY -I. -O2 -Wall -m64 -DF_INTERFACE_GFORT -fPIC -DSMP_SERVER -DNO_WARMUP -DMAX_CPU_NUMBER=4 -DASMNAME=strmv -DASMFNAME=strmv_ -DNAME=strmv_ -DCNAME=strmv -DCHAR_NAME=\"strmv_\" -DCHAR_CNAME=\"strmv\" -DNO_AFFINITY -I.. -I. -UDOUBLE -UCOMPLEX trmv.c -o strmv.o
gcc -c -I/usr/include -O2 -Wall -m64 -DF_INTERFACE_GFORT -fPIC -DSMP_SERVER -DNO_WARMUP -DMAX_CPU_NUMBER=4 -DASMNAME= -DASMFNAME=_ -DNAME=_ -DCNAME= -DCHAR_NAME=\"_\" -DCHAR_CNAME=\"\" -DNO_AFFINITY -I. -O2 -Wall -m64 -DF_INTERFACE_GFORT -fPIC -DSMP_SERVER -DNO_WARMUP -DMAX_CPU_NUMBER=4 -DASMNAME=ssymv -DASMFNAME=ssymv_ -DNAME=ssymv_ -DCNAME=ssymv -DCHAR_NAME=\"ssymv_\" -DCHAR_CNAME=\"ssymv\" -DNO_AFFINITY -I.. -I. -UDOUBLE -UCOMPLEX symv.c -o ssymv.o
<command-line>:0:0: warning: "ASMNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "ASMFNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "NAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "CNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "CHAR_NAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "CHAR_CNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "ASMNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "ASMFNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "NAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "CNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "CHAR_NAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "CHAR_CNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "ASMNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "ASMFNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "NAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "CNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "CHAR_NAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "CHAR_CNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "ASMNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "ASMFNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "NAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "CNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "CHAR_NAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
<command-line>:0:0: warning: "CHAR_CNAME" re-definido
<command-line>:0:0: note: essa é a localização da definição anterior
gemv.c: In function ‘sgemv_’:
gemv.c:219:42: error: ‘GEMM_MULTITHREAD_THRESHOLD’ undeclared (first use in this function)
if ( MNK <= (500.0 * 100.0 * (double) GEMM_MULTITHREAD_THRESHOLD) )
^
gemv.c:219:42: note: each undeclared identifier is reported only once for each function it appears in
Makefile:815: recipe for target 'sgemv.o' failed
make[1]: *** [sgemv.o] Error 1
make[1]: ** Esperando que outros processos terminem.
make[1]: Leaving directory '/tmp/SBo/OpenBLAS-0.2.11/interface'
Makefile:141: recipe for target 'libs' failed
make: *** [libs] Error 1




3. Re: instalação do QGIS

Perfil removido
removido

(usa Nenhuma)

Enviado em 03/02/2018 - 12:42h

Reinstalei via slackbuilds.org => libspatialindex, qwtpolar, psycopg2, gdal, Jinja2, OWSLib, pyspatialite, Pygments, numpy


qgis-2.18.16/tests/testdata/wfs_transactional/test_point.dbf
qgis-2.18.16/tests/testdata/wfs_transactional/test_point.prj
qgis-2.18.16/tests/testdata/wfs_transactional/test_point.qpj
qgis-2.18.16/tests/testdata/wfs_transactional/test_point.shp
qgis-2.18.16/tests/testdata/wfs_transactional/test_point.shx
qgis-2.18.16/tests/testdata/wfs_transactional/test_polygon.dbf
qgis-2.18.16/tests/testdata/wfs_transactional/test_polygon.prj
qgis-2.18.16/tests/testdata/wfs_transactional/test_polygon.qpj
qgis-2.18.16/tests/testdata/wfs_transactional/test_polygon.shp
qgis-2.18.16/tests/testdata/wfs_transactional/test_polygon.shx
qgis-2.18.16/tests/testdata/wfs_transactional/wfs_transactional.qgs
qgis-2.18.16/tests/testdata/wkt/
qgis-2.18.16/tests/testdata/wkt/simplify_error.wkt
qgis-2.18.16/tests/testdata/wkt_data.csv
qgis-2.18.16/tests/testdata/zip/
qgis-2.18.16/tests/testdata/zip/landsat_b1.qml
qgis-2.18.16/tests/testdata/zip/landsat_b1.tar
qgis-2.18.16/tests/testdata/zip/landsat_b1.tif.gz
qgis-2.18.16/tests/testdata/zip/landsat_b1.zip
qgis-2.18.16/tests/testdata/zip/points2.qml
qgis-2.18.16/tests/testdata/zip/points2.tar
qgis-2.18.16/tests/testdata/zip/points2.zip
qgis-2.18.16/tests/testdata/zip/points3.geojson.gz
qgis-2.18.16/tests/testdata/zip/points3.geojson.gz.properties
qgis-2.18.16/tests/testdata/zip/points3.qml
qgis-2.18.16/tests/testdata/zip/testtar.tgz
qgis-2.18.16/tests/testdata/zip/testzip.zip
qgis-2.18.16/tests/testdata/zonalstatistics/
qgis-2.18.16/tests/testdata/zonalstatistics/edge_problem.asc
qgis-2.18.16/tests/testdata/zonalstatistics/edge_problem.asc.aux.xml
qgis-2.18.16/tests/testdata/zonalstatistics/edge_problem.prj
qgis-2.18.16/tests/testdata/zonalstatistics/polys.cpg
qgis-2.18.16/tests/testdata/zonalstatistics/polys.dbf
qgis-2.18.16/tests/testdata/zonalstatistics/polys.prj
qgis-2.18.16/tests/testdata/zonalstatistics/polys.qpj
qgis-2.18.16/tests/testdata/zonalstatistics/polys.shp
qgis-2.18.16/tests/testdata/zonalstatistics/polys.shx
qgis-2.18.16/tools/
qgis-2.18.16/tools/qgis-qt3to4.pl
patching file src/providers/arcgisrest/CMakeLists.txt
-- The C compiler identification is GNU 5.3.0
-- The CXX compiler identification is GNU 5.3.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- QGIS version: 2.18.16 Las Palmas (21816)
-- Could not find GRASS 6
-- Could not find GRASS 7
-- Looking for openpty
-- Looking for openpty - not found
-- Looking for openpty
-- Looking for openpty - found
-- Found Proj: /usr/lib64/libproj.so
-- Found GEOS: /usr/lib64/libgeos_c.so (3.6.2)
-- Found GDAL: /usr/lib64/libgdal.so (2.2.3)
-- Found Expat: /usr/lib64/libexpat.so
-- Found Spatialindex: /usr/lib64/libspatialindex.so
-- Found Qwt: /usr/lib64/libqwt.so (6.1.3)
-- Found Sqlite3: /usr/lib64/libsqlite3.so
-- Found PostgreSQL: /usr/lib64/postgresql/9.6/lib/libpq.so
-- Found SpatiaLite: /usr/lib64/libspatialite.so
-- Looking for gaiaDropTable in /usr/lib64/libspatialite.so
-- Looking for gaiaDropTable in /usr/lib64/libspatialite.so - found
-- Looking for gaiaStatisticsInvalidate in /usr/lib64/libspatialite.so
-- Looking for gaiaStatisticsInvalidate in /usr/lib64/libspatialite.so - found
-- Looking for spatialite_init_ex in /usr/lib64/libspatialite.so
-- Looking for spatialite_init_ex in /usr/lib64/libspatialite.so - found
-- Qt WebKit support enabled
-- Looking for Q_WS_X11
-- Looking for Q_WS_X11 - found
-- Looking for Q_WS_WIN
-- Looking for Q_WS_WIN - not found
-- Looking for Q_WS_QWS
-- Looking for Q_WS_QWS - not found
-- Looking for Q_WS_MAC
-- Looking for Q_WS_MAC - not found
-- Found Qt4: /usr/bin/qmake (found suitable version "4.8.7", minimum required is "4.8.0")
-- Found Qt version: 4.8.7
-- Touch support disabled
-- Found QScintilla2: /usr/lib64/libqscintilla2.so (2.9.1)
CMake Error at cmake/FindQCA.cmake:64 (message):
Could not find QCA
Call Stack (most recent call first):
CMakeLists.txt:326 (FIND_PACKAGE)


-- Configuring incomplete, errors occurred!
See also "/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeOutput.log".
See also "/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeError.log".

qgis:
Would you like to continue processing the rest of the
queue or would you like to abort? If this failed
package is a dependency of another package in the queue
then it may not make sense to continue.

(Y)es to continue, (N)o to abort, (R)etry the build?:




# qmake --version
QMake version 2.01a
Using Qt version 4.8.7 in /usr/lib64/qt/lib




4. Re: instalação do QGIS

Luís Fernando C. Cavalheiro
lcavalheiro

(usa Slackware)

Enviado em 03/02/2018 - 12:56h

Já leu os arquivos citados no output do comando?

-- Configuring incomplete, errors occurred!
See also "/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeOutput.log".
See also "/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeError.log".


--
Dino®
Vi veri universum vivus vici
Public GPG signature: 0x246A590B
Só Slackware é GNU/Linux e Patrick Volkerding é o seu Profeta
Mensagem do dia: Satã representa conhecimento sem limites e não auto-ilusão hipócrita. 



5. Re: instalação do QGIS

Luís Fernando C. Cavalheiro
lcavalheiro

(usa Slackware)

Enviado em 03/02/2018 - 12:57h

PS.: que script canhestro...
--
Dino®
Vi veri universum vivus vici
Public GPG signature: 0x246A590B
Só Slackware é GNU/Linux e Patrick Volkerding é o seu Profeta
Mensagem do dia: Satã representa conhecimento sem limites e não auto-ilusão hipócrita. 



6. Re: instalação do QGIS

Perfil removido
removido

(usa Nenhuma)

Enviado em 03/02/2018 - 13:41h

lcavalheiro escreveu:

Já leu os arquivos citados no output do comando?

-- Configuring incomplete, errors occurred!
See also "/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeOutput.log".
See also "/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeError.log".


--
Dino®
Vi veri universum vivus vici
Public GPG signature: 0x246A590B
Só Slackware é GNU/Linux e Patrick Volkerding é o seu Profeta
Mensagem do dia: Satã representa conhecimento sem limites e não auto-ilusão hipócrita. 


Não achei nada que possa ajudar nos logs




# cat /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeOutput.log
The system is: Linux - 4.4.111 - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /usr/bin/cc
Build flags: -O2;-fPIC
Id flags:

The output was:
0


Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"

The C compiler identification is GNU, found in "/tmp/SBo/qgis-2.18.16/build/CMakeFiles/3.5.2/CompilerIdC/a.out"

Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/c++
Build flags: -O2;-fPIC
Id flags:

The output was:
0


Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"

The CXX compiler identification is GNU, found in "/tmp/SBo/qgis-2.18.16/build/CMakeFiles/3.5.2/CompilerIdCXX/a.out"

Determining if the C compiler works passed with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_2946a/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_2946a.dir/build.make CMakeFiles/cmTC_2946a.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2946a.dir/testCCompiler.c.o
/usr/bin/cc -O2 -fPIC -o CMakeFiles/cmTC_2946a.dir/testCCompiler.c.o -c /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_2946a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2946a.dir/link.txt --verbose=1
/usr/bin/cc -O2 -fPIC CMakeFiles/cmTC_2946a.dir/testCCompiler.c.o -o cmTC_2946a -rdynamic
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Detecting C compiler ABI info compiled with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_4bfd5/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_4bfd5.dir/build.make CMakeFiles/cmTC_4bfd5.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_4bfd5.dir/CMakeCCompilerABI.c.o
/usr/bin/cc -O2 -fPIC -o CMakeFiles/cmTC_4bfd5.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_4bfd5
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4bfd5.dir/link.txt --verbose=1
/usr/bin/cc -O2 -fPIC -v CMakeFiles/cmTC_4bfd5.dir/CMakeCCompilerABI.c.o -o cmTC_4bfd5 -rdynamic
Reading specs from /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/specs
COLLECT_GCC=/usr/bin/cc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/lto-wrapper
Target: x86_64-slackware-linux
Configured with: ../gcc-5.3.0/configure --prefix=/usr --libdir=/usr/lib64 --mandir=/usr/man --infodir=/usr/info --enable-shared --enable-bootstrap --enable-languages=ada,c,c++,fortran,go,java,lto,objc --enable-threads=posix --enable-checking=release --enable-objc-gc --with-system-zlib --with-python-dir=/lib64/python2.7/site-packages --enable-libstdcxx-dual-abi --with-default-libstdcxx-abi=gcc4-compatible --disable-libunwind-exceptions --enable-__cxa_atexit --enable-libssp --enable-lto --disable-install-libiberty --with-gnu-ld --verbose --enable-java-home --with-java-home=/usr/lib64/jvm/jre --with-jvm-root-dir=/usr/lib64/jvm --with-jvm-jar-dir=/usr/lib64/jvm/jvm-exports --with-arch-directory=amd64 --with-antlr-jar=/home/slackware/slackbuilds/gcc/antlr-runtime-3.4.jar --enable-multilib --target=x86_64-slackware-linux --build=x86_64-slackware-linux --host=x86_64-slackware-linux
Thread model: posix
gcc version 5.3.0 (GCC)
COMPILER_PATH=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/:/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/:/usr/libexec/gcc/x86_64-slackware-linux/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/:/usr/lib64/gcc/x86_64-slackware-linux/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/
LIBRARY_PATH=/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-O2' '-fPIC' '-v' '-o' 'cmTC_4bfd5' '-rdynamic' '-mtune=generic' '-march=x86-64'
/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/collect2 -plugin /usr/libexec/gcc/x86_64-slackware-linux/5.3.0/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccjMj8TQ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_4bfd5 /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crt1.o /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crti.o /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/crtbegin.o -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0 -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../.. CMakeFiles/cmTC_4bfd5.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/crtend.o /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crtn.o
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/gmake" "cmTC_4bfd5/fast"]
ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_4bfd5.dir/build.make CMakeFiles/cmTC_4bfd5.dir/build]
ignore line: [gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_4bfd5.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/cc -O2 -fPIC -o CMakeFiles/cmTC_4bfd5.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C executable cmTC_4bfd5]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4bfd5.dir/link.txt --verbose=1]
ignore line: [/usr/bin/cc -O2 -fPIC -v CMakeFiles/cmTC_4bfd5.dir/CMakeCCompilerABI.c.o -o cmTC_4bfd5 -rdynamic ]
ignore line: [Reading specs from /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/specs]
ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/lto-wrapper]
ignore line: [Target: x86_64-slackware-linux]
ignore line: [Configured with: ../gcc-5.3.0/configure --prefix=/usr --libdir=/usr/lib64 --mandir=/usr/man --infodir=/usr/info --enable-shared --enable-bootstrap --enable-languages=ada,c,c++,fortran,go,java,lto,objc --enable-threads=posix --enable-checking=release --enable-objc-gc --with-system-zlib --with-python-dir=/lib64/python2.7/site-packages --enable-libstdcxx-dual-abi --with-default-libstdcxx-abi=gcc4-compatible --disable-libunwind-exceptions --enable-__cxa_atexit --enable-libssp --enable-lto --disable-install-libiberty --with-gnu-ld --verbose --enable-java-home --with-java-home=/usr/lib64/jvm/jre --with-jvm-root-dir=/usr/lib64/jvm --with-jvm-jar-dir=/usr/lib64/jvm/jvm-exports --with-arch-directory=amd64 --with-antlr-jar=/home/slackware/slackbuilds/gcc/antlr-runtime-3.4.jar --enable-multilib --target=x86_64-slackware-linux --build=x86_64-slackware-linux --host=x86_64-slackware-linux]
ignore line: [Thread model: posix]
ignore line: [gcc version 5.3.0 (GCC) ]
ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/:/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/:/usr/libexec/gcc/x86_64-slackware-linux/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/:/usr/lib64/gcc/x86_64-slackware-linux/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/]
ignore line: [LIBRARY_PATH=/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-O2' '-fPIC' '-v' '-o' 'cmTC_4bfd5' '-rdynamic' '-mtune=generic' '-march=x86-64']
link line: [ /usr/libexec/gcc/x86_64-slackware-linux/5.3.0/collect2 -plugin /usr/libexec/gcc/x86_64-slackware-linux/5.3.0/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccjMj8TQ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_4bfd5 /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crt1.o /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crti.o /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/crtbegin.o -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0 -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../.. CMakeFiles/cmTC_4bfd5.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/crtend.o /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crtn.o]
arg [/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccjMj8TQ.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [-export-dynamic] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-o] ==> ignore
arg [cmTC_4bfd5] ==> ignore
arg [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crt1.o] ==> ignore
arg [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crti.o] ==> ignore
arg [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/crtbegin.o] ==> ignore
arg [-L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0] ==> dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0]
arg [-L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64] ==> dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64]
arg [-L/lib/../lib64] ==> dir [/lib/../lib64]
arg [-L/usr/lib/../lib64] ==> dir [/usr/lib/../lib64]
arg [-L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib] ==> dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib]
arg [-L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../..] ==> dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../..]
arg [CMakeFiles/cmTC_4bfd5.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--no-as-needed] ==> ignore
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--no-as-needed] ==> ignore
arg [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/crtend.o] ==> ignore
arg [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crtn.o] ==> ignore
remove lib [gcc]
remove lib [gcc_s]
remove lib [gcc]
remove lib [gcc_s]
collapse library dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0] ==> [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0]
collapse library dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64] ==> [/usr/lib64]
collapse library dir [/lib/../lib64] ==> [/lib64]
collapse library dir [/usr/lib/../lib64] ==> [/usr/lib64]
collapse library dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib] ==> [/usr/x86_64-slackware-linux/lib]
collapse library dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../..] ==> [/usr/lib64]
implicit libs: [c]
implicit dirs: [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0;/usr/lib64;/lib64;/usr/x86_64-slackware-linux/lib]
implicit fwks: []




Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_55c78/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_55c78.dir/build.make CMakeFiles/cmTC_55c78.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_55c78.dir/feature_tests.c.o
/usr/bin/cc -O2 -fPIC -std=c11 -o CMakeFiles/cmTC_55c78.dir/feature_tests.c.o -c /tmp/SBo/qgis-2.18.16/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_55c78
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_55c78.dir/link.txt --verbose=1
/usr/bin/cc -O2 -fPIC CMakeFiles/cmTC_55c78.dir/feature_tests.c.o -o cmTC_55c78 -rdynamic
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:1c_restrict
Feature record: C_FEATURE:1c_static_assert
Feature record: C_FEATURE:1c_variadic_macros


Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_10d1e/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_10d1e.dir/build.make CMakeFiles/cmTC_10d1e.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_10d1e.dir/feature_tests.c.o
/usr/bin/cc -O2 -fPIC -std=c99 -o CMakeFiles/cmTC_10d1e.dir/feature_tests.c.o -c /tmp/SBo/qgis-2.18.16/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_10d1e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_10d1e.dir/link.txt --verbose=1
/usr/bin/cc -O2 -fPIC CMakeFiles/cmTC_10d1e.dir/feature_tests.c.o -o cmTC_10d1e -rdynamic
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:1c_restrict
Feature record: C_FEATURE:0c_static_assert
Feature record: C_FEATURE:1c_variadic_macros


Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_1235e/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_1235e.dir/build.make CMakeFiles/cmTC_1235e.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_1235e.dir/feature_tests.c.o
/usr/bin/cc -O2 -fPIC -std=c90 -o CMakeFiles/cmTC_1235e.dir/feature_tests.c.o -c /tmp/SBo/qgis-2.18.16/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_1235e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1235e.dir/link.txt --verbose=1
/usr/bin/cc -O2 -fPIC CMakeFiles/cmTC_1235e.dir/feature_tests.c.o -o cmTC_1235e -rdynamic
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:0c_restrict
Feature record: C_FEATURE:0c_static_assert
Feature record: C_FEATURE:0c_variadic_macros
Determining if the CXX compiler works passed with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_36df1/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_36df1.dir/build.make CMakeFiles/cmTC_36df1.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_36df1.dir/testCXXCompiler.cxx.o
/usr/bin/c++ -O2 -fPIC -o CMakeFiles/cmTC_36df1.dir/testCXXCompiler.cxx.o -c /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_36df1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_36df1.dir/link.txt --verbose=1
/usr/bin/c++ -O2 -fPIC CMakeFiles/cmTC_36df1.dir/testCXXCompiler.cxx.o -o cmTC_36df1 -rdynamic
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_9c4f6/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_9c4f6.dir/build.make CMakeFiles/cmTC_9c4f6.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_9c4f6.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -O2 -fPIC -o CMakeFiles/cmTC_9c4f6.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_9c4f6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9c4f6.dir/link.txt --verbose=1
/usr/bin/c++ -O2 -fPIC -v CMakeFiles/cmTC_9c4f6.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_9c4f6 -rdynamic
Reading specs from /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/specs
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/lto-wrapper
Target: x86_64-slackware-linux
Configured with: ../gcc-5.3.0/configure --prefix=/usr --libdir=/usr/lib64 --mandir=/usr/man --infodir=/usr/info --enable-shared --enable-bootstrap --enable-languages=ada,c,c++,fortran,go,java,lto,objc --enable-threads=posix --enable-checking=release --enable-objc-gc --with-system-zlib --with-python-dir=/lib64/python2.7/site-packages --enable-libstdcxx-dual-abi --with-default-libstdcxx-abi=gcc4-compatible --disable-libunwind-exceptions --enable-__cxa_atexit --enable-libssp --enable-lto --disable-install-libiberty --with-gnu-ld --verbose --enable-java-home --with-java-home=/usr/lib64/jvm/jre --with-jvm-root-dir=/usr/lib64/jvm --with-jvm-jar-dir=/usr/lib64/jvm/jvm-exports --with-arch-directory=amd64 --with-antlr-jar=/home/slackware/slackbuilds/gcc/antlr-runtime-3.4.jar --enable-multilib --target=x86_64-slackware-linux --build=x86_64-slackware-linux --host=x86_64-slackware-linux
Thread model: posix
gcc version 5.3.0 (GCC)
COMPILER_PATH=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/:/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/:/usr/libexec/gcc/x86_64-slackware-linux/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/:/usr/lib64/gcc/x86_64-slackware-linux/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/
LIBRARY_PATH=/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-O2' '-fPIC' '-v' '-o' 'cmTC_9c4f6' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/collect2 -plugin /usr/libexec/gcc/x86_64-slackware-linux/5.3.0/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc0xOUsW.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_9c4f6 /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crt1.o /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crti.o /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/crtbegin.o -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0 -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../.. CMakeFiles/cmTC_9c4f6.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/crtend.o /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crtn.o
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/gmake" "cmTC_9c4f6/fast"]
ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_9c4f6.dir/build.make CMakeFiles/cmTC_9c4f6.dir/build]
ignore line: [gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_9c4f6.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -O2 -fPIC -o CMakeFiles/cmTC_9c4f6.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Linking CXX executable cmTC_9c4f6]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9c4f6.dir/link.txt --verbose=1]
ignore line: [/usr/bin/c++ -O2 -fPIC -v CMakeFiles/cmTC_9c4f6.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_9c4f6 -rdynamic ]
ignore line: [Reading specs from /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/specs]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/lto-wrapper]
ignore line: [Target: x86_64-slackware-linux]
ignore line: [Configured with: ../gcc-5.3.0/configure --prefix=/usr --libdir=/usr/lib64 --mandir=/usr/man --infodir=/usr/info --enable-shared --enable-bootstrap --enable-languages=ada,c,c++,fortran,go,java,lto,objc --enable-threads=posix --enable-checking=release --enable-objc-gc --with-system-zlib --with-python-dir=/lib64/python2.7/site-packages --enable-libstdcxx-dual-abi --with-default-libstdcxx-abi=gcc4-compatible --disable-libunwind-exceptions --enable-__cxa_atexit --enable-libssp --enable-lto --disable-install-libiberty --with-gnu-ld --verbose --enable-java-home --with-java-home=/usr/lib64/jvm/jre --with-jvm-root-dir=/usr/lib64/jvm --with-jvm-jar-dir=/usr/lib64/jvm/jvm-exports --with-arch-directory=amd64 --with-antlr-jar=/home/slackware/slackbuilds/gcc/antlr-runtime-3.4.jar --enable-multilib --target=x86_64-slackware-linux --build=x86_64-slackware-linux --host=x86_64-slackware-linux]
ignore line: [Thread model: posix]
ignore line: [gcc version 5.3.0 (GCC) ]
ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/:/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/:/usr/libexec/gcc/x86_64-slackware-linux/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/:/usr/lib64/gcc/x86_64-slackware-linux/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/]
ignore line: [LIBRARY_PATH=/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib/:/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-O2' '-fPIC' '-v' '-o' 'cmTC_9c4f6' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
link line: [ /usr/libexec/gcc/x86_64-slackware-linux/5.3.0/collect2 -plugin /usr/libexec/gcc/x86_64-slackware-linux/5.3.0/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc0xOUsW.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_9c4f6 /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crt1.o /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crti.o /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/crtbegin.o -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0 -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib -L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../.. CMakeFiles/cmTC_9c4f6.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/crtend.o /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crtn.o]
arg [/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/libexec/gcc/x86_64-slackware-linux/5.3.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/cc0xOUsW.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [-export-dynamic] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-o] ==> ignore
arg [cmTC_9c4f6] ==> ignore
arg [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crt1.o] ==> ignore
arg [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crti.o] ==> ignore
arg [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/crtbegin.o] ==> ignore
arg [-L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0] ==> dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0]
arg [-L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64] ==> dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64]
arg [-L/lib/../lib64] ==> dir [/lib/../lib64]
arg [-L/usr/lib/../lib64] ==> dir [/usr/lib/../lib64]
arg [-L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib] ==> dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib]
arg [-L/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../..] ==> dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../..]
arg [CMakeFiles/cmTC_9c4f6.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/crtend.o] ==> ignore
arg [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64/crtn.o] ==> ignore
remove lib [gcc_s]
remove lib [gcc]
remove lib [gcc_s]
remove lib [gcc]
collapse library dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0] ==> [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0]
collapse library dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../lib64] ==> [/usr/lib64]
collapse library dir [/lib/../lib64] ==> [/lib64]
collapse library dir [/usr/lib/../lib64] ==> [/usr/lib64]
collapse library dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/lib] ==> [/usr/x86_64-slackware-linux/lib]
collapse library dir [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../..] ==> [/usr/lib64]
implicit libs: [stdc++;m;c]
implicit dirs: [/usr/lib64/gcc/x86_64-slackware-linux/5.3.0;/usr/lib64;/lib64;/usr/x86_64-slackware-linux/lib]
implicit fwks: []




Detecting CXX [-std=c++14] compiler features compiled with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_a0972/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_a0972.dir/build.make CMakeFiles/cmTC_a0972.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_a0972.dir/feature_tests.cxx.o
/usr/bin/c++ -O2 -fPIC -std=c++14 -o CMakeFiles/cmTC_a0972.dir/feature_tests.cxx.o -c /tmp/SBo/qgis-2.18.16/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_a0972
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a0972.dir/link.txt --verbose=1
/usr/bin/c++ -O2 -fPIC CMakeFiles/cmTC_a0972.dir/feature_tests.cxx.o -o cmTC_a0972 -rdynamic
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:1cxx_alias_templates
Feature record: CXX_FEATURE:1cxx_alignas
Feature record: CXX_FEATURE:1cxx_alignof
Feature record: CXX_FEATURE:1cxx_attributes
Feature record: CXX_FEATURE:1cxx_attribute_deprecated
Feature record: CXX_FEATURE:1cxx_auto_type
Feature record: CXX_FEATURE:1cxx_binary_literals
Feature record: CXX_FEATURE:1cxx_constexpr
Feature record: CXX_FEATURE:1cxx_contextual_conversions
Feature record: CXX_FEATURE:1cxx_decltype
Feature record: CXX_FEATURE:1cxx_decltype_auto
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:1cxx_default_function_template_args
Feature record: CXX_FEATURE:1cxx_defaulted_functions
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:1cxx_delegating_constructors
Feature record: CXX_FEATURE:1cxx_deleted_functions
Feature record: CXX_FEATURE:1cxx_digit_separators
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
Feature record: CXX_FEATURE:1cxx_explicit_conversions
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
Feature record: CXX_FEATURE:1cxx_extern_templates
Feature record: CXX_FEATURE:1cxx_final
Feature record: CXX_FEATURE:1cxx_func_identifier
Feature record: CXX_FEATURE:1cxx_generalized_initializers
Feature record: CXX_FEATURE:1cxx_generic_lambdas
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
Feature record: CXX_FEATURE:1cxx_inline_namespaces
Feature record: CXX_FEATURE:1cxx_lambdas
Feature record: CXX_FEATURE:1cxx_lambda_init_captures
Feature record: CXX_FEATURE:1cxx_local_type_template_args
Feature record: CXX_FEATURE:1cxx_long_long_type
Feature record: CXX_FEATURE:1cxx_noexcept
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
Feature record: CXX_FEATURE:1cxx_nullptr
Feature record: CXX_FEATURE:1cxx_override
Feature record: CXX_FEATURE:1cxx_range_for
Feature record: CXX_FEATURE:1cxx_raw_string_literals
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
Feature record: CXX_FEATURE:1cxx_return_type_deduction
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
Feature record: CXX_FEATURE:1cxx_rvalue_references
Feature record: CXX_FEATURE:1cxx_sizeof_member
Feature record: CXX_FEATURE:1cxx_static_assert
Feature record: CXX_FEATURE:1cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:1cxx_thread_local
Feature record: CXX_FEATURE:1cxx_trailing_return_types
Feature record: CXX_FEATURE:1cxx_unicode_literals
Feature record: CXX_FEATURE:1cxx_uniform_initialization
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
Feature record: CXX_FEATURE:1cxx_user_literals
Feature record: CXX_FEATURE:1cxx_variable_templates
Feature record: CXX_FEATURE:1cxx_variadic_macros
Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++11] compiler features compiled with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_cf042/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_cf042.dir/build.make CMakeFiles/cmTC_cf042.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_cf042.dir/feature_tests.cxx.o
/usr/bin/c++ -O2 -fPIC -std=c++11 -o CMakeFiles/cmTC_cf042.dir/feature_tests.cxx.o -c /tmp/SBo/qgis-2.18.16/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_cf042
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cf042.dir/link.txt --verbose=1
/usr/bin/c++ -O2 -fPIC CMakeFiles/cmTC_cf042.dir/feature_tests.cxx.o -o cmTC_cf042 -rdynamic
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:1cxx_alias_templates
Feature record: CXX_FEATURE:1cxx_alignas
Feature record: CXX_FEATURE:1cxx_alignof
Feature record: CXX_FEATURE:1cxx_attributes
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
Feature record: CXX_FEATURE:1cxx_auto_type
Feature record: CXX_FEATURE:0cxx_binary_literals
Feature record: CXX_FEATURE:1cxx_constexpr
Feature record: CXX_FEATURE:0cxx_contextual_conversions
Feature record: CXX_FEATURE:1cxx_decltype
Feature record: CXX_FEATURE:0cxx_decltype_auto
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:1cxx_default_function_template_args
Feature record: CXX_FEATURE:1cxx_defaulted_functions
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:1cxx_delegating_constructors
Feature record: CXX_FEATURE:1cxx_deleted_functions
Feature record: CXX_FEATURE:0cxx_digit_separators
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
Feature record: CXX_FEATURE:1cxx_explicit_conversions
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
Feature record: CXX_FEATURE:1cxx_extern_templates
Feature record: CXX_FEATURE:1cxx_final
Feature record: CXX_FEATURE:1cxx_func_identifier
Feature record: CXX_FEATURE:1cxx_generalized_initializers
Feature record: CXX_FEATURE:0cxx_generic_lambdas
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
Feature record: CXX_FEATURE:1cxx_inline_namespaces
Feature record: CXX_FEATURE:1cxx_lambdas
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
Feature record: CXX_FEATURE:1cxx_local_type_template_args
Feature record: CXX_FEATURE:1cxx_long_long_type
Feature record: CXX_FEATURE:1cxx_noexcept
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
Feature record: CXX_FEATURE:1cxx_nullptr
Feature record: CXX_FEATURE:1cxx_override
Feature record: CXX_FEATURE:1cxx_range_for
Feature record: CXX_FEATURE:1cxx_raw_string_literals
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
Feature record: CXX_FEATURE:0cxx_return_type_deduction
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
Feature record: CXX_FEATURE:1cxx_rvalue_references
Feature record: CXX_FEATURE:1cxx_sizeof_member
Feature record: CXX_FEATURE:1cxx_static_assert
Feature record: CXX_FEATURE:1cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:1cxx_thread_local
Feature record: CXX_FEATURE:1cxx_trailing_return_types
Feature record: CXX_FEATURE:1cxx_unicode_literals
Feature record: CXX_FEATURE:1cxx_uniform_initialization
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
Feature record: CXX_FEATURE:1cxx_user_literals
Feature record: CXX_FEATURE:0cxx_variable_templates
Feature record: CXX_FEATURE:1cxx_variadic_macros
Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++98] compiler features compiled with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_02b78/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_02b78.dir/build.make CMakeFiles/cmTC_02b78.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_02b78.dir/feature_tests.cxx.o
/usr/bin/c++ -O2 -fPIC -std=c++98 -o CMakeFiles/cmTC_02b78.dir/feature_tests.cxx.o -c /tmp/SBo/qgis-2.18.16/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_02b78
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_02b78.dir/link.txt --verbose=1
/usr/bin/c++ -O2 -fPIC CMakeFiles/cmTC_02b78.dir/feature_tests.cxx.o -o cmTC_02b78 -rdynamic
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:0cxx_alias_templates
Feature record: CXX_FEATURE:0cxx_alignas
Feature record: CXX_FEATURE:0cxx_alignof
Feature record: CXX_FEATURE:0cxx_attributes
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
Feature record: CXX_FEATURE:0cxx_auto_type
Feature record: CXX_FEATURE:0cxx_binary_literals
Feature record: CXX_FEATURE:0cxx_constexpr
Feature record: CXX_FEATURE:0cxx_contextual_conversions
Feature record: CXX_FEATURE:0cxx_decltype
Feature record: CXX_FEATURE:0cxx_decltype_auto
Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:0cxx_default_function_template_args
Feature record: CXX_FEATURE:0cxx_defaulted_functions
Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:0cxx_delegating_constructors
Feature record: CXX_FEATURE:0cxx_deleted_functions
Feature record: CXX_FEATURE:0cxx_digit_separators
Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
Feature record: CXX_FEATURE:0cxx_explicit_conversions
Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
Feature record: CXX_FEATURE:0cxx_extern_templates
Feature record: CXX_FEATURE:0cxx_final
Feature record: CXX_FEATURE:0cxx_func_identifier
Feature record: CXX_FEATURE:0cxx_generalized_initializers
Feature record: CXX_FEATURE:0cxx_generic_lambdas
Feature record: CXX_FEATURE:0cxx_inheriting_constructors
Feature record: CXX_FEATURE:0cxx_inline_namespaces
Feature record: CXX_FEATURE:0cxx_lambdas
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
Feature record: CXX_FEATURE:0cxx_local_type_template_args
Feature record: CXX_FEATURE:0cxx_long_long_type
Feature record: CXX_FEATURE:0cxx_noexcept
Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
Feature record: CXX_FEATURE:0cxx_nullptr
Feature record: CXX_FEATURE:0cxx_override
Feature record: CXX_FEATURE:0cxx_range_for
Feature record: CXX_FEATURE:0cxx_raw_string_literals
Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
Feature record: CXX_FEATURE:0cxx_return_type_deduction
Feature record: CXX_FEATURE:0cxx_right_angle_brackets
Feature record: CXX_FEATURE:0cxx_rvalue_references
Feature record: CXX_FEATURE:0cxx_sizeof_member
Feature record: CXX_FEATURE:0cxx_static_assert
Feature record: CXX_FEATURE:0cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:0cxx_thread_local
Feature record: CXX_FEATURE:0cxx_trailing_return_types
Feature record: CXX_FEATURE:0cxx_unicode_literals
Feature record: CXX_FEATURE:0cxx_uniform_initialization
Feature record: CXX_FEATURE:0cxx_unrestricted_unions
Feature record: CXX_FEATURE:0cxx_user_literals
Feature record: CXX_FEATURE:0cxx_variable_templates
Feature record: CXX_FEATURE:0cxx_variadic_macros
Feature record: CXX_FEATURE:0cxx_variadic_templates
Determining if the function openpty exists passed with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_9acb9/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_9acb9.dir/build.make CMakeFiles/cmTC_9acb9.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_9acb9.dir/CheckFunctionExists.c.o
/usr/bin/cc -I/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/util.h -O2 -fPIC -DCHECK_FUNCTION_EXISTS=openpty -o CMakeFiles/cmTC_9acb9.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.5/Modules/CheckFunctionExists.c
Linking C executable cmTC_9acb9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9acb9.dir/link.txt --verbose=1
/usr/bin/cc -O2 -fPIC -DCHECK_FUNCTION_EXISTS=openpty CMakeFiles/cmTC_9acb9.dir/CheckFunctionExists.c.o -o cmTC_9acb9 -rdynamic -lutil
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Determining if the function gaiaDropTable exists in the /usr/lib64/libspatialite.so passed with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_02e69/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_02e69.dir/build.make CMakeFiles/cmTC_02e69.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_02e69.dir/CheckFunctionExists.c.o
/usr/bin/cc -O2 -fPIC -DCHECK_FUNCTION_EXISTS=gaiaDropTable -o CMakeFiles/cmTC_02e69.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.5/Modules/CheckFunctionExists.c
Linking C executable cmTC_02e69
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_02e69.dir/link.txt --verbose=1
/usr/bin/cc -O2 -fPIC -DCHECK_FUNCTION_EXISTS=gaiaDropTable CMakeFiles/cmTC_02e69.dir/CheckFunctionExists.c.o -o cmTC_02e69 -rdynamic /usr/lib64/libspatialite.so -lutil
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Determining if the function gaiaStatisticsInvalidate exists in the /usr/lib64/libspatialite.so passed with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_9f7c2/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_9f7c2.dir/build.make CMakeFiles/cmTC_9f7c2.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_9f7c2.dir/CheckFunctionExists.c.o
/usr/bin/cc -O2 -fPIC -DCHECK_FUNCTION_EXISTS=gaiaStatisticsInvalidate -o CMakeFiles/cmTC_9f7c2.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.5/Modules/CheckFunctionExists.c
Linking C executable cmTC_9f7c2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9f7c2.dir/link.txt --verbose=1
/usr/bin/cc -O2 -fPIC -DCHECK_FUNCTION_EXISTS=gaiaStatisticsInvalidate CMakeFiles/cmTC_9f7c2.dir/CheckFunctionExists.c.o -o cmTC_9f7c2 -rdynamic /usr/lib64/libspatialite.so -lutil
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Determining if the function spatialite_init_ex exists in the /usr/lib64/libspatialite.so passed with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_64d2e/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_64d2e.dir/build.make CMakeFiles/cmTC_64d2e.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_64d2e.dir/CheckFunctionExists.c.o
/usr/bin/cc -O2 -fPIC -DCHECK_FUNCTION_EXISTS=spatialite_init_ex -o CMakeFiles/cmTC_64d2e.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.5/Modules/CheckFunctionExists.c
Linking C executable cmTC_64d2e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_64d2e.dir/link.txt --verbose=1
/usr/bin/cc -O2 -fPIC -DCHECK_FUNCTION_EXISTS=spatialite_init_ex CMakeFiles/cmTC_64d2e.dir/CheckFunctionExists.c.o -o cmTC_64d2e -rdynamic /usr/lib64/libspatialite.so -lutil
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'


Determining if the Q_WS_X11 exist passed with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_2faf1/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_2faf1.dir/build.make CMakeFiles/cmTC_2faf1.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_2faf1.dir/CheckSymbolExists.cxx.o
/usr/bin/c++ -I/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/util.h -I/usr/lib64/qt/include -O2 -fPIC -DSPATIALITE_VERSION_GE_4_0_0 -DSPATIALITE_VERSION_G_4_1_1 -DSPATIALITE_HAS_INIT_EX -o CMakeFiles/cmTC_2faf1.dir/CheckSymbolExists.cxx.o -c /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_2faf1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2faf1.dir/link.txt --verbose=1
/usr/bin/c++ -O2 -fPIC -DSPATIALITE_VERSION_GE_4_0_0 -DSPATIALITE_VERSION_G_4_1_1 -DSPATIALITE_HAS_INIT_EX CMakeFiles/cmTC_2faf1.dir/CheckSymbolExists.cxx.o -o cmTC_2faf1 -rdynamic -lutil
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'

File /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <QtCore/qglobal.h>

int main(int argc, char** argv)
{
(void)argv;
#ifndef Q_WS_X11
return ((int*)(&Q_WS_X11))[argc];
#else
(void)argc;
return 0;
#endif
}











# cat /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeError.log
Determining if the function openpty exists failed with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_64816/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_64816.dir/build.make CMakeFiles/cmTC_64816.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_64816.dir/CheckFunctionExists.c.o
/usr/bin/cc -O2 -fPIC -DCHECK_FUNCTION_EXISTS=openpty -o CMakeFiles/cmTC_64816.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.5/Modules/CheckFunctionExists.c
Linking C executable cmTC_64816
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_64816.dir/link.txt --verbose=1
/usr/bin/cc -O2 -fPIC -DCHECK_FUNCTION_EXISTS=openpty CMakeFiles/cmTC_64816.dir/CheckFunctionExists.c.o -o cmTC_64816 -rdynamic
CMakeFiles/cmTC_64816.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text.startup+0xe): undefined reference to `openpty'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_64816.dir/build.make:97: recipe for target 'cmTC_64816' failed
gmake[1]: *** [cmTC_64816] Error 1
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_64816/fast' failed
gmake: *** [cmTC_64816/fast] Error 2


Determining if the Q_WS_WIN exist failed with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_2fee3/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_2fee3.dir/build.make CMakeFiles/cmTC_2fee3.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_2fee3.dir/CheckSymbolExists.cxx.o
/usr/bin/c++ -I/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/util.h -I/usr/lib64/qt/include -O2 -fPIC -DSPATIALITE_VERSION_GE_4_0_0 -DSPATIALITE_VERSION_G_4_1_1 -DSPATIALITE_HAS_INIT_EX -o CMakeFiles/cmTC_2fee3.dir/CheckSymbolExists.cxx.o -c /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: In function ‘int main(int, char**)’:
/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: ‘Q_WS_WIN’ was not declared in this scope
return ((int*)(&Q_WS_WIN))[argc];
^
CMakeFiles/cmTC_2fee3.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_2fee3.dir/CheckSymbolExists.cxx.o' failed
gmake[1]: *** [CMakeFiles/cmTC_2fee3.dir/CheckSymbolExists.cxx.o] Error 1
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_2fee3/fast' failed
gmake: *** [cmTC_2fee3/fast] Error 2

File /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <QtCore/qglobal.h>

int main(int argc, char** argv)
{
(void)argv;
#ifndef Q_WS_WIN
return ((int*)(&Q_WS_WIN))[argc];
#else
(void)argc;
return 0;
#endif
}

Determining if the Q_WS_QWS exist failed with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_17399/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_17399.dir/build.make CMakeFiles/cmTC_17399.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_17399.dir/CheckSymbolExists.cxx.o
/usr/bin/c++ -I/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/util.h -I/usr/lib64/qt/include -O2 -fPIC -DSPATIALITE_VERSION_GE_4_0_0 -DSPATIALITE_VERSION_G_4_1_1 -DSPATIALITE_HAS_INIT_EX -o CMakeFiles/cmTC_17399.dir/CheckSymbolExists.cxx.o -c /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: In function ‘int main(int, char**)’:
/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: ‘Q_WS_QWS’ was not declared in this scope
return ((int*)(&Q_WS_QWS))[argc];
^
CMakeFiles/cmTC_17399.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_17399.dir/CheckSymbolExists.cxx.o' failed
gmake[1]: *** [CMakeFiles/cmTC_17399.dir/CheckSymbolExists.cxx.o] Error 1
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_17399/fast' failed
gmake: *** [cmTC_17399/fast] Error 2

File /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <QtCore/qglobal.h>

int main(int argc, char** argv)
{
(void)argv;
#ifndef Q_WS_QWS
return ((int*)(&Q_WS_QWS))[argc];
#else
(void)argc;
return 0;
#endif
}

Determining if the Q_WS_MAC exist failed with the following output:
Change Dir: /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_5cfa3/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_5cfa3.dir/build.make CMakeFiles/cmTC_5cfa3.dir/build
gmake[1]: Entering directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_5cfa3.dir/CheckSymbolExists.cxx.o
/usr/bin/c++ -I/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/util.h -I/usr/lib64/qt/include -O2 -fPIC -DSPATIALITE_VERSION_GE_4_0_0 -DSPATIALITE_VERSION_G_4_1_1 -DSPATIALITE_HAS_INIT_EX -o CMakeFiles/cmTC_5cfa3.dir/CheckSymbolExists.cxx.o -c /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: In function ‘int main(int, char**)’:
/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: ‘Q_WS_MAC’ was not declared in this scope
return ((int*)(&Q_WS_MAC))[argc];
^
CMakeFiles/cmTC_5cfa3.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_5cfa3.dir/CheckSymbolExists.cxx.o' failed
gmake[1]: *** [CMakeFiles/cmTC_5cfa3.dir/CheckSymbolExists.cxx.o] Error 1
gmake[1]: Leaving directory '/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_5cfa3/fast' failed
gmake: *** [cmTC_5cfa3/fast] Error 2

File /tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <QtCore/qglobal.h>

int main(int argc, char** argv)
{
(void)argv;
#ifndef Q_WS_MAC
return ((int*)(&Q_WS_MAC))[argc];
#else
(void)argc;
return 0;
#endif
}







7. Re: instalação do QGIS

Luís Fernando C. Cavalheiro
lcavalheiro

(usa Slackware)

Enviado em 03/02/2018 - 14:00h

collect2: error: ld returned 1 exit status

Como eu desconfiava, erro de vinculação de bibliotecas durante a compilação, no caso envolvendo esse collect2. Cara... por que você não compila cada uma das dependências independentemente ao invés de usar o script? Isso vai permitir saber exatamente onde está dando o pau.
--
Dino®
Vi veri universum vivus vici
Public GPG signature: 0x246A590B
Só Slackware é GNU/Linux e Patrick Volkerding é o seu Profeta
Mensagem do dia: Satã representa conhecimento sem limites e não auto-ilusão hipócrita. 



8. Re: instalação do QGIS

Luís Fernando C. Cavalheiro
lcavalheiro

(usa Slackware)

Enviado em 03/02/2018 - 14:01h

Segue o pacote em slackbuilds.org: http://slackbuilds.org/repository/14.2/gis/qgis/?search=qgis
--
Dino®
Vi veri universum vivus vici
Public GPG signature: 0x246A590B
Só Slackware é GNU/Linux e Patrick Volkerding é o seu Profeta
Mensagem do dia: Satã representa conhecimento sem limites e não auto-ilusão hipócrita. 



9. Re: instalação do QGIS

Perfil removido
removido

(usa Nenhuma)

Enviado em 03/02/2018 - 15:56h

lcavalheiro escreveu:

collect2: error: ld returned 1 exit status

Como eu desconfiava, erro de vinculação de bibliotecas durante a compilação, no caso envolvendo esse collect2. Cara... por que você não compila cada uma das dependências independentemente ao invés de usar o script? Isso vai permitir saber exatamente onde está dando o pau.
--
Dino®
Vi veri universum vivus vici
Public GPG signature: 0x246A590B
Só Slackware é GNU/Linux e Patrick Volkerding é o seu Profeta
Mensagem do dia: Satã representa conhecimento sem limites e não auto-ilusão hipócrita. 


As dependências já estão instaladas

This requires: libspatialindex, qwtpolar, psycopg2, gdal, Jinja2, OWSLib, pyspatialite, Pygments, numpy


# ls /var/log/packages/ | grep -i libspatialindex
libspatialindex-1.7.1-x86_64-2_SBo

# ls /var/log/packages/ | grep -i qwtpolar
qwtpolar-1.1.1-x86_64-1_SBo

# ls /var/log/packages/ | grep -i psycopg2
psycopg2-2.7.3.2-x86_64-1_SBo

# ls /var/log/packages/ | grep -i gdal
gdal-2.2.3-x86_64-1_SBo

# ls /var/log/packages/ | grep -i Jinja2
Jinja2-2.7.3-x86_64-1_SBo

# ls /var/log/packages/ | grep -i OWSLib
OWSLib-0.16.0-x86_64-1_SBo

# ls /var/log/packages/ | grep -i pyspatialite
pyspatialite-3.0.1_alpha_0-x86_64-1_SBo

# ls /var/log/packages/ | grep -i Pygments
Pygments-2.1.3-x86_64-1_SBo

# ls /var/log/packages/ | grep -i numpy
numpy-1.11.1-x86_64-1_SBo


Usei o site => https://slackbuilds.org/repository/14.2/gis/qgis/


Só usei o script na primeira vez, depois do erro removi tudo.


ERRO no qgis:




qgis-2.18.16/tests/testdata/provider/shapefile_poly.shp
qgis-2.18.16/tests/testdata/provider/shapefile_poly.shx
qgis-2.18.16/tests/testdata/provider/spatialite.db
qgis-2.18.16/tests/testdata/provider/testdata_db2.sql
qgis-2.18.16/tests/testdata/provider/testdata_mssql.sql
qgis-2.18.16/tests/testdata/provider/testdata_oracle.sql
qgis-2.18.16/tests/testdata/provider/testdata_pg.sh
qgis-2.18.16/tests/testdata/provider/testdata_pg.sql
qgis-2.18.16/tests/testdata/provider/testdata_pg_raster.sql
qgis-2.18.16/tests/testdata/provider/testdata_pg_reltests.sql
qgis-2.18.16/tests/testdata/provider/testdata_pg_vectorjoin.sql
qgis-2.18.16/tests/testdata/qgis_local_server/
qgis-2.18.16/tests/testdata/qgis_local_server/fcgi/
qgis-2.18.16/tests/testdata/qgis_local_server/fcgi/scripts/
qgis-2.18.16/tests/testdata/qgis_local_server/fcgi/scripts/spawn_fcgi_debian.sh
qgis-2.18.16/tests/testdata/qgis_local_server/fcgi/scripts/spawn_fcgi_mac.sh
qgis-2.18.16/tests/testdata/qgis_local_server/index.html
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/config/
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/config/conf/
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/config/conf/access_log.conf
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/config/conf/debug.conf
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/config/conf/dirlisting.conf
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/config/conf/fastcgi.conf
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/config/conf/mime.conf
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/config/conf/scgi.conf
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/config/conf/simple_vhost.conf
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/config/conf/status.conf
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/config/lighttpd_unix.conf
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/config/modules.conf
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/scripts/
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/scripts/lighttpd_debian.sh
qgis-2.18.16/tests/testdata/qgis_local_server/lighttpd/scripts/lighttpd_mac.sh
qgis-2.18.16/tests/testdata/qgis_local_server/logo.png
qgis-2.18.16/tests/testdata/qgis_local_server/test-project/
qgis-2.18.16/tests/testdata/qgis_local_server/test-project/aoi.qml
qgis-2.18.16/tests/testdata/qgis_local_server/test-project/background.qml
qgis-2.18.16/tests/testdata/qgis_local_server/test-project/features_v3.sqlite
qgis-2.18.16/tests/testdata/qgis_local_server/test-project/point.qml
qgis-2.18.16/tests/testdata/qgis_local_server/test-project/test-server.qgs
qgis-2.18.16/tests/testdata/qgis_server/
qgis-2.18.16/tests/testdata/qgis_server/getcapabilities.txt
qgis-2.18.16/tests/testdata/qgis_server/getcapabilities_inspire.txt
qgis-2.18.16/tests/testdata/qgis_server/getcontext.txt
qgis-2.18.16/tests/testdata/qgis_server/getprojectsettings.txt
qgis-2.18.16/tests/testdata/qgis_server/secondlayer.cpg
qgis-2.18.16/tests/testdata/qgis_server/secondlayer.dbf
qgis-2.18.16/tests/testdata/qgis_server/secondlayer.prj
qgis-2.18.16/tests/testdata/qgis_server/secondlayer.qpj
qgis-2.18.16/tests/testdata/qgis_server/secondlayer.shp
qgis-2.18.16/tests/testdata/qgis_server/secondlayer.shx
qgis-2.18.16/tests/testdata/qgis_server/test_project.qgs
qgis-2.18.16/tests/testdata/qgis_server/test_project_inspire.qgs
qgis-2.18.16/tests/testdata/qgis_server/test_project_two_layers.qgs
qgis-2.18.16/tests/testdata/qgis_server/test_project_wfs.qgs
qgis-2.18.16/tests/testdata/qgis_server/testlayer.dbf
qgis-2.18.16/tests/testdata/qgis_server/testlayer.prj
qgis-2.18.16/tests/testdata/qgis_server/testlayer.qpj
qgis-2.18.16/tests/testdata/qgis_server/testlayer.shp
qgis-2.18.16/tests/testdata/qgis_server/testlayer.shx
qgis-2.18.16/tests/testdata/qgis_server/wfs_describefeaturetype.txt
qgis-2.18.16/tests/testdata/qgis_server/wfs_getcapabilities.txt
qgis-2.18.16/tests/testdata/qgis_server/wfs_getfeature_limit2.txt
qgis-2.18.16/tests/testdata/qgis_server/wfs_getfeature_multiple.txt
qgis-2.18.16/tests/testdata/qgis_server/wfs_getfeature_nobbox.txt
qgis-2.18.16/tests/testdata/qgis_server/wfs_getfeature_start1_limit1.txt
qgis-2.18.16/tests/testdata/qgis_server/wfs_getfeature_startindex2.txt
qgis-2.18.16/tests/testdata/qgis_server/wms_getfeatureinfo-text-html.txt
qgis-2.18.16/tests/testdata/qgis_server/wms_getfeatureinfo-text-plain.txt
qgis-2.18.16/tests/testdata/qgis_server/wms_getfeatureinfo_filter.txt
qgis-2.18.16/tests/testdata/qgis_server/wms_getfeatureinfo_filter_or.txt
qgis-2.18.16/tests/testdata/qgis_server/wms_getfeatureinfo_filter_or_utf8.txt
qgis-2.18.16/tests/testdata/qgis_server/wms_getfeatureinfo_filter_wrong.txt
qgis-2.18.16/tests/testdata/qgis_server_accesscontrol/
qgis-2.18.16/tests/testdata/qgis_server_accesscontrol/Country.qml
qgis-2.18.16/tests/testdata/qgis_server_accesscontrol/Hello.qml
qgis-2.18.16/tests/testdata/qgis_server_accesscontrol/_helloworld.db
qgis-2.18.16/tests/testdata/qgis_server_accesscontrol/dem.tif
qgis-2.18.16/tests/testdata/qgis_server_accesscontrol/dem.tif.aux.xml
qgis-2.18.16/tests/testdata/qgis_server_accesscontrol/dem.tif.ovr
qgis-2.18.16/tests/testdata/qgis_server_accesscontrol/helloworld.db
qgis-2.18.16/tests/testdata/qgis_server_accesscontrol/project.qgs
qgis-2.18.16/tests/testdata/qgis_server_accesscontrol/project.qgs.cfg
qgis-2.18.16/tests/testdata/qgis_server_accesscontrol/results/
qgis-2.18.16/tests/testdata/qgis_server_accesscontrol/results/WCS_GetCoverage.geotiff
qgis-2.18.16/tests/testdata/raster/
qgis-2.18.16/tests/testdata/raster/.gitignore
qgis-2.18.16/tests/testdata/raster/README.WCS
qgis-2.18.16/tests/testdata/raster/band1_byte_ct_epsg4326.tif
qgis-2.18.16/tests/testdata/raster/band1_byte_noct_epsg4326.tif
qgis-2.18.16/tests/testdata/raster/band1_float32_noct_epsg4326.tif
qgis-2.18.16/tests/testdata/raster/band1_int16_noct_epsg4326.tif
qgis-2.18.16/tests/testdata/raster/band3_byte_noct_epsg4326.tif
qgis-2.18.16/tests/testdata/raster/band3_float32_noct_epsg4326.tif
qgis-2.18.16/tests/testdata/raster/band3_int16_noct_epsg4326.tif
qgis-2.18.16/tests/testdata/raster/byte.tif
qgis-2.18.16/tests/testdata/raster/byte_with_nan_nodata.tif
qgis-2.18.16/tests/testdata/raster/raster-pallette-crash2.qml
qgis-2.18.16/tests/testdata/raster/raster-pallette-crash2.tif
qgis-2.18.16/tests/testdata/raster/raster-pallette-crash2.tif.aux.xml
qgis-2.18.16/tests/testdata/raster/test.asc
qgis-2.18.16/tests/testdata/raster/wcs.map
qgis-2.18.16/tests/testdata/rectangles.dbf
qgis-2.18.16/tests/testdata/rectangles.prj
qgis-2.18.16/tests/testdata/rectangles.qpj
qgis-2.18.16/tests/testdata/rectangles.shp
qgis-2.18.16/tests/testdata/rectangles.shx
qgis-2.18.16/tests/testdata/relates_data.csv
qgis-2.18.16/tests/testdata/relations.qgs
qgis-2.18.16/tests/testdata/requires_warped_vrt.tif
qgis-2.18.16/tests/testdata/rgb256x256.png
qgis-2.18.16/tests/testdata/rgbwcmyk01_YeGeo.jp2
qgis-2.18.16/tests/testdata/rulebasedrenderer_invalid.xml
qgis-2.18.16/tests/testdata/rulebasedrenderer_simple.xml
qgis-2.18.16/tests/testdata/sample_alpha_image.png
qgis-2.18.16/tests/testdata/sample_image.png
qgis-2.18.16/tests/testdata/sample_svg.svg
qgis-2.18.16/tests/testdata/scaleoffset.tif
qgis-2.18.16/tests/testdata/shp_latin1.dbf
qgis-2.18.16/tests/testdata/small_sample_image.png
qgis-2.18.16/tests/testdata/svg/
qgis-2.18.16/tests/testdata/svg/issue_14644.svg
qgis-2.18.16/tests/testdata/svg_params.svg
qgis-2.18.16/tests/testdata/symbol_layer/
qgis-2.18.16/tests/testdata/symbol_layer/QgsCentroidFillSymbolLayerV2.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsEllipseSymbolLayerV2.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsFontMarkerSymbolLayerV2.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsLineDecorationSymbolLayerV2.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsLinePatternFillSymbolLayer.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsMarkerLineSymbolLayerV2.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsPointPatternFillSymbolLayer.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsSVGFillSymbolLayer.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsSimpleFillSymbolLayerV2.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsSimpleLineSymbolLayerV2.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsSimpleMarkerSymbolLayerV2.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsSvgMarkerSymbolLayerUomFoot.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsSvgMarkerSymbolLayerUomMetre.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsSvgMarkerSymbolLayerUomPixel.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsSvgMarkerSymbolLayerV2.sld
qgis-2.18.16/tests/testdata/symbol_layer/QgsVectorFieldSymbolLayer.sld
qgis-2.18.16/tests/testdata/symbol_layer/categorized.qml
qgis-2.18.16/tests/testdata/symbol_layer/external_sld/
qgis-2.18.16/tests/testdata/symbol_layer/external_sld/simple_streams.sld
qgis-2.18.16/tests/testdata/symbol_layer/external_sld/testSimpleMarkerRotation-directValue.sld
qgis-2.18.16/tests/testdata/symbol_layer/external_sld/testSimpleMarkerRotation-ogcLiteral.sld
qgis-2.18.16/tests/testdata/symbol_layer/graduated.qml
qgis-2.18.16/tests/testdata/symbol_layer/ruleBased.qml
qgis-2.18.16/tests/testdata/symbol_layer/singleSymbol.qml
qgis-2.18.16/tests/testdata/tab_file.dat
qgis-2.18.16/tests/testdata/tab_file.id
qgis-2.18.16/tests/testdata/tab_file.map
qgis-2.18.16/tests/testdata/tab_file.tab
qgis-2.18.16/tests/testdata/template-for-substitution.qpt
qgis-2.18.16/tests/testdata/template.qpt
qgis-2.18.16/tests/testdata/tenbytenraster.asc
qgis-2.18.16/tests/testdata/test_gdb.gdb/
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000001.TablesByName.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000001.gdbindexes
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000001.gdbtable
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000001.gdbtablx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000002.gdbtable
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000002.gdbtablx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000003.gdbindexes
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000003.gdbtable
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000003.gdbtablx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000004.CatItemsByPhysicalName.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000004.CatItemsByType.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000004.FDO_UUID.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000004.gdbindexes
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000004.gdbtable
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000004.gdbtablx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000004.spx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000005.CatItemTypesByName.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000005.CatItemTypesByParentTypeID.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000005.CatItemTypesByUUID.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000005.gdbindexes
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000005.gdbtable
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000005.gdbtablx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000006.CatRelsByDestinationID.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000006.CatRelsByOriginID.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000006.CatRelsByType.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000006.FDO_UUID.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000006.gdbindexes
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000006.gdbtable
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000006.gdbtablx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000007.CatRelTypesByBackwardLabel.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000007.CatRelTypesByDestItemTypeID.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000007.CatRelTypesByForwardLabel.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000007.CatRelTypesByName.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000007.CatRelTypesByOriginItemTypeID.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000007.CatRelTypesByUUID.atx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000007.gdbindexes
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000007.gdbtable
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000007.gdbtablx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000009.gdbindexes
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000009.gdbtable
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000009.gdbtablx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a00000009.spx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a0000000a.gdbindexes
qgis-2.18.16/tests/testdata/test_gdb.gdb/a0000000a.gdbtable
qgis-2.18.16/tests/testdata/test_gdb.gdb/a0000000a.gdbtablx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a0000000a.spx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a0000000b.gdbindexes
qgis-2.18.16/tests/testdata/test_gdb.gdb/a0000000b.gdbtable
qgis-2.18.16/tests/testdata/test_gdb.gdb/a0000000b.gdbtablx
qgis-2.18.16/tests/testdata/test_gdb.gdb/a0000000b.spx
qgis-2.18.16/tests/testdata/test_gdb.gdb/gdb
qgis-2.18.16/tests/testdata/test_gdb.gdb/timestamps
qgis-2.18.16/tests/testdata/test_html.html
qgis-2.18.16/tests/testdata/test_plugin_path/
qgis-2.18.16/tests/testdata/test_plugin_path/PluginPathTest/
qgis-2.18.16/tests/testdata/test_plugin_path/PluginPathTest/__init__.py
qgis-2.18.16/tests/testdata/test_plugin_path/PluginPathTest/metadata.txt
qgis-2.18.16/tests/testdata/test_plugin_path/QGIS/
qgis-2.18.16/tests/testdata/test_plugin_path/QGIS/QGIS2.ini
qgis-2.18.16/tests/testdata/test_plugin_path/qgis.org/
qgis-2.18.16/tests/testdata/test_plugin_path/qgis.org/QGIS2.ini
qgis-2.18.16/tests/testdata/test_symbol_svg.svg
qgis-2.18.16/tests/testdata/testdata.qrc
qgis-2.18.16/tests/testdata/vector_and_raster.qlr
qgis-2.18.16/tests/testdata/wfs_transactional/
qgis-2.18.16/tests/testdata/wfs_transactional/test_linestring.dbf
qgis-2.18.16/tests/testdata/wfs_transactional/test_linestring.prj
qgis-2.18.16/tests/testdata/wfs_transactional/test_linestring.qpj
qgis-2.18.16/tests/testdata/wfs_transactional/test_linestring.shp
qgis-2.18.16/tests/testdata/wfs_transactional/test_linestring.shx
qgis-2.18.16/tests/testdata/wfs_transactional/test_point.dbf
qgis-2.18.16/tests/testdata/wfs_transactional/test_point.prj
qgis-2.18.16/tests/testdata/wfs_transactional/test_point.qpj
qgis-2.18.16/tests/testdata/wfs_transactional/test_point.shp
qgis-2.18.16/tests/testdata/wfs_transactional/test_point.shx
qgis-2.18.16/tests/testdata/wfs_transactional/test_polygon.dbf
qgis-2.18.16/tests/testdata/wfs_transactional/test_polygon.prj
qgis-2.18.16/tests/testdata/wfs_transactional/test_polygon.qpj
qgis-2.18.16/tests/testdata/wfs_transactional/test_polygon.shp
qgis-2.18.16/tests/testdata/wfs_transactional/test_polygon.shx
qgis-2.18.16/tests/testdata/wfs_transactional/wfs_transactional.qgs
qgis-2.18.16/tests/testdata/wkt/
qgis-2.18.16/tests/testdata/wkt/simplify_error.wkt
qgis-2.18.16/tests/testdata/wkt_data.csv
qgis-2.18.16/tests/testdata/zip/
qgis-2.18.16/tests/testdata/zip/landsat_b1.qml
qgis-2.18.16/tests/testdata/zip/landsat_b1.tar
qgis-2.18.16/tests/testdata/zip/landsat_b1.tif.gz
qgis-2.18.16/tests/testdata/zip/landsat_b1.zip
qgis-2.18.16/tests/testdata/zip/points2.qml
qgis-2.18.16/tests/testdata/zip/points2.tar
qgis-2.18.16/tests/testdata/zip/points2.zip
qgis-2.18.16/tests/testdata/zip/points3.geojson.gz
qgis-2.18.16/tests/testdata/zip/points3.geojson.gz.properties
qgis-2.18.16/tests/testdata/zip/points3.qml
qgis-2.18.16/tests/testdata/zip/testtar.tgz
qgis-2.18.16/tests/testdata/zip/testzip.zip
qgis-2.18.16/tests/testdata/zonalstatistics/
qgis-2.18.16/tests/testdata/zonalstatistics/edge_problem.asc
qgis-2.18.16/tests/testdata/zonalstatistics/edge_problem.asc.aux.xml
qgis-2.18.16/tests/testdata/zonalstatistics/edge_problem.prj
qgis-2.18.16/tests/testdata/zonalstatistics/polys.cpg
qgis-2.18.16/tests/testdata/zonalstatistics/polys.dbf
qgis-2.18.16/tests/testdata/zonalstatistics/polys.prj
qgis-2.18.16/tests/testdata/zonalstatistics/polys.qpj
qgis-2.18.16/tests/testdata/zonalstatistics/polys.shp
qgis-2.18.16/tests/testdata/zonalstatistics/polys.shx
qgis-2.18.16/tools/
qgis-2.18.16/tools/qgis-qt3to4.pl
patching file src/providers/arcgisrest/CMakeLists.txt
-- The C compiler identification is GNU 5.3.0
-- The CXX compiler identification is GNU 5.3.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- QGIS version: 2.18.16 Las Palmas (21816)
-- Could not find GRASS 6
-- Could not find GRASS 7
-- Looking for openpty
-- Looking for openpty - not found
-- Looking for openpty
-- Looking for openpty - found
-- Found Proj: /usr/lib64/libproj.so
-- Found GEOS: /usr/lib64/libgeos_c.so (3.6.2)
-- Found GDAL: /usr/lib64/libgdal.so (2.2.3)
-- Found Expat: /usr/lib64/libexpat.so
-- Found Spatialindex: /usr/lib64/libspatialindex.so
-- Found Qwt: /usr/lib64/libqwt.so (6.1.3)
-- Found Sqlite3: /usr/lib64/libsqlite3.so
-- Found PostgreSQL: /usr/lib64/postgresql/9.6/lib/libpq.so
-- Found SpatiaLite: /usr/lib64/libspatialite.so
-- Looking for gaiaDropTable in /usr/lib64/libspatialite.so
-- Looking for gaiaDropTable in /usr/lib64/libspatialite.so - found
-- Looking for gaiaStatisticsInvalidate in /usr/lib64/libspatialite.so
-- Looking for gaiaStatisticsInvalidate in /usr/lib64/libspatialite.so - found
-- Looking for spatialite_init_ex in /usr/lib64/libspatialite.so
-- Looking for spatialite_init_ex in /usr/lib64/libspatialite.so - found
-- Qt WebKit support enabled
-- Looking for Q_WS_X11
-- Looking for Q_WS_X11 - found
-- Looking for Q_WS_WIN
-- Looking for Q_WS_WIN - not found
-- Looking for Q_WS_QWS
-- Looking for Q_WS_QWS - not found
-- Looking for Q_WS_MAC
-- Looking for Q_WS_MAC - not found
-- Found Qt4: /usr/bin/qmake (found suitable version "4.8.7", minimum required is "4.8.0")
-- Found Qt version: 4.8.7
-- Touch support disabled
-- Found QScintilla2: /usr/lib64/libqscintilla2.so (2.9.1)
CMake Error at cmake/FindQCA.cmake:64 (message):
Could not find QCA
Call Stack (most recent call first):
CMakeLists.txt:326 (FIND_PACKAGE)


-- Configuring incomplete, errors occurred!
See also "/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeOutput.log".
See also "/tmp/SBo/qgis-2.18.16/build/CMakeFiles/CMakeError.log".

qgis:
Would you like to continue processing the rest of the
queue or would you like to abort? If this failed
package is a dependency of another package in the queue
then it may not make sense to continue.

(Y)es to continue, (N)o to abort, (R)etry the build?:





10. Re: instalação do QGIS

Perfil removido
removido

(usa Nenhuma)

Enviado em 04/02/2018 - 10:29h

Alguém já instalou o QGIS no Slackware 14.02?

Found Qt4: /usr/bin/qmake (found suitable version "4.8.7", minimum required is "4.8.0")






Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts