--- wxsqlite3-3.2.1/configure30 2015-03-04 04:30:22.000000000 +0700 +++ wxsqlite3-3.2.1/configure30 2020-10-24 17:09:03.329027421 +0700 @@ -2356,12 +2356,12 @@ else TOOLKIT="$withval" - if test "$TOOLKIT" != "gtk1" -a "$TOOLKIT" != "gtk2" -a \ + if test "$TOOLKIT" != "gtk1" -a "$TOOLKIT" != "gtk2" -a "$TOOLKIT" != "gtk3" -a \ "$TOOLKIT" != "msw" -a "$TOOLKIT" != "motif" -a \ "$TOOLKIT" != "x11" -a "$TOOLKIT" != "mac" -a \ "$TOOLKIT" != "mgl" -a "$TOOLKIT" != "dfb" ; then as_fn_error $? " - Unrecognized option value (allowed values: auto, gtk1, gtk2, msw, motif, x11, mac, mgl, dfb) + Unrecognized option value (allowed values: auto, gtk1, gtk2, gtk3, msw, motif, x11, mac, mgl, dfb) " "$LINENO" 5 fi @@ -2893,6 +2893,7 @@ WX_GTKPORT1=$(expr "$WX_SELECTEDCONFIG" : ".*gtk1.*") WX_GTKPORT2=$(expr "$WX_SELECTEDCONFIG" : ".*gtk2.*") + WX_GTKPORT3=$(expr "$WX_SELECTEDCONFIG" : ".*gtk3.*") WX_MSWPORT=$(expr "$WX_SELECTEDCONFIG" : ".*msw.*") WX_MOTIFPORT=$(expr "$WX_SELECTEDCONFIG" : ".*motif.*") WX_OSXCOCOAPORT=$(expr "$WX_SELECTEDCONFIG" : ".*osx_cocoa.*") @@ -2904,6 +2905,7 @@ WX_PORT="unknown" if test "$WX_GTKPORT1" != "0"; then WX_PORT="gtk1"; fi if test "$WX_GTKPORT2" != "0"; then WX_PORT="gtk2"; fi + if test "$WX_GTKPORT3" != "0"; then WX_PORT="gtk3"; fi if test "$WX_MSWPORT" != "0"; then WX_PORT="msw"; fi if test "$WX_MOTIFPORT" != "0"; then WX_PORT="motif"; fi if test "$WX_OSXCOCOAPORT" != "0"; then WX_PORT="osx_cocoa"; fi --- wxsqlite3-3.2.1/wxsqlite3.pc.in 2015-03-04 04:30:22.000000000 +0700 +++ wxsqlite3-3.2.1/wxsqlite3.pc.in 2020-10-24 17:49:42.936287133 +0700 @@ -9,6 +9,6 @@ Description: SQLite3 C++ wrapper for use in programs based on the wxWidgets Version: @VERSION@ #Requires: sqlite3 -Libs: -L${libdir} -lwxcode_gtk2_wxsqlite3-@WXVERSION@ +Libs: -L${libdir} -lwxcode_gtk3_wxsqlite3-@WXVERSION@ Libs.private: -lpthread Cflags: -I${includedir}