Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Aug 2019 18:42:33 +0000 (UTC)
From:      Rene Ladan <rene@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r509235 - in head/www/wt: . files
Message-ID:  <201908181842.x7IIgXW1061232@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rene
Date: Sun Aug 18 18:42:32 2019
New Revision: 509235
URL: https://svnweb.freebsd.org/changeset/ports/509235

Log:
  Fix and update wwww/wt to version 4.1.0.
  
  Minor corrections from me.
  
  PR:		226160
  Submitted by:	maintainer
  MFH:		2019Q3

Modified:
  head/www/wt/Makefile
  head/www/wt/distinfo
  head/www/wt/files/patch-CMakeLists.txt
  head/www/wt/pkg-plist

Modified: head/www/wt/Makefile
==============================================================================
--- head/www/wt/Makefile	Sun Aug 18 17:30:17 2019	(r509234)
+++ head/www/wt/Makefile	Sun Aug 18 18:42:32 2019	(r509235)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	wt
-PORTVERSION=	3.3.7
-PORTREVISION=	16
+DISTVERSION=	4.1.0
 CATEGORIES=	www
 
 MAINTAINER=	info@babaei.net
@@ -12,210 +11,144 @@ COMMENT=	Widget-centric C++ library for developing web
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-LIB_DEPENDS+=	libpng.so:graphics/png \
+BROKEN_powerpc64=	fails to link: libwthttp.so. undefined reference to boost::program_options::abstract_variables_map::operator
+
+LIB_DEPENDS=	libpng.so:graphics/png \
 		libboost_system.so:devel/boost-libs \
 		libGraphicsMagick.so:graphics/GraphicsMagick
 
-BROKEN=		fails to build with boost 1.66, see bug 224183
-DEPRECATED=	Broken for more than 5 months
-EXPIRATION_DATE=	2018-08-20
-BROKEN_powerpc64=	fails to link: libwthttp.so. undefined reference to boost::program_options::abstract_variables_map::operator
-
+USES=		cmake compiler:c++14-lang pkgconfig ssl
 USE_GITHUB=	yes
-GH_ACCOUNT=	kdeforche
+GH_ACCOUNT=	emweb
+USE_XORG=	x11
 USE_LDCONFIG=	yes
-USE_XORG+=x11
-USES=		cmake pkgconfig ssl
-CMAKE_ARGS+=	-DCONFIGDIR:STRING=${LOCALBASE}/etc/wt \
-	-DGM_PREFIX:STRING=${LOCALBASE} \
-	-DPNG_PREFIX:STRING=${LOCALBASE} \
-	-DSSL_PREFIX:STRING=/usr \
-	-DZLIB_PREFIX:STRING=/usr \
-	-DCONNECTOR_ISAPI:BOOL=OFF \
-	-DWEBUSER:STRING=www \
-	-DWEBGROUP:STRING=www \
-	-DWT_WRASTERIMAGE_IMPLEMENTATION:STRING=GraphicsMagick \
-	-DENABLE_SSL:BOOL=ON
 
-NO_OPTIONS_SORT=	yes
+CMAKE_ARGS=	-DCONFIGDIR:STRING=${LOCALBASE}/etc/${PORTNAME} \
+		-DGM_PREFIX:STRING=${LOCALBASE} \
+		-DEXAMPLES_DESTINATION:STRING=share/examples/${PORTNAME} \
+		-DSSL_PREFIX:STRING=/usr \
+		-DZLIB_PREFIX:STRING=/usr \
+		-DCONNECTOR_ISAPI:BOOL=OFF \
+		-DWEBUSER:STRING=www \
+		-DWEBGROUP:STRING=www \
+		-DWT_WRASTERIMAGE_IMPLEMENTATION:STRING=GraphicsMagick \
+		-DENABLE_SSL:BOOL=ON \
+		-DDESTDIR:STRING=${STAGEDIR}
+
 OPTIONS_DEFINE=	\
-	DOXYGEN \
 	EXAMPLES \
 	TESTS \
 	RESOURCES \
-	CMAKE_MODULE \
-	CPP11 \
 	HARU \
 	PANGO \
-	EXT \
+	QT5 \
+	OPENGL \
 	LIBWTTEST \
-	OPENGL
+	UNWIND
 OPTIONS_DEFAULT=	\
 	TESTS \
 	RESOURCES \
-	CMAKE_MODULE \
-	CPP11 \
 	HARU \
 	PANGO \
 	OPENGL \
 	LIBWTTEST
 OPTIONS_GROUP=	CONNECTOR DBO WSTRING
 OPTIONS_SUB=	yes
+NO_OPTIONS_SORT=	yes
 
 EXAMPLES_DESC=		Install examples (implies SQLITE3 and WTHTTP)
 TESTS_DESC=		Build Wt tests
 RESOURCES_DESC=		Install resources directory
-CMAKE_MODULE_DESC=	Install FindWt.cmake in systemwide cmake dir
-CPP11_DESC=		Compile Wt in C++11 mode (Clang or GCC 4.6+)
 HARU_DESC=		Enable Haru Free PDF Library
-EXT_DESC=		Build Wt Ext library with JavaScript-only widgets
 LIBWTTEST_DESC=		Build Wt::Test for automated (integration/unit) tests
+UNWIND_DESC=		Build Wt with stacktrace support using libunwind
 
 OPTIONS_GROUP_CONNECTOR=	FCGI WTHTTP
-OPTIONS_DEFAULT +=	FCGI WTHTTP
+OPTIONS_DEFAULT+=	FCGI WTHTTP
 CONNECTOR_DESC=		Connector
 FCGI_DESC=		Build FastCGI connector
 WTHTTP_DESC=		Build Wt stand-alone httpd connector
 
 OPTIONS_GROUP_DBO=	SQLITE3 POSTGRES FIREBIRD MYSQL
-OPTIONS_DEFAULT +=	SQLITE3
+OPTIONS_DEFAULT+=	SQLITE3
 DBO_DESC=		Wt::DBO
 SQLITE3_DESC=		Build Wt with SQLite 3 support
 POSTGRES_DESC=		Build Wt with PostgreSQL support
 FIREBIRD_DESC=		Build Wt with Firebird support
 MYSQL_DESC=		Build Wt with MariaDB or MySQL support
 
-OPTIONS_GROUP_WSTRING=	NO_STD_LOCALE NO_STD_WSTRING
-WSTRING_DESC=		Wt::WString
-NO_STD_LOCALE_DESC=	Build for a system without std::locale support
-NO_STD_WSTRING_DESC=	Build for a system without std::wstring support
-
 EXAMPLES_IMPLIES=	SQLITE3 WTHTTP
+EXAMPLES_CMAKE_BOOL=	BUILD_EXAMPLES INSTALL_EXAMPLES
 
-CMAKE_MODULE_CMAKE_ON=	-DINSTALL_FINDWT_CMAKE_FILE:BOOL=ON
-CMAKE_MODULE_CMAKE_OFF=	-DINSTALL_FINDWT_CMAKE_FILE:BOOL=OFF
-DOXYGEN_CMAKE_ON=		-DBUILD_DOCS:BOOL=ON
-DOXYGEN_CMAKE_OFF=		-DBUILD_DOCS:BOOL=OFF
-FCGI_CMAKE_ON=		-DCONNECTOR_FCGI:BOOL=ON
-FCGI_CMAKE_OFF=		-DCONNECTOR_FCGI:BOOL=OFF
-FIREBIRD_CMAKE_ON=	-DENABLE_FIREBIRD:BOOL=ON
-FIREBIRD_CMAKE_OFF=	-DENABLE_FIREBIRD:BOOL=OFF
-EXT_CMAKE_ON=		-DENABLE_EXT:BOOL=ON
-EXT_CMAKE_OFF=		-DENABLE_EXT:BOOL=OFF
-HARU_CMAKE_ON=		-DENABLE_HARU:BOOL=ON
-HARU_CMAKE_OFF=		-DENABLE_HARU:BOOL=OFF
-LIBWTTEST_CMAKE_ON=	-DENABLE_LIBWTTEST:BOOL=ON
-LIBWTTEST_CMAKE_OFF=	-DENABLE_LIBWTTEST:BOOL=OFF
-MYSQL_CMAKE_ON=		-DENABLE_MYSQL:BOOL=ON
-MYSQL_CMAKE_OFF=	-DENABLE_MYSQL:BOOL=OFF
-NO_STD_LOCALE_CMAKE_ON=	-DWT_NO_STD_LOCALE:BOOL=ON
-NO_STD_LOCALE_CMAKE_OFF=-DWT_NO_STD_LOCALE:BOOL=OFF
-NO_STD_WSTRING_CMAKE_ON=	-DWT_NO_STD_WSTRING:BOOL=ON
-NO_STD_WSTRING_CMAKE_OFF=	-DWT_NO_STD_WSTRING:BOOL=OFF
-OPENGL_CMAKE_ON=	-DENABLE_OPENGL:BOOL=ON
-OPENGL_CMAKE_OFF=	-DENABLE_OPENGL:BOOL=OFF
-PANGO_CMAKE_ON=		-DENABLE_PANGO:BOOL=ON
-PANGO_CMAKE_OFF=	-DENABLE_PANGO:BOOL=OFF
-POSTGRES_CMAKE_ON=	-DENABLE_POSTGRES:BOOL=ON
-POSTGRES_CMAKE_OFF=	-DENABLE_POSTGRES:BOOL=OFF
-RESOURCES_CMAKE_ON=	-DINSTALL_RESOURCES:BOOL=ON
-RESOURCES_CMAKE_OFF=	-DINSTALL_RESOURCES:BOOL=OFF
-SQLITE_CMAKE_ON=	-DENABLE_SQLITE:BOOL=ON
-SQLITE_CMAKE_OFF=	-DENABLE_SQLITE:BOOL=OFF
-TESTS_CMAKE_ON=		-DBUILD_TESTS:BOOL=ON
-TESTS_CMAKE_OFF=	-DBUILD_TESTS:BOOL=OFF
-WTHTTP_CMAKE_ON=	-DCONNECTOR_HTTP:BOOL=ON
-WTHTTP_CMAKE_OFF=	-DCONNECTOR_HTTP:BOOL=OFF
+FCGI_CMAKE_BOOL=	CONNECTOR_FCGI
+FCGI_LIB_DEPENDS=	libfcgi.so:www/fcgi \
+			libfcgi++.so:www/fcgi
+FCGI_CMAKE_ON=		-DFCGI_PREFIX:STRING=${LOCALBASE}
 
-.include <bsd.port.options.mk>
+FIREBIRD_CMAKE_BOOL=	ENABLE_FIREBIRD
+FIREBIRD_USES=		firebird
+FIREBIRD_CMAKE_ON=	-DFIREBIRD_PREFIX:STRING=${LOCALBASE} \
+			-DENABLE_LIBWTDBO:BOOL=ON
 
-.if ${PORT_OPTIONS:MDOXYGEN}
-BUILD_DEPENDS+=	asciidoc:textproc/asciidoc \
-		doxygen:devel/doxygen
-.endif
+HARU_CMAKE_BOOL=	ENABLE_HARU
+HARU_LIB_DEPENDS=	libhpdf.so:print/libharu
+HARU_CMAKE_ON=	-DHARU_PREFIX:STRING=${LOCALBASE}
 
-.if ${PORT_OPTIONS:MEXAMPLES}
-CMAKE_ARGS+=	-DBUILD_EXAMPLES:BOOL=ON -DINSTALL_EXAMPLES:BOOL=ON
-.if ${PORT_OPTIONS:MSQLITE3} \
-	|| ${PORT_OPTIONS:MPOSTGRES} \
-	|| ${PORT_OPTIONS:MFIREBIRD} \
-	|| ${PORT_OPTIONS:MMYSQL}
-PLIST_SUB+=	DBO_EXAMPLES=""
-.if ${PORT_OPTIONS:MSQLITE3}
-.else
-PLIST_SUB+=	DBO_SQLITE3_EXAMPLES=""
-.endif
-PLIST_SUB+=	DBO_SQLITE3_EXAMPLES="@comment "
-.else
-PLIST_SUB+=	DBO_EXAMPLES="@comment "
-PLIST_SUB+=	DBO_SQLITE3_EXAMPLES="@comment "
-.endif
-.else
-CMAKE_ARGS+=	-DBUILD_EXAMPLES:BOOL=OFF -DINSTALL_EXAMPLES:BOOL=OFF
-PLIST_SUB+=	DBO_EXAMPLES="@comment "
-PLIST_SUB+=	DBO_SQLITE3_EXAMPLES="@comment "
-.endif
+LIBWTTEST_CMAKE_BOOL=	ENABLE_LIBWTTEST
 
-.if ${PORT_OPTIONS:MCPP11}
-USES+=		compiler:c++11-lib
-CMAKE_ARGS+=	-DWT_CPP_11_MODE:STRING=-std=c++0x
-.endif
+MYSQL_USES=		mysql
+MYSQL_CMAKE_BOOL=	ENABLE_MYSQL
+MYSQL_CMAKE_ON=		-DMYSQL_PREFIX:STRING=${LOCALBASE} \
+			-DENABLE_LIBWTDBO:BOOL=ON
 
-.if ${PORT_OPTIONS:MHARU}
-LIB_DEPENDS+=	libhpdf.so:print/libharu
-CMAKE_ARGS+=	-DHARU_PREFIX:STRING=${LOCALBASE}
-.endif
+OPENGL_CMAKE_BOOL=	ENABLE_OPENGL
+OPENGL_USE=		GL=gl,glew
+OPENGL_USES=		gl
 
-.if ${PORT_OPTIONS:MPANGO}
-USE_GNOME+=	pango
-.endif
+PANGO_CMAKE_BOOL=	ENABLE_PANGO
+PANGO_USE=		GNOME=pango
+PANGO_USES=		gnome
+PANGO_LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig
 
-.if ${PORT_OPTIONS:MOPENGL}
-USE_GL=		gl glew
-.endif
+POSTGRES_CMAKE_BOOL=	ENABLE_POSTGRES
+POSTGRES_USES=		pgsql
+POSTGRES_CMAKE_ON=	-DPOSTGRES_PREFIX:STRING=${LOCALBASE} \
+			-DENABLE_LIBWTDBO:BOOL=ON
 
-.if ${PORT_OPTIONS:MFCGI}
-LIB_DEPENDS+=	libfcgi.so:www/fcgi \
-		libfcgi++.so:www/fcgi
+QT5_CMAKE_BOOL=		ENABLE_QT5
+QT5_USE=		qt=buildtools_build,core
+QT5_USES=		qt:5
 
-CMAKE_ARGS+=	-DFCGI_PREFIX:STRING=${LOCALBASE}
-.endif
+RESOURCES_CMAKE_BOOL=	INSTALL_RESOURCES
 
-.if ${PORT_OPTIONS:MSQLITE3} \
-	|| ${PORT_OPTIONS:MPOSTGRES} \
-	|| ${PORT_OPTIONS:MFIREBIRD} \
-	|| ${PORT_OPTIONS:MMYSQL}
-CMAKE_ARGS+=	-DENABLE_LIBWTDBO:BOOL=ON
-PLIST_SUB+=	DBO=""
-.else
-CMAKE_ARGS+=	-DENABLE_LIBWTDBO:BOOL=OFF
-PLIST_SUB+=	DBO="@comment "
-.endif
+SQLITE3_CMAKE_BOOL=	ENABLE_SQLITE
+SQLITE3_USES=		sqlite:3
+SQLITE3_CMAKE_ON=	-DENABLE_LIBWTDBO:BOOL=ON
 
-.if ${PORT_OPTIONS:MSQLITE3}
-USES+=		sqlite:3
-CMAKE_ARGS+=	-DSQLITE3_PREFIX:STRING=${LOCALBASE}
-.endif
+TESTS_CMAKE_BOOL=	BUILD_TESTS
 
-.if ${PORT_OPTIONS:MPOSTGRES}
-USES+=		pgsql
-CMAKE_ARGS+=	-DPOSTGRES_PREFIX:STRING=${LOCALBASE}
-.endif
+UNWIND_CMAKE_BOOL=	ENABLE_UNWIND
+UNWIND_LIB_DEPENDS=	libunwind.so:devel/libunwind
 
-.if ${PORT_OPTIONS:MFIREBIRD}
-USES+=		firebird
-CMAKE_ARGS+=	-DFIREBIRD_PREFIX:STRING=${LOCALBASE}
-.endif
+WTHTTP_CMAKE_BOOL=	CONNECTOR_HTTP
 
-.if ${PORT_OPTIONS:MMYSQL}
-USE_MYSQL=	yes
-CMAKE_ARGS+=	-DMYSQL_PREFIX:STRING=${LOCALBASE}
+PORTEXAMPLES=	*
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MSQLITE3} || \
+    ${PORT_OPTIONS:MPOSTGRES} || \
+    ${PORT_OPTIONS:MFIREBIRD} || \
+    ${PORT_OPTIONS:MMYSQL}
+PLIST_SUB+=	DBO=""
+.else
+PLIST_SUB+=	DBO="@comment "
 .endif
 
 post-install:
 	@${RM} ${STAGEDIR}${ETCDIR}/wt_config.xml
 	@${MKDIR} ${STAGEDIR}${ETCDIR}
-	@${CP} -p ${BUILD_WRKSRC}/wt_config.xml \
+	${INSTALL_DATA} ${BUILD_WRKSRC}/wt_config.xml \
 		${STAGEDIR}${ETCDIR}/wt_config.xml.sample
 
 .include <bsd.port.mk>

Modified: head/www/wt/distinfo
==============================================================================
--- head/www/wt/distinfo	Sun Aug 18 17:30:17 2019	(r509234)
+++ head/www/wt/distinfo	Sun Aug 18 18:42:32 2019	(r509235)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1491079306
-SHA256 (kdeforche-wt-3.3.7_GH0.tar.gz) = 054af8d62a7c158df62adc174a6a57610868470a07e7192ee7ce60a18552851d
-SIZE (kdeforche-wt-3.3.7_GH0.tar.gz) = 8544988
+TIMESTAMP = 1565657157
+SHA256 (emweb-wt-4.1.0_GH0.tar.gz) = 03a8b59e054780f13443e95b6acd01a4575db70f718aed39c8bdf830253823d6
+SIZE (emweb-wt-4.1.0_GH0.tar.gz) = 8746560

Modified: head/www/wt/files/patch-CMakeLists.txt
==============================================================================
--- head/www/wt/files/patch-CMakeLists.txt	Sun Aug 18 17:30:17 2019	(r509234)
+++ head/www/wt/files/patch-CMakeLists.txt	Sun Aug 18 18:42:32 2019	(r509235)
@@ -1,85 +1,17 @@
---- CMakeLists.txt.orig	2016-01-01 10:26:34 UTC
+--- CMakeLists.txt.orig	2019-08-13 16:57:51 UTC
 +++ CMakeLists.txt
-@@ -6,6 +6,8 @@ IF(COMMAND CMAKE_POLICY)
-   CMAKE_POLICY(SET CMP0002 OLD)
-   CMAKE_POLICY(SET CMP0003 OLD)
-   CMAKE_POLICY(SET CMP0005 OLD)
-+  CMAKE_POLICY(SET CMP0037 OLD)
-+  CMAKE_POLICY(SET CMP0046 OLD)
- ENDIF(COMMAND CMAKE_POLICY)
- 
- PROJECT(WT)
-@@ -340,7 +342,11 @@ INCLUDE(cmake/WtFindPng.txt)
- INCLUDE(cmake/WtFindSsl.txt)
- INCLUDE(cmake/WtFindMysql.txt)
- INCLUDE(cmake/WtFindPostgresql.txt)
--INCLUDE(cmake/WtFindAsciidoc.txt)
-+
-+IF (BUILD_DOCS)
-+    INCLUDE(cmake/WtFindAsciidoc.txt)
-+ENDIF (BUILD_DOCS)
-+
- INCLUDE(cmake/WtFindHaru.txt)
- INCLUDE(cmake/WtFindGm.txt)
- INCLUDE(cmake/WtFindGL.txt)
-@@ -462,7 +468,9 @@ ELSE (${WT_WRASTERIMAGE_IMPLEMENTATION} 
-     MESSAGE("** Disabled WRasterimage support. Set WT_WRASTERIMAGE_IMPLEMENTATION to GraphicsMagick or skia.")
- ENDIF (${WT_WRASTERIMAGE_IMPLEMENTATION} STREQUAL "GraphicsMagick")
- 
--FIND_PACKAGE(Doxygen)
-+IF (BUILD_DOCS)
-+    FIND_PACKAGE(Doxygen)
-+ENDIF (BUILD_DOCS)
- 
- # Boost is used nearly everywhere, so we can put these here
- INCLUDE_DIRECTORIES(${BOOST_INCLUDE_DIRS})
-@@ -498,27 +506,29 @@ ENDIF(DEBUG)
- 
- ADD_CUSTOM_TARGET(doc)
- 
--IF (ASCIIDOC_FOUND)
--  MACRO (ASCIIDOC_FILE target infile outfile)
--    ADD_CUSTOM_TARGET(${target}
--       ${ASCIIDOC_EXECUTABLE} -a toc -a numbered -a icons -a  theme=emweb -a pygments -a linkcss -o ${outfile} ${infile}
--       COMMENT "Asciidoc ${infile}")
--    ADD_DEPENDENCIES(doc ${target})
--  ENDMACRO (ASCIIDOC_FILE)
--ENDIF (ASCIIDOC_FOUND)
-+IF (BUILD_DOCS)
-+    IF (ASCIIDOC_FOUND)
-+      MACRO (ASCIIDOC_FILE target infile outfile)
-+        ADD_CUSTOM_TARGET(${target}
-+           ${ASCIIDOC_EXECUTABLE} -a toc -a numbered -a icons -a  theme=emweb -a pygments -a linkcss -o ${outfile} ${infile}
-+           COMMENT "Asciidoc ${infile}")
-+        ADD_DEPENDENCIES(doc ${target})
-+      ENDMACRO (ASCIIDOC_FILE)
-+    ENDIF (ASCIIDOC_FOUND)
- 
--IF (DOXYGEN_FOUND)
--  ADD_CUSTOM_TARGET(doxygen
--    ${DOXYGEN_EXECUTABLE}
--    WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
--    COMMENT "Doxygen ...")
--  ADD_DEPENDENCIES(doc doxygen)
--  ADD_CUSTOM_TARGET(doxygen-examples
--    ${DOXYGEN_EXECUTABLE}
--    WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/examples
--    COMMENT "Doxygen for examples ...")
--  ADD_DEPENDENCIES(doc doxygen-examples)
--ENDIF (DOXYGEN_FOUND)
-+    IF (DOXYGEN_FOUND)
-+      ADD_CUSTOM_TARGET(doxygen
-+        ${DOXYGEN_EXECUTABLE}
-+        WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
-+        COMMENT "Doxygen ...")
-+      ADD_DEPENDENCIES(doc doxygen)
-+      ADD_CUSTOM_TARGET(doxygen-examples
-+        ${DOXYGEN_EXECUTABLE}
-+        WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/examples
-+        COMMENT "Doxygen for examples ...")
-+      ADD_DEPENDENCIES(doc doxygen-examples)
-+    ENDIF (DOXYGEN_FOUND)
-+ENDIF (BUILD_DOCS)
- 
- # we enable rpath support for APPLE, this probably goes against policy
- # linux distributions?
+@@ -63,11 +63,11 @@ OPTION(ENABLE_SQLITE "Build SQLite3 backend for Wt::Db
+ OPTION(ENABLE_POSTGRES "Build PostgreSQL backend for Wt::Dbo" ON)
+ OPTION(ENABLE_FIREBIRD "Build FirebirdSQL backend for Wt::Dbo" ON)
+ OPTION(ENABLE_MYSQL "Build mariadb/mysql backend for Wt::Dbo" ON)
+-OPTION(ENABLE_MSSQLSERVER "Build Microsoft SQL Server backend for Wt::Dbo" ON)
+-OPTION(ENABLE_QT4 "Build Qt4 interworking library (libwtwithqt)" ON)
++OPTION(ENABLE_MSSQLSERVER "Build Microsoft SQL Server backend for Wt::Dbo" OFF) # Microsoft Windows only option
++OPTION(ENABLE_QT4 "Build Qt4 interworking library (libwtwithqt)" OFF) # QT4 is no longer available in FreeBSD Ports
+ OPTION(ENABLE_QT5 "Build Qt5 interworking library (libwtwithqt5)" ON)
+ OPTION(ENABLE_LIBWTTEST "Build Wt::Test" ON)
+-OPTION(ENABLE_LIBWTDBO "Build Wt::Dbo" ON)
++OPTION(ENABLE_LIBWTDBO "Build Wt::Dbo" OFF) # OFF is a more convenient default for FreeBSD options
+ OPTION(WT_NO_STD_LOCALE "Build Wt to run on a system without std::locale support" OFF)
+ OPTION(WT_NO_STD_WSTRING "Build Wt to run on a system without std::wstring support" OFF)
+ OPTION(ENABLE_OPENGL "Build Wt with support for server-side opengl rendering" ON)

Modified: head/www/wt/pkg-plist
==============================================================================
--- head/www/wt/pkg-plist	Sun Aug 18 17:30:17 2019	(r509234)
+++ head/www/wt/pkg-plist	Sun Aug 18 18:42:32 2019	(r509235)
@@ -1,1309 +1,421 @@
-@postunexec cmp -s %D/%%ETCDIR%%/wt_config.xml.sample %D/%%ETCDIR%%/wt_config.xml && rm -f %D/%%ETCDIR%%/wt_config.xml || true
-%%ETCDIR%%/wt_config.xml.sample
-@postexec if [ ! -f %D/%%ETCDIR%%/wt_config.xml ]; then cp -p %D/%%ETCDIR%%/wt_config.xml.sample %D/%%ETCDIR%%/wt_config.xml; fi
-include/Wt/Auth/AbstractPasswordService
-include/Wt/Auth/AbstractUserDatabase
-include/Wt/Auth/AuthModel
-include/Wt/Auth/AuthService
-include/Wt/Auth/AuthWidget
-%%DBO%%include/Wt/Auth/Dbo/AuthInfo
-%%DBO%%include/Wt/Auth/Dbo/UserDatabase
-include/Wt/Auth/FacebookService
-include/Wt/Auth/FormBaseModel
-include/Wt/Auth/GoogleService
-include/Wt/Auth/HashFunction
-include/Wt/Auth/Identity
-include/Wt/Auth/Login
-include/Wt/Auth/LostPasswordWidget
-include/Wt/Auth/OAuthService
-include/Wt/Auth/PasswordHash
-include/Wt/Auth/PasswordPromptDialog
-include/Wt/Auth/PasswordService
-include/Wt/Auth/PasswordStrengthValidator
-include/Wt/Auth/PasswordVerifier
-include/Wt/Auth/RegistrationModel
-include/Wt/Auth/RegistrationWidget
-include/Wt/Auth/Token
-include/Wt/Auth/UpdatePasswordWidget
-include/Wt/Auth/User
-include/Wt/Chart/WAbstractChart
-include/Wt/Chart/WAbstractChartImplementation
-include/Wt/Chart/WAbstractChartModel
-include/Wt/Chart/WAbstractColorMap
-include/Wt/Chart/WAbstractDataSeries3D
-include/Wt/Chart/WAbstractGridData
-include/Wt/Chart/WAxis
-include/Wt/Chart/WAxisSliderWidget
-include/Wt/Chart/WCartesian3DChart
-include/Wt/Chart/WCartesianChart
-include/Wt/Chart/WChart2DImplementation
-include/Wt/Chart/WChart3DImplementation
-include/Wt/Chart/WChartGlobal
-include/Wt/Chart/WChartPalette
-include/Wt/Chart/WDataSeries
-include/Wt/Chart/WEquidistantGridData
-include/Wt/Chart/WGridData
-include/Wt/Chart/WLegend
-include/Wt/Chart/WLegend3D
-include/Wt/Chart/WPieChart
-include/Wt/Chart/WScatterData
-include/Wt/Chart/WSelection
-include/Wt/Chart/WStandardChartProxyModel
-include/Wt/Chart/WStandardColorMap
-include/Wt/Chart/WStandardPalette
-%%FIREBIRD%%include/Wt/Dbo/backend/Firebird
-%%MYSQL%%include/Wt/Dbo/backend/MySQL
-%%POSTGRES%%include/Wt/Dbo/backend/Postgres
-%%SQLITE3%%include/Wt/Dbo/backend/Sqlite3
-%%FIREBIRD%%include/Wt/Dbo/backend/WDboFirebirdDllDefs.h
-%%MYSQL%%include/Wt/Dbo/backend/WDboMySQLDllDefs.h
-%%POSTGRES%%include/Wt/Dbo/backend/WDboPostgresDllDefs.h
-%%SQLITE3%%include/Wt/Dbo/backend/WDboSqlite3DllDefs.h
-%%DBO%%include/Wt/Dbo/Call
+@sample %%ETCDIR%%/wt_config.xml.sample
+@dir /var/run/wt
+include/Wt/AsioWrapper/asio.hpp
+include/Wt/AsioWrapper/io_service.hpp
+include/Wt/AsioWrapper/namespace.hpp
+include/Wt/AsioWrapper/ssl.hpp
+include/Wt/AsioWrapper/steady_timer.hpp
+include/Wt/AsioWrapper/strand.hpp
+include/Wt/AsioWrapper/system_error.hpp
+include/Wt/Auth/AbstractPasswordService.h
+include/Wt/Auth/AbstractUserDatabase.h
+include/Wt/Auth/AuthModel.h
+include/Wt/Auth/AuthService.h
+include/Wt/Auth/AuthUtils.h
+include/Wt/Auth/AuthWidget.h
+%%DBO%%include/Wt/Auth/Dbo/AuthInfo.h
+%%DBO%%include/Wt/Auth/Dbo/UserDatabase.h
+include/Wt/Auth/FacebookService.h
+include/Wt/Auth/FormBaseModel.h
+include/Wt/Auth/GoogleService.h
+include/Wt/Auth/HashFunction.h
+include/Wt/Auth/Identity.h
+include/Wt/Auth/IssuedToken.h
+include/Wt/Auth/Login.h
+include/Wt/Auth/LostPasswordWidget.h
+include/Wt/Auth/OAuthAuthorizationEndpointProcess.h
+include/Wt/Auth/OAuthClient.h
+include/Wt/Auth/OAuthService.h
+include/Wt/Auth/OAuthTokenEndpoint.h
+include/Wt/Auth/OAuthWidget.h
+include/Wt/Auth/OidcService.h
+include/Wt/Auth/OidcUserInfoEndpoint.h
+include/Wt/Auth/PasswordHash.h
+include/Wt/Auth/PasswordPromptDialog.h
+include/Wt/Auth/PasswordService.h
+include/Wt/Auth/PasswordStrengthValidator.h
+include/Wt/Auth/PasswordVerifier.h
+include/Wt/Auth/RegistrationModel.h
+include/Wt/Auth/RegistrationWidget.h
+include/Wt/Auth/Token.h
+include/Wt/Auth/UpdatePasswordWidget.h
+include/Wt/Auth/User.h
+include/Wt/Auth/WAuthGlobal.h
+include/Wt/Chart/WAbstractChart.h
+include/Wt/Chart/WAbstractChartImplementation.h
+include/Wt/Chart/WAbstractChartModel.h
+include/Wt/Chart/WAbstractColorMap.h
+include/Wt/Chart/WAbstractDataSeries3D.h
+include/Wt/Chart/WAbstractGridData.h
+include/Wt/Chart/WAxis.h
+include/Wt/Chart/WAxisSliderWidget.h
+include/Wt/Chart/WCartesian3DChart.h
+include/Wt/Chart/WCartesianChart.h
+include/Wt/Chart/WChart2DImplementation.h
+include/Wt/Chart/WChart3DImplementation.h
+include/Wt/Chart/WChartGlobal.h
+include/Wt/Chart/WChartPalette.h
+include/Wt/Chart/WDataSeries.h
+include/Wt/Chart/WEquidistantGridData.h
+include/Wt/Chart/WGridData.h
+include/Wt/Chart/WLegend.h
+include/Wt/Chart/WLegend3D.h
+include/Wt/Chart/WPieChart.h
+include/Wt/Chart/WScatterData.h
+include/Wt/Chart/WSelection.h
+include/Wt/Chart/WStandardChartProxyModel.h
+include/Wt/Chart/WStandardColorMap.h
+include/Wt/Chart/WStandardPalette.h
+include/Wt/Core/observable.hpp
+include/Wt/Core/observable_impl.hpp
+include/Wt/Core/observing_ptr.hpp
+include/Wt/Core/observing_ptr_impl.hpp
+include/Wt/Date/date.h
+include/Wt/Date/include/date/chrono_io.h
+include/Wt/Date/include/date/date.h
+include/Wt/Date/include/date/ios.h
+include/Wt/Date/include/date/islamic.h
+include/Wt/Date/include/date/iso_week.h
+include/Wt/Date/include/date/julian.h
+include/Wt/Date/include/date/ptz.h
+include/Wt/Date/include/date/tz.h
+include/Wt/Date/include/date/tz_private.h
+include/Wt/Date/tz.h
+%%DBO%%include/Wt/Dbo/Call.h
 %%DBO%%include/Wt/Dbo/Call_impl.h
-%%DBO%%include/Wt/Dbo/collection
-%%DBO%%include/Wt/Dbo/collection_impl.h
-%%DBO%%include/Wt/Dbo/DbAction
+%%DBO%%include/Wt/Dbo/DbAction.h
 %%DBO%%include/Wt/Dbo/DbAction_impl.h
-%%DBO%%include/Wt/Dbo/Dbo
+%%DBO%%include/Wt/Dbo/Dbo.h
 %%DBO%%include/Wt/Dbo/EscapeOStream.h
-%%DBO%%include/Wt/Dbo/Exception
-%%DBO%%include/Wt/Dbo/Field
+%%DBO%%include/Wt/Dbo/Exception.h
+%%DBO%%include/Wt/Dbo/Field.h
 %%DBO%%include/Wt/Dbo/Field_impl.h
-%%DBO%%include/Wt/Dbo/FixedSqlConnectionPool
-%%DBO%%include/Wt/Dbo/Impl
-%%DBO%%include/Wt/Dbo/Json
-%%DBO%%include/Wt/Dbo/ptr
-%%DBO%%include/Wt/Dbo/ptr_impl.h
-%%DBO%%include/Wt/Dbo/ptr_tuple
-%%DBO%%include/Wt/Dbo/Query
-%%DBO%%include/Wt/Dbo/Query_impl.h
-%%DBO%%include/Wt/Dbo/QueryColumn
-%%DBO%%include/Wt/Dbo/QueryModel
+%%DBO%%include/Wt/Dbo/FixedSqlConnectionPool.h
+%%DBO%%include/Wt/Dbo/Impl.h
+%%DBO%%include/Wt/Dbo/Json.h
+%%DBO%%include/Wt/Dbo/Query.h
+%%DBO%%include/Wt/Dbo/QueryColumn.h
+%%DBO%%include/Wt/Dbo/QueryModel.h
 %%DBO%%include/Wt/Dbo/QueryModel_impl.h
-%%DBO%%include/Wt/Dbo/Session
+%%DBO%%include/Wt/Dbo/Query_impl.h
+%%DBO%%include/Wt/Dbo/Session.h
 %%DBO%%include/Wt/Dbo/Session_impl.h
-%%DBO%%include/Wt/Dbo/SqlConnection
-%%DBO%%include/Wt/Dbo/SqlConnectionPool
-%%DBO%%include/Wt/Dbo/SqlStatement
-%%DBO%%include/Wt/Dbo/SqlTraits
+%%DBO%%include/Wt/Dbo/SqlConnection.h
+%%DBO%%include/Wt/Dbo/SqlConnectionPool.h
+%%DBO%%include/Wt/Dbo/SqlStatement.h
+%%DBO%%include/Wt/Dbo/SqlTraits.h
 %%DBO%%include/Wt/Dbo/SqlTraits_impl.h
-%%DBO%%include/Wt/Dbo/StdSqlTraits
+%%DBO%%include/Wt/Dbo/StdSqlTraits.h
 %%DBO%%include/Wt/Dbo/StringStream.h
-%%DBO%%include/Wt/Dbo/Transaction
-%%DBO%%include/Wt/Dbo/Types
+%%DBO%%include/Wt/Dbo/Transaction.h
+%%DBO%%include/Wt/Dbo/Types.h
 %%DBO%%include/Wt/Dbo/WDboDllDefs.h
-%%DBO%%include/Wt/Dbo/weak_ptr
+%%DBO%%include/Wt/Dbo/WtSqlTraits.h
+%%FIREBIRD%%include/Wt/Dbo/backend/Firebird.h
+%%MYSQL%%include/Wt/Dbo/backend/MySQL.h
+%%POSTGRES%%include/Wt/Dbo/backend/Postgres.h
+%%SQLITE3%%include/Wt/Dbo/backend/Sqlite3.h
+%%FIREBIRD%%include/Wt/Dbo/backend/WDboFirebirdDllDefs.h
+%%MYSQL%%include/Wt/Dbo/backend/WDboMySQLDllDefs.h
+%%POSTGRES%%include/Wt/Dbo/backend/WDboPostgresDllDefs.h
+%%SQLITE3%%include/Wt/Dbo/backend/WDboSqlite3DllDefs.h
+%%DBO%%include/Wt/Dbo/collection.h
+%%DBO%%include/Wt/Dbo/collection_impl.h
+%%DBO%%include/Wt/Dbo/ptr.h
+%%DBO%%include/Wt/Dbo/ptr_impl.h
+%%DBO%%include/Wt/Dbo/ptr_tuple.h
+%%DBO%%include/Wt/Dbo/weak_ptr.h
 %%DBO%%include/Wt/Dbo/weak_ptr_impl.h
-%%DBO%%include/Wt/Dbo/WtSqlTraits
 include/Wt/DomElement.h
 include/Wt/EscapeOStream.h
-%%EXT%%include/Wt/Ext/AbstractButton
-%%EXT%%include/Wt/Ext/AbstractToggleButton
-%%EXT%%include/Wt/Ext/Button
-%%EXT%%include/Wt/Ext/Calendar
-%%EXT%%include/Wt/Ext/CheckBox
-%%EXT%%include/Wt/Ext/ComboBox
-%%EXT%%include/Wt/Ext/Component
-%%EXT%%include/Wt/Ext/Container
-%%EXT%%include/Wt/Ext/DataStore
-%%EXT%%include/Wt/Ext/DateField
-%%EXT%%include/Wt/Ext/Dialog
-%%EXT%%include/Wt/Ext/ExtDllDefs.h
-%%EXT%%include/Wt/Ext/FormField
-%%EXT%%include/Wt/Ext/LineEdit
-%%EXT%%include/Wt/Ext/Menu
-%%EXT%%include/Wt/Ext/MenuItem
-%%EXT%%include/Wt/Ext/MessageBox
-%%EXT%%include/Wt/Ext/NumberField
-%%EXT%%include/Wt/Ext/PagingToolBar
-%%EXT%%include/Wt/Ext/Panel
-%%EXT%%include/Wt/Ext/ProgressDialog
-%%EXT%%include/Wt/Ext/RadioButton
-%%EXT%%include/Wt/Ext/Splitter
-%%EXT%%include/Wt/Ext/SplitterHandle
-%%EXT%%include/Wt/Ext/TableView
-%%EXT%%include/Wt/Ext/TabWidget
-%%EXT%%include/Wt/Ext/TextEdit
-%%EXT%%include/Wt/Ext/ToolBar
-%%EXT%%include/Wt/Ext/ToolTipConfig
-%%EXT%%include/Wt/Ext/WExtGlobal
-%%EXT%%include/Wt/Ext/Widget
-include/Wt/Http/Client
-include/Wt/Http/Message
-include/Wt/Http/Method
-include/Wt/Http/Request
-include/Wt/Http/Response
-include/Wt/Http/ResponseContinuation
-include/Wt/Http/WtClient
-include/Wt/Json/Array
-include/Wt/Json/Object
-include/Wt/Json/Parser
-include/Wt/Json/Serializer
-include/Wt/Json/Value
-include/Wt/Mail/Client
-include/Wt/Mail/Mailbox
-include/Wt/Mail/Message
-include/Wt/Payment/Address
-include/Wt/Payment/Customer
-include/Wt/Payment/Money
-include/Wt/Payment/Order
-include/Wt/Payment/OrderItem
-include/Wt/Payment/PayPal
-include/Wt/Payment/Result
-include/Wt/Render/WPdfRenderer
-include/Wt/Render/WTextRenderer
-%%LIBWTTEST%%include/Wt/Test/WTestEnvironment
-include/Wt/Utils
-include/Wt/WAbstractArea
-include/Wt/WAbstractGLImplementation
-include/Wt/WAbstractItemDelegate
-include/Wt/WAbstractItemModel
-include/Wt/WAbstractItemView
-include/Wt/WAbstractListModel
-include/Wt/WAbstractMedia
-include/Wt/WAbstractProxyModel
-include/Wt/WAbstractSpinBox
-include/Wt/WAbstractTableModel
-include/Wt/WAbstractToggleButton
-include/Wt/WAccordionLayout
-include/Wt/WAggregateProxyModel
-include/Wt/WAnchor
-include/Wt/WAnimation
-include/Wt/WApplication
-include/Wt/WAudio
-include/Wt/WBatchEditProxyModel
-include/Wt/WBoostAny
-include/Wt/WBootstrapTheme
-include/Wt/WBorder
-include/Wt/WBorderLayout
-include/Wt/WBoxLayout
-include/Wt/WBreak
-include/Wt/WBrush
-include/Wt/WButtonGroup
-include/Wt/WCalendar
-include/Wt/WCanvasPaintDevice
-include/Wt/WCheckBox
-include/Wt/WCircleArea
-include/Wt/WClientGLWidget
-include/Wt/WColor
-include/Wt/WCombinedLocalizedStrings
-include/Wt/WComboBox
-include/Wt/WCompositeWidget
+include/Wt/Http/Client.h
+include/Wt/Http/Message.h
+include/Wt/Http/Method.h
+include/Wt/Http/Request.h
+include/Wt/Http/Response.h
+include/Wt/Http/ResponseContinuation.h
+include/Wt/Http/WtClient.h
+include/Wt/Json/Array.h
+include/Wt/Json/Object.h
+include/Wt/Json/Parser.h
+include/Wt/Json/Serializer.h
+include/Wt/Json/Value.h
+include/Wt/Mail/Client.h
+include/Wt/Mail/Mailbox.h
+include/Wt/Mail/Message.h
+include/Wt/Payment/Address.h
+include/Wt/Payment/Customer.h
+include/Wt/Payment/Money.h
+include/Wt/Payment/Order.h
+include/Wt/Payment/OrderItem.h
+include/Wt/Payment/PayPal.h
+include/Wt/Payment/Result.h
+include/Wt/Render/WPdfRenderer.h
+include/Wt/Render/WTextRenderer.h
+include/Wt/Signals/signals.hpp
+%%LIBWTTEST%%include/Wt/Test/WTestEnvironment.h
+include/Wt/Utils.h
+include/Wt/WAbstractArea.h
+include/Wt/WAbstractGLImplementation.h
+include/Wt/WAbstractItemDelegate.h
+include/Wt/WAbstractItemModel.h
+include/Wt/WAbstractItemView.h
+include/Wt/WAbstractListModel.h
+include/Wt/WAbstractMedia.h
+include/Wt/WAbstractProxyModel.h
+include/Wt/WAbstractSpinBox.h
+include/Wt/WAbstractTableModel.h
+include/Wt/WAbstractToggleButton.h
+include/Wt/WAggregateProxyModel.h
+include/Wt/WAnchor.h
+include/Wt/WAnimation.h
+include/Wt/WAny.h
+include/Wt/WApplication.h
+include/Wt/WAudio.h
+include/Wt/WBatchEditProxyModel.h
+include/Wt/WBootstrapTheme.h
+include/Wt/WBorder.h
+include/Wt/WBorderLayout.h
+include/Wt/WBoxLayout.h
+include/Wt/WBreak.h
+include/Wt/WBrush.h
+include/Wt/WButtonGroup.h
+include/Wt/WCalendar.h
+include/Wt/WCanvasPaintDevice.h
+include/Wt/WCheckBox.h
+include/Wt/WCircleArea.h
+include/Wt/WClientGLWidget.h
+include/Wt/WColor.h
+include/Wt/WCombinedLocalizedStrings.h
+include/Wt/WComboBox.h
+include/Wt/WCompositeWidget.h
 include/Wt/WConfig.h
-include/Wt/WContainerWidget
-include/Wt/WCssDecorationStyle
-include/Wt/WCssStyleSheet
-include/Wt/WCssTheme
-include/Wt/WDate
-include/Wt/WDateEdit
-include/Wt/WDatePicker
-include/Wt/WDateTime
-include/Wt/WDateValidator
-include/Wt/WDefaultLayout
-include/Wt/WDefaultLoadingIndicator
-include/Wt/WDialog
+include/Wt/WContainerWidget.h
+include/Wt/WCssDecorationStyle.h
+include/Wt/WCssStyleSheet.h
+include/Wt/WCssTheme.h
+include/Wt/WDate.h
+include/Wt/WDateEdit.h
+include/Wt/WDatePicker.h
+include/Wt/WDateTime.h
+include/Wt/WDateValidator.h
+include/Wt/WDefaultLoadingIndicator.h
+include/Wt/WDialog.h
 include/Wt/WDllDefs.h
-include/Wt/WDoubleSpinBox
-include/Wt/WDoubleValidator
-include/Wt/WEnvironment
-include/Wt/WEvent
-include/Wt/WException
-include/Wt/WFileDropWidget
-include/Wt/WFileResource
-include/Wt/WFileUpload
-include/Wt/WFitLayout
-include/Wt/WFlags
-include/Wt/WFlashObject
-include/Wt/WFont
-include/Wt/WFontMetrics
-include/Wt/WFormModel
-include/Wt/WFormWidget
-include/Wt/WGenericMatrix
-include/Wt/WGlobal
-include/Wt/WGLWidget
-include/Wt/WGoogleMap
-include/Wt/WGradient
-include/Wt/WGridLayout
-include/Wt/WGroupBox
-include/Wt/WHBoxLayout
-include/Wt/WHTML5Audio
-include/Wt/WHTML5Video
-include/Wt/WIcon
-include/Wt/WIconPair
-include/Wt/WIdentityProxyModel
-include/Wt/WImage
-include/Wt/WInPlaceEdit
-include/Wt/WInteractWidget
-include/Wt/WIntValidator
-include/Wt/WIOService
-include/Wt/WItemDelegate
-include/Wt/WItemSelectionModel
-include/Wt/WJavaScript
-include/Wt/WJavaScriptExposableObject
-include/Wt/WJavaScriptHandle
-include/Wt/WJavaScriptObjectStorage
-include/Wt/WJavaScriptPreamble
-include/Wt/WJavaScriptSlot
-include/Wt/WLabel
-include/Wt/WLayout
-include/Wt/WLayoutItem
-include/Wt/WLayoutItemImpl
-include/Wt/WLength
-include/Wt/WLengthValidator
-include/Wt/WLineEdit
-include/Wt/WLineF
-include/Wt/WLink
-include/Wt/WLoadingIndicator
-include/Wt/WLocalDateTime
-include/Wt/WLocale
-include/Wt/WLocalizedStrings
-include/Wt/WLogger
-include/Wt/WMatrix4x4
-include/Wt/WMeasurePaintDevice
-include/Wt/WMediaPlayer
-include/Wt/WMemoryResource
-include/Wt/WMenu
-include/Wt/WMenuItem
-include/Wt/WMessageBox
-include/Wt/WMessageResourceBundle
-include/Wt/WMessageResources
-include/Wt/WModelIndex
-include/Wt/WNavigationBar
-include/Wt/WObject
-include/Wt/WOverlayLoadingIndicator
-include/Wt/WPaintDevice
-include/Wt/WPaintedWidget
-include/Wt/WPainter
-include/Wt/WPainterPath
-include/Wt/WPanel
-include/Wt/WPdfImage
-include/Wt/WPen
-include/Wt/WPoint
-include/Wt/WPointF
-include/Wt/WPolygonArea
-include/Wt/WPopupMenu
-include/Wt/WPopupMenuItem
-include/Wt/WPopupWidget
-include/Wt/WProgressBar
-include/Wt/WPushButton
-include/Wt/WRadioButton
-include/Wt/WRandom
-include/Wt/WRasterImage
-include/Wt/WReadOnlyProxyModel
-include/Wt/WRectArea
-include/Wt/WRectF
-include/Wt/WRegExp
-include/Wt/WRegExpValidator
-include/Wt/WResource
-include/Wt/WScrollArea
-include/Wt/WScrollBar
-include/Wt/WSelectionBox
-include/Wt/WServer
-include/Wt/WServerGLWidget
-include/Wt/WShadow
-include/Wt/WSignal
-include/Wt/WSignalMapper
-include/Wt/WSlider
-include/Wt/WSocketNotifier
-include/Wt/WSortFilterProxyModel
-include/Wt/WSound
-include/Wt/WSpinBox
-include/Wt/WSplitButton
-include/Wt/WSslCertificate
-include/Wt/WSslInfo
-include/Wt/WStackedWidget
-include/Wt/WStandardItem
-include/Wt/WStandardItemModel
-include/Wt/WStatelessSlot
-include/Wt/WStreamResource
-include/Wt/WString
-include/Wt/WStringListModel
-include/Wt/WStringStream
-include/Wt/WStringUtil
-include/Wt/WSubMenuItem
-include/Wt/WSuggestionPopup
-include/Wt/WSvgImage
-include/Wt/WTable
-include/Wt/WTableCell
-include/Wt/WTableColumn
-include/Wt/WTableRow
-include/Wt/WTableView
-include/Wt/WTabWidget
-include/Wt/WTemplate
-include/Wt/WTemplateFormView
-include/Wt/WText
-include/Wt/WTextArea
-include/Wt/WTextEdit
-include/Wt/WTheme
-include/Wt/WTime
-include/Wt/WTimeEdit
-include/Wt/WTimePicker
-include/Wt/WTimer
-include/Wt/WTimerWidget
-include/Wt/WTimeValidator
-include/Wt/WToolBar
-include/Wt/WTransform
-include/Wt/WTree
-include/Wt/WTreeNode
-include/Wt/WTreeTable
-include/Wt/WTreeTableNode
-include/Wt/WTreeView
-include/Wt/WValidationStatus
-include/Wt/WValidator
-include/Wt/WVBoxLayout
-include/Wt/WVector3
-include/Wt/WVector4
-include/Wt/WVectorImage
-include/Wt/WVideo
-include/Wt/WViewWidget
-include/Wt/WVirtualImage
-include/Wt/WVmlImage
-include/Wt/WWebWidget
-include/Wt/WWidget
-include/Wt/WWidgetItem
+include/Wt/WDoubleSpinBox.h
+include/Wt/WDoubleValidator.h
+include/Wt/WEnvironment.h
+include/Wt/WEvent.h
+include/Wt/WException.h
+include/Wt/WFileDropWidget.h
+include/Wt/WFileResource.h
+include/Wt/WFileUpload.h
+include/Wt/WFitLayout.h
+include/Wt/WFlags.h
+include/Wt/WFlashObject.h
+include/Wt/WFont.h
+include/Wt/WFontMetrics.h
+include/Wt/WFormModel.h
+include/Wt/WFormWidget.h
+include/Wt/WGLWidget.h
+include/Wt/WGenericMatrix.h
+include/Wt/WGlobal.h
+include/Wt/WGoogleMap.h
+include/Wt/WGradient.h
+include/Wt/WGridLayout.h
+include/Wt/WGroupBox.h
+include/Wt/WHBoxLayout.h
+include/Wt/WIOService.h
+include/Wt/WIcon.h
+include/Wt/WIconPair.h
+include/Wt/WIdentityProxyModel.h
+include/Wt/WImage.h
+include/Wt/WInPlaceEdit.h
+include/Wt/WIntValidator.h
+include/Wt/WInteractWidget.h

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908181842.x7IIgXW1061232>