[Slackbuilds-users] Error compiling webkitgtk
Didier Spaier
didier at slint.fr
Fri Mar 9 09:40:55 UTC 2018
Sorry for the missing files, now attached as well as the configlog.
Didier
Le 09/03/2018 à 10:36, Didier Spaier a écrit :
> Hello,
>
> I apologize if this is the wrong place to ask.
>
> I ma trying to compile webkit2gtk 2.8.26 statically and stripped down, just to afterwards bundling it with yelp without this resulting in a too huge package.
>
> In that aim I have written the attached build script that removes a lot of features that I assume yelp doesn't need.
>
> However the build fails at around 94% completion (end of log attached)
>
> I have tried with -j2 and -j1, same result.
>
> However, I previously built it successfully, but full featured and shared.
>
> A web search came empty.
>
> Any clue appreciated.
>
> Have a good day,
>
> Diider
>
>
-------------- next part --------------
doMouseEvent(GDK_BUTTON_RELEASE, page.viewWidget(), viewPosition, gdkButton, state);
^
/home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp: At
global scope:
/home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp:132:30:
erreur : variable or field ‘doKeyStrokeEvent’ declared void
static void doKeyStrokeEvent(GdkEventType type, GtkWidget* widget, unsigned keyVal, unsigned state, bool doReleaseAfterPress = false)
^
/home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp:132:30:
erreur : ‘GdkEventType’ was not declared in this scope
/home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp:132:58:
erreur : expected primary-expression before ‘*’ token
static void doKeyStrokeEvent(GdkEventType type, GtkWidget* widget, unsigned keyVal, unsigned state, bool doReleaseAfterPress = false)
^
/home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp:132:60:
erreur : ‘widget’ was not declared in this scope
static void doKeyStrokeEvent(GdkEventType type, GtkWidget* widget, unsigned keyVal, unsigned state, bool doReleaseAfterPress = false)
^
/home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp:132:68:
erreur : expected primary-expression before ‘unsigned’
static void doKeyStrokeEvent(GdkEventType type, GtkWidget* widget, unsigned keyVal, unsigned state, bool doReleaseAfterPress = false)
^
/home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp:132:85:
erreur : expected primary-expression before ‘unsigned’
static void doKeyStrokeEvent(GdkEventType type, GtkWidget* widget, unsigned keyVal, unsigned state, bool doReleaseAfterPress = false)
^
/home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp:132:101:
erreur : expected primary-expression before ‘bool’
static void doKeyStrokeEvent(GdkEventType type, GtkWidget* widget, unsigned keyVal, unsigned state, bool doReleaseAfterPress = false)
^
/home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp:312:1:
erreur : expected ‘}’ at end of input
} // namespace WebKit
^
Source/WebKit/CMakeFiles/WebKit2.dir/build.make:15487 : la recette pour la cible
« Source/WebKit/CMakeFiles/WebKit2.dir/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp.o » a échouée
make[2]: *** [Source/WebKit/CMakeFiles/WebKit2.dir/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp.o] Erreur 1
CMakeFiles/Makefile2:1263 : la recette pour la cible « Source/WebKit/CMakeFiles/WebKit2.dir/all » a échouée
make[1]: *** [Source/WebKit/CMakeFiles/WebKit2.dir/all] Erreur 2
-------------- next part --------------
#!/bin/sh
CWD=$(pwd)
pkgname=webkitgtk
pkgver=2.18.6
rm -rf ${pkgname}-$pkgver
if [ -e $CWD/libs ]; then
echo "$CWD/libs already exist. Exiting"
exit
fi
mkdir $CWD/libs
tar xf ${pkgname}-${pkgver}.tar.xz
cd ${pkgname}-$pkgver
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
rm -rf build
mkdir build
cd build
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
cmake .. -DPORT=GTK \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DENABLE_DRAG_SUPPORT=OFF \
-DENABLE_GEOLOCATION=OFF \
-DENABLE_ICONDATABASE=OFF \
-DENABLE_INTROSPECTION=OFF \
-DENABLE_PLUGIN_PROCESS_GTK2=OFF \
-DENABLE_JIT=OFF \
-DENABLE_OPENGL=OFF \
-DENABLE_SAMPLING_PROFILER=OFF \
-DENABLE_SPELLCHECK=OFF \
-DENABLE_TOUCH_EVENTS=OFF \
-DENABLE_VIDEO=OFF \
-DENABLE_WEBDRIVER=OFF \
-DENABLE_WEB_AUDIO=OFF \
-DENABLE_WEB_CRYPTO=OFF \
-DBUILD_SHARED_LIBS=OFF \
-DCMAKE_INSTALL_PREFIX=/usr \
-DLIB_INSTALL_DIR=/usr/lib${LIBDIRSUFFIX} \
-DLIBEXEC_INSTALL_DIR=/usr/lib${LIBDIRSUFFIX}/webkit2gtk-4.0 \
-DUSE_LIBHYPHEN=OFF \
-DUSE_LIBNOTIFY=OFF \
-DUSE_LIBSECRET=OFF \
-DENABLE_GTKDOC=OFF \
2>&1| tee ../../NEWLOG
make -j 1 || return 1
make install DESTDIR=$CWD/libs
-------------- next part --------------
-- The C compiler identification is GNU 5.5.0
-- The CXX compiler identification is GNU 5.5.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
-- The CMake build type is: Release
-- Found Gperf: /usr/bin/gperf (Required is at least version "3.0.1")
-- Found Perl: /usr/bin/perl (found suitable version "5.22.2", minimum required is "5.10.0")
-- Found PythonInterp: /usr/bin/python2.7 (found suitable version "2.7.14", minimum required is "2.7.0")
-- Found Ruby: /usr/bin/ruby (found suitable version "2.2.0", minimum required is "1.9")
-- Performing Test C_COMPILER_SUPPORTS_-fno-strict-aliasing
-- Performing Test C_COMPILER_SUPPORTS_-fno-strict-aliasing - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-fno-strict-aliasing
-- Performing Test CXX_COMPILER_SUPPORTS_-fno-strict-aliasing - Success
-- Performing Test C_COMPILER_SUPPORTS_-fno-exceptions
-- Performing Test C_COMPILER_SUPPORTS_-fno-exceptions - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-fno-exceptions
-- Performing Test CXX_COMPILER_SUPPORTS_-fno-exceptions - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-std=c++14
-- Performing Test CXX_COMPILER_SUPPORTS_-std=c++14 - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-fno-rtti
-- Performing Test CXX_COMPILER_SUPPORTS_-fno-rtti - Success
-- Performing Test C_COMPILER_SUPPORTS_-Wall
-- Performing Test C_COMPILER_SUPPORTS_-Wall - Success
-- Performing Test C_COMPILER_SUPPORTS_-Wextra
-- Performing Test C_COMPILER_SUPPORTS_-Wextra - Success
-- Performing Test C_COMPILER_SUPPORTS_-Wcast-align
-- Performing Test C_COMPILER_SUPPORTS_-Wcast-align - Success
-- Performing Test C_COMPILER_SUPPORTS_-Wformat-security
-- Performing Test C_COMPILER_SUPPORTS_-Wformat-security - Success
-- Performing Test C_COMPILER_SUPPORTS_-Wmissing-format-attribute
-- Performing Test C_COMPILER_SUPPORTS_-Wmissing-format-attribute - Success
-- Performing Test C_COMPILER_SUPPORTS_-Wpointer-arith
-- Performing Test C_COMPILER_SUPPORTS_-Wpointer-arith - Success
-- Performing Test C_COMPILER_SUPPORTS_-Wundef
-- Performing Test C_COMPILER_SUPPORTS_-Wundef - Success
-- Performing Test C_COMPILER_SUPPORTS_-Wwrite-strings
-- Performing Test C_COMPILER_SUPPORTS_-Wwrite-strings - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wall
-- Performing Test CXX_COMPILER_SUPPORTS_-Wall - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wextra
-- Performing Test CXX_COMPILER_SUPPORTS_-Wextra - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wcast-align
-- Performing Test CXX_COMPILER_SUPPORTS_-Wcast-align - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wformat-security
-- Performing Test CXX_COMPILER_SUPPORTS_-Wformat-security - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wmissing-format-attribute
-- Performing Test CXX_COMPILER_SUPPORTS_-Wmissing-format-attribute - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wpointer-arith
-- Performing Test CXX_COMPILER_SUPPORTS_-Wpointer-arith - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wundef
-- Performing Test CXX_COMPILER_SUPPORTS_-Wundef - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wwrite-strings
-- Performing Test CXX_COMPILER_SUPPORTS_-Wwrite-strings - Success
-- Performing Test C_COMPILER_SUPPORTS_-Qunused-arguments
-- Performing Test C_COMPILER_SUPPORTS_-Qunused-arguments - Failed
-- Performing Test C_COMPILER_SUPPORTS_-Wno-expansion-to-defined
-- Performing Test C_COMPILER_SUPPORTS_-Wno-expansion-to-defined - Failed
-- Performing Test C_COMPILER_SUPPORTS_-Wno-maybe-uninitialized
-- Performing Test C_COMPILER_SUPPORTS_-Wno-maybe-uninitialized - Success
-- Performing Test C_COMPILER_SUPPORTS_-Wno-noexcept-type
-- Performing Test C_COMPILER_SUPPORTS_-Wno-noexcept-type - Failed
-- Performing Test C_COMPILER_SUPPORTS_-Wno-parentheses-equality
-- Performing Test C_COMPILER_SUPPORTS_-Wno-parentheses-equality - Failed
-- Performing Test CXX_COMPILER_SUPPORTS_-Qunused-arguments
-- Performing Test CXX_COMPILER_SUPPORTS_-Qunused-arguments - Failed
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-expansion-to-defined
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-expansion-to-defined - Failed
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-maybe-uninitialized
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-maybe-uninitialized - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-noexcept-type
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-noexcept-type - Failed
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-parentheses-equality
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-parentheses-equality - Failed
-- Looking for features.h
-- Looking for features.h - found
-- Looking for errno.h
-- Looking for errno.h - found
-- Looking for langinfo.h
-- Looking for langinfo.h - found
-- Looking for sys/mman.h
-- Looking for sys/mman.h - found
-- Looking for pthread_np.h
-- Looking for pthread_np.h - not found
-- Looking for strings.h
-- Looking for strings.h - found
-- Looking for sys/param.h
-- Looking for sys/param.h - found
-- Looking for sys/time.h
-- Looking for sys/time.h - found
-- Looking for sys/timeb.h
-- Looking for sys/timeb.h - found
-- Looking for _aligned_malloc
-- Looking for _aligned_malloc - not found
-- Looking for IsDebuggerPresent
-- Looking for IsDebuggerPresent - not found
-- Looking for localtime_r
-- Looking for localtime_r - found
-- Looking for strnstr
-- Looking for strnstr - not found
-- Looking for timegm
-- Looking for timegm - found
-- Looking for vasprintf
-- Looking for vasprintf - found
-- Looking for regexec
-- Looking for regexec - found
-- Looking for SIGTRAP
-- Looking for SIGTRAP - found
-- Performing Test HAVE_STAT_BIRTHTIME_value
-- Performing Test HAVE_STAT_BIRTHTIME_value - Failed
-- Performing Test HAVE_TM_GMTOFF_value
-- Performing Test HAVE_TM_GMTOFF_value - Success
-- Performing Test HAVE_TM_ZONE_value
-- Performing Test HAVE_TM_ZONE_value - Success
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of __int128_t
-- Check size of __int128_t - done
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.2")
-- Found Cairo: /usr/include/cairo (found suitable version "1.14.6", minimum required is "1.10.2")
-- Checking for module 'fontconfig'
-- Found fontconfig, version 2.11.1
-- Found Fontconfig: /usr/lib64/libfontconfig.so (Required is at least version "2.8.0")
-- Checking for module 'freetype2'
-- Found freetype2, version 18.3.12
-- Found Freetype2: /usr/include/freetype2/freetype;/usr/include/freetype2 (Required is at least version "2.4.2")
-- Found LibGcrypt: /usr/lib64/libgcrypt.so (found suitable version "1.7.9", minimum required is "1.6.0")
-- Checking for module 'gtk+-3.0'
-- Found gtk+-3.0, version 3.18.9
-- Checking for module 'gtk+-quartz-3.0'
-- No package 'gtk+-quartz-3.0' found
-- Checking for module 'gtk+-x11-3.0'
-- Found gtk+-x11-3.0, version 3.18.9
-- Checking for module 'gtk+-wayland-3.0'
-- No package 'gtk+-wayland-3.0' found
-- Found GTK3: /usr/include/gtk-3.0;/usr/include/at-spi2-atk/2.0;/usr/include/at-spi-2.0;/usr/include/dbus-1.0;/usr/lib64/dbus-1.0/include;/usr/include/gtk-3.0;/usr/include/gio-unix-2.0/;/usr/include/cairo;/usr/include/pango-1.0;/usr/include/atk-1.0;/usr/include/cairo;/usr/include/pixman-1;/usr/include/freetype2;/usr/include/libpng16;/usr/include/harfbuzz;/usr/include/glib-2.0;/usr/lib64/glib-2.0/include;/usr/include/freetype2;/usr/include/harfbuzz;/usr/include/libdrm;/usr/include/libpng16;/usr/include/gdk-pixbuf-2.0;/usr/include/libpng16;/usr/include/glib-2.0;/usr/lib64/glib-2.0/include (Required is at least version "3.6.0")
-- Checking for module 'gdk-3.0'
-- Found gdk-3.0, version 3.18.9
-- Found GDK3: /usr/include/gtk-3.0;/usr/include/gio-unix-2.0/;/usr/include/cairo;/usr/include/pango-1.0;/usr/include/gdk-pixbuf-2.0;/usr/include/libpng16;/usr/include/cairo;/usr/include/pixman-1;/usr/include/freetype2;/usr/include/libpng16;/usr/include/harfbuzz;/usr/include/glib-2.0;/usr/lib64/glib-2.0/include;/usr/include/freetype2;/usr/include/harfbuzz;/usr/include/libdrm;/usr/include/libpng16;/usr/include/glib-2.0;/usr/lib64/glib-2.0/include (Required is at least version "3.6.0")
-- Checking for module 'harfbuzz>=0.9.7'
-- Found harfbuzz, version 1.2.7
-- Checking for module 'harfbuzz-icu>=0.9.18'
-- Found harfbuzz-icu, version 1.2.7
-- Found HarfBuzz: /usr/include/harfbuzz (Required is at least version "0.9.2")
-- Checking for module 'icu-uc'
-- Found icu-uc, version 56.1
-- Checking for module 'icu-i18n'
-- Found icu-i18n, version 56.1
-- Found ICU header files in /usr/include
-- Found ICU libraries: /usr/lib64/libicuuc.so
-- Found ICU internationaliation libraries: /usr/lib64/libicui18n.so
-- Found ICU data libraries: /usr/lib64/libicudata.so
-- Found JPEG: /usr/lib64/libjpeg.so
-- Found LibSoup: /usr/include/libsoup-2.4 (found suitable version "2.52.2", minimum required is "2.42.0")
-- Found LibXml2: /usr/lib64/libxml2.so (found suitable version "2.9.5", minimum required is "2.8.0")
-- Found ZLIB: /usr/lib64/libz.so (found version "1.2.8")
-- Found PNG: /usr/lib64/libpng.so (found version "1.6.27")
-- Checking for module 'sqlite3'
-- Found sqlite3, version 3.13.0
-- Found Sqlite: /usr/include
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
-- Checking for module 'atk'
-- Found atk, version 2.27.1
-- Found ATK: /usr/include/atk-1.0 (found version "2.27.1")
-- Found WebP: /usr/include
-- Checking for module 'atspi-2'
-- Found atspi-2, version 2.26.2
-- Found ATSPI: /usr/include/at-spi-2.0;/usr/include/dbus-1.0;/usr/lib64/dbus-1.0/include;/usr/include/glib-2.0;/usr/lib64/glib-2.0/include (Required is at least version "2.5.3")
-- Checking for module 'egl'
-- Found egl, version 11.2.2
-- Found EGL: /usr/include
-- Checking for module 'gtk+-unix-print-3.0'
-- Found gtk+-unix-print-3.0, version 3.18.9
-- Found GTKUnixPrint: /usr/include/gtk-3.0/unix-print;/usr/include/gtk-3.0;/usr/include/at-spi2-atk/2.0;/usr/include/at-spi-2.0;/usr/include/dbus-1.0;/usr/lib64/dbus-1.0/include;/usr/include/gtk-3.0;/usr/include/gio-unix-2.0/;/usr/include/cairo;/usr/include/pango-1.0;/usr/include/atk-1.0;/usr/include/cairo;/usr/include/pixman-1;/usr/include/freetype2;/usr/include/libpng16;/usr/include/harfbuzz;/usr/include/glib-2.0;/usr/lib64/glib-2.0/include;/usr/include/freetype2;/usr/include/harfbuzz;/usr/include/libdrm;/usr/include/libpng16;/usr/include/gdk-pixbuf-2.0;/usr/include/libpng16;/usr/include/glib-2.0;/usr/lib64/glib-2.0/include
-- Checking for module 'gl'
-- Found gl, version 11.2.2
-- Found OpenGL: /usr/include
-- Looking for include file GL/glx.h
-- Looking for include file GL/glx.h - found
-- Checking for module 'glesv2'
-- Found glesv2, version 11.2.2
-- Found OpenGLES2: /usr/include
-- Disabling ENABLE_3D_TRANSFORMS since ENABLE_OPENGL is disabled.
-- Disabling ENABLE_DFG_JIT since ENABLE_JIT is disabled.
-- Disabling ENABLE_FTL_JIT since ENABLE_DFG_JIT is disabled.
-- Disabling ENABLE_MEDIA_CONTROLS_SCRIPT since ENABLE_VIDEO is disabled.
-- Disabling ENABLE_SUBTLE_CRYPTO since ENABLE_WEB_CRYPTO is disabled.
-- Disabling ENABLE_VIDEO_TRACK since ENABLE_VIDEO is disabled.
-- Disabling ENABLE_WEBASSEMBLY since ENABLE_FTL_JIT is disabled.
-- Disabling ENABLE_WEBGL since ENABLE_OPENGL is disabled.
-- Disabling USE_GSTREAMER_GL since ENABLE_OPENGL is disabled.
-- Disabling USE_REDIRECTED_XCOMPOSITE_WINDOW since ENABLE_OPENGL is disabled.
-- Found GLIB: /usr/include/glib-2.0;/usr/lib64/glib-2.0/include (found suitable version "2.46.2", minimum required is "2.36")
-- Found LibXslt: /usr/lib64/libxslt.so (found suitable version "1.1.29", minimum required is "1.1.7")
-- Looking for XOpenDisplay in /usr/lib64/libX11.so;/usr/lib64/libXext.so
-- Looking for XOpenDisplay in /usr/lib64/libX11.so;/usr/lib64/libXext.so - found
-- Looking for gethostbyname
-- Looking for gethostbyname - found
-- Looking for connect
-- Looking for connect - found
-- Looking for remove
-- Looking for remove - found
-- Looking for shmat
-- Looking for shmat - found
-- Looking for IceConnectionNumber in ICE
-- Looking for IceConnectionNumber in ICE - found
-- Found X11: /usr/lib64/libX11.so
-- Using platform-specific CMakeLists: /home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WTF/wtf/PlatformGTK.cmake
-- Using platform-specific CMakeLists: /home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/JavaScriptCore/PlatformGTK.cmake
-- Using platform-specific CMakeLists: /home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/JavaScriptCore/shell/PlatformGTK.cmake
-- Performing Test C_COMPILER_SUPPORTS_-Wno-cast-align
-- Performing Test C_COMPILER_SUPPORTS_-Wno-cast-align - Success
-- Performing Test C_COMPILER_SUPPORTS_-Wno-implicit-fallthrough
-- Performing Test C_COMPILER_SUPPORTS_-Wno-implicit-fallthrough - Failed
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-cast-align
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-cast-align - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-implicit-fallthrough
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-implicit-fallthrough - Failed
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-sign-compare
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-sign-compare - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-unused-variable
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-unused-variable - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-unused-parameter
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-unused-parameter - Success
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-unused-but-set-variable
-- Performing Test CXX_COMPILER_SUPPORTS_-Wno-unused-but-set-variable - Success
-- Performing Test C_COMPILER_SUPPORTS_-Wno-sign-compare
-- Performing Test C_COMPILER_SUPPORTS_-Wno-sign-compare - Success
-- Performing Test C_COMPILER_SUPPORTS_-Wno-unused-parameter
-- Performing Test C_COMPILER_SUPPORTS_-Wno-unused-parameter - Success
-- Using platform-specific CMakeLists: /home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WebCore/PAL/pal/PlatformGTK.cmake
-- Using platform-specific CMakeLists: /home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WebCore/PlatformGTK.cmake
-- Performing Test ATOMIC_INT64_IS_BUILTIN
-- Performing Test ATOMIC_INT64_IS_BUILTIN - Success
-- Looking for shm_open
-- Looking for shm_open - not found
-- Looking for shm_open
-- Looking for shm_open - found
-- Using platform-specific CMakeLists: /home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/WebKit/PlatformGTK.cmake
-- Using platform-specific CMakeLists: /home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/Source/PlatformGTK.cmake
-- Found Gettext: /usr/bin/msgmerge (found version "0.19.8.1")
-- Enabled features:
-- ENABLE_ACCELERATED_2D_CANVAS .......... OFF
-- ENABLE_DRAG_SUPPORT OFF
-- ENABLE_GEOLOCATION .................... OFF
-- ENABLE_GLES2 OFF
-- ENABLE_GTKDOC ......................... OFF
-- ENABLE_ICONDATABASE OFF
-- ENABLE_INTROSPECTION .................. OFF
-- ENABLE_JIT OFF
-- ENABLE_MINIBROWSER .................... OFF
-- ENABLE_OPENGL OFF
-- ENABLE_PLUGIN_PROCESS_GTK2 ............ OFF
-- ENABLE_QUARTZ_TARGET OFF
-- ENABLE_SAMPLING_PROFILER .............. OFF
-- ENABLE_SPELLCHECK OFF
-- ENABLE_TOUCH_EVENTS ................... OFF
-- ENABLE_VIDEO OFF
-- ENABLE_WAYLAND_TARGET ................. OFF
-- ENABLE_WEBDRIVER OFF
-- ENABLE_WEB_AUDIO ...................... OFF
-- ENABLE_WEB_CRYPTO OFF
-- ENABLE_X11_TARGET ..................... ON
-- USE_LIBHYPHEN OFF
-- USE_LIBNOTIFY ......................... OFF
-- USE_LIBSECRET OFF
-- USE_SYSTEM_MALLOC ..................... OFF
-- Configuring done
-- Generating done
-- Build files have been written to: /home/didier/Slint/repo/x86_64/slint-14.2.1/next/source/yelp/webkitgtk-2.18.6/build
More information about the SlackBuilds-users
mailing list