Recently, problems with wxWidgets handling and startup have been noticed with codeblocks 20.03. Upstream has 730+ commits since 20.03 but have not yet tagged any new release or candidates of any kind.
Their recent HEAD at revision 12571 seems to solves both issues. I have exported the source tree from their subversion repository and am self-hosting a distfile tarball as MASTER_SITES1, which I will maintain -- if this is an acceptable solution for a cherry picked collection of hundreds of upstream patches -- until after end-of-life of 7.1 or any future release which may still require it for port building. Tested on amd64 at -current by me and with a backport tested by John Lloyd on amd64 at 7.0-stable.
diff --git a/devel/codeblocks/Makefile b/devel/codeblocks/Makefile index 3e30ad54745..b95d338d46d 100755 --- a/devel/codeblocks/Makefile +++ b/devel/codeblocks/Makefile @@ -1,11 +1,17 @@ BROKEN-alpha= sqvm.cpp:394:1: internal compiler error: Segmentation fault COMMENT= Code::Blocks C/C++ IDE -V= 20.03 +V= 20.03pl12751 + +# source tarball for this OpenBSD-specific patch level: +MASTER_SITES1= https://jggimi.net/codeblocks/ +DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:1 + DISTNAME= codeblocks-${V} PKGNAME= codeblocks-${V} EXTRACT_SUFX= .tar.xz -REVISION= 2 + +DEBUG_PACKAGES=${BUILD_PACKAGES} WRKDIST= ${WRKDIR}/codeblocks-${V} diff --git a/devel/codeblocks/distinfo b/devel/codeblocks/distinfo index 09f55e353a9..0182edab851 100644 --- a/devel/codeblocks/distinfo +++ b/devel/codeblocks/distinfo @@ -1,2 +1,2 @@ -SHA256 (codeblocks-20.03.tar.xz) = Fe6z4orqBU4fOLDH9GcbTU0RFv0F9jwHqpWpHbieqsU= -SIZE (codeblocks-20.03.tar.xz) = 11799264 +SHA256 (codeblocks-20.03pl12751.tar.xz) = ZP/Co2/RU2CzLUsxQEAvxjkpmSkwiA/xT4+zB9VNczs= +SIZE (codeblocks-20.03pl12751.tar.xz) = 16711944 diff --git a/devel/codeblocks/patches/patch-configure b/devel/codeblocks/patches/patch-configure index 46c8967c235..353f464c7cb 100644 --- a/devel/codeblocks/patches/patch-configure +++ b/devel/codeblocks/patches/patch-configure @@ -3,7 +3,7 @@ undefined reference to `free' Index: configure --- configure.orig +++ configure -@@ -16911,7 +16911,6 @@ if ${ax_cv_check_ldflags___Wl___no_undefined+:} false; +@@ -16899,7 +16899,6 @@ if ${ax_cv_check_ldflags___Wl___no_undefined+:} false; else ax_check_save_flags=$LDFLAGS @@ -11,7 +11,7 @@ Index: configure cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -@@ -16935,7 +16934,6 @@ fi +@@ -16923,7 +16922,6 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl___no_undefined" >&5 $as_echo "$ax_cv_check_ldflags___Wl___no_undefined" >&6; } if test "x$ax_cv_check_ldflags___Wl___no_undefined" = xyes; then : diff --git a/devel/codeblocks/patches/patch-src_base_tinyxml_Makefile_in b/devel/codeblocks/patches/patch-src_base_tinyxml_Makefile_in index 59247107298..ab710b33327 100644 --- a/devel/codeblocks/patches/patch-src_base_tinyxml_Makefile_in +++ b/devel/codeblocks/patches/patch-src_base_tinyxml_Makefile_in @@ -4,7 +4,7 @@ Fix build when tinyxml is installed. Index: src/base/tinyxml/Makefile.in --- src/base/tinyxml/Makefile.in.orig +++ src/base/tinyxml/Makefile.in -@@ -423,10 +423,10 @@ top_builddir = @top_builddir@ +@@ -417,10 +417,10 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zlib_CFLAGS = @zlib_CFLAGS@ zlib_LIBS = @zlib_LIBS@ diff --git a/devel/codeblocks/patches/patch-src_include_mozilla_chardet_nsprpub_pr_include_prcpucfg_linux_h b/devel/codeblocks/patches/patch-src_include_mozilla_chardet_nsprpub_pr_include_prcpucfg_linux_h deleted file mode 100644 index 59dead9a877..00000000000 --- a/devel/codeblocks/patches/patch-src_include_mozilla_chardet_nsprpub_pr_include_prcpucfg_linux_h +++ /dev/null @@ -1,58 +0,0 @@ -Add support for riscv64 - -Index: src/include/mozilla_chardet/nsprpub/pr/include/prcpucfg_linux.h ---- src/include/mozilla_chardet/nsprpub/pr/include/prcpucfg_linux.h.orig -+++ src/include/mozilla_chardet/nsprpub/pr/include/prcpucfg_linux.h -@@ -643,6 +643,52 @@ - #define PR_BYTES_PER_WORD_LOG2 3 - #define PR_BYTES_PER_DWORD_LOG2 3 - -+#elif defined(__riscv) && __riscv_xlen == 64 -+ -+#define IS_LITTLE_ENDIAN 1 -+#undef IS_BIG_ENDIAN -+#define IS_64 -+ -+#define PR_BYTES_PER_BYTE 1 -+#define PR_BYTES_PER_SHORT 2 -+#define PR_BYTES_PER_INT 4 -+#define PR_BYTES_PER_INT64 8 -+#define PR_BYTES_PER_LONG 8 -+#define PR_BYTES_PER_FLOAT 4 -+#define PR_BYTES_PER_DOUBLE 8 -+#define PR_BYTES_PER_WORD 8 -+#define PR_BYTES_PER_DWORD 8 -+ -+#define PR_BITS_PER_BYTE 8 -+#define PR_BITS_PER_SHORT 16 -+#define PR_BITS_PER_INT 32 -+#define PR_BITS_PER_INT64 64 -+#define PR_BITS_PER_LONG 64 -+#define PR_BITS_PER_FLOAT 32 -+#define PR_BITS_PER_DOUBLE 64 -+#define PR_BITS_PER_WORD 64 -+ -+#define PR_BITS_PER_BYTE_LOG2 3 -+#define PR_BITS_PER_SHORT_LOG2 4 -+#define PR_BITS_PER_INT_LOG2 5 -+#define PR_BITS_PER_INT64_LOG2 6 -+#define PR_BITS_PER_LONG_LOG2 6 -+#define PR_BITS_PER_FLOAT_LOG2 5 -+#define PR_BITS_PER_DOUBLE_LOG2 6 -+#define PR_BITS_PER_WORD_LOG2 6 -+ -+#define PR_ALIGN_OF_SHORT 2 -+#define PR_ALIGN_OF_INT 4 -+#define PR_ALIGN_OF_LONG 8 -+#define PR_ALIGN_OF_INT64 8 -+#define PR_ALIGN_OF_FLOAT 4 -+#define PR_ALIGN_OF_DOUBLE 8 -+#define PR_ALIGN_OF_POINTER 8 -+#define PR_ALIGN_OF_WORD 8 -+ -+#define PR_BYTES_PER_WORD_LOG2 3 -+#define PR_BYTES_PER_DWORD_LOG2 3 -+ - #elif defined(__hppa__) - - #undef IS_LITTLE_ENDIAN diff --git a/devel/codeblocks/patches/patch-src_include_scripting_sqplus_sqplus_h b/devel/codeblocks/patches/patch-src_include_scripting_sqplus_sqplus_h deleted file mode 100644 index 082a3af55c3..00000000000 --- a/devel/codeblocks/patches/patch-src_include_scripting_sqplus_sqplus_h +++ /dev/null @@ -1,14 +0,0 @@ -Replace the malloc.h header with stdlib.h. - -Index: src/include/scripting/sqplus/sqplus.h ---- src/include/scripting/sqplus/sqplus.h.orig -+++ src/include/scripting/sqplus/sqplus.h -@@ -17,7 +17,7 @@ - #include <malloc/malloc.h> - #else - // C::B patch: support for FreeBSD -- #ifdef __FreeBSD__ -+ #if defined(__FreeBSD__) || defined(__OpenBSD__) - #include <stdlib.h> - #else - #include <malloc.h> diff --git a/devel/codeblocks/patches/patch-src_plugins_compilergcc_compilergcc_cpp b/devel/codeblocks/patches/patch-src_plugins_compilergcc_compilergcc_cpp index 18eb3f15c8d..1b72382cdd0 100644 --- a/devel/codeblocks/patches/patch-src_plugins_compilergcc_compilergcc_cpp +++ b/devel/codeblocks/patches/patch-src_plugins_compilergcc_compilergcc_cpp @@ -3,7 +3,7 @@ Always use cb_console_runner from installed PREFIX. Index: src/plugins/compilergcc/compilergcc.cpp --- src/plugins/compilergcc/compilergcc.cpp.orig +++ src/plugins/compilergcc/compilergcc.cpp -@@ -160,7 +160,7 @@ namespace +@@ -166,7 +166,7 @@ namespace { PluginRegistrant<CompilerGCC> reg(_T("Compiler")); @@ -12,7 +12,7 @@ Index: src/plugins/compilergcc/compilergcc.cpp static const wxString strSLASH(_T("/")); static const wxString strSPACE(_T(" ")); static const wxString strQUOTE(platform::windows ? _T("\"") : _T("'")); -@@ -1832,8 +1832,7 @@ int CompilerGCC::RunSingleFile(const wxString& filenam +@@ -1855,8 +1855,7 @@ int CompilerGCC::RunSingleFile(const wxString& filenam wxString baseDir = ConfigManager::GetExecutableFolder(); wxString crunnStr = strQUOTE + baseDir + strSLASH + strCONSOLE_RUNNER + strQUOTE; @@ -22,7 +22,7 @@ Index: src/plugins/compilergcc/compilergcc.cpp if (!command.Replace(_T("$SCRIPT"), exe_filename)) command << strQUOTE << exe_filename << strQUOTE; // if they didn't specify $SCRIPT, append: -@@ -1950,7 +1949,7 @@ int CompilerGCC::Run(ProjectBuildTarget* target) +@@ -1973,7 +1972,7 @@ int CompilerGCC::Run(ProjectBuildTarget* target) : EscapeSpaces(m_CdRun); wxString crunnStr = platform::windows ? strQUOTE + baseDir + strSLASH + strCONSOLE_RUNNER + strQUOTE @@ -31,7 +31,7 @@ Index: src/plugins/compilergcc/compilergcc.cpp wxString hostapStr = platform::windows ? strQUOTE + target->GetHostApplication() + strQUOTE : EscapeSpaces(target->GetHostApplication()); -@@ -1988,8 +1987,6 @@ int CompilerGCC::Run(ProjectBuildTarget* target) +@@ -2011,8 +2010,6 @@ int CompilerGCC::Run(ProjectBuildTarget* target) if (target->GetUseConsoleRunner()) { @@ -40,7 +40,7 @@ Index: src/plugins/compilergcc/compilergcc.cpp command << crunnStr << strSPACE; if (!platform::windows) -@@ -2001,7 +1998,6 @@ int CompilerGCC::Run(ProjectBuildTarget* target) +@@ -2024,7 +2021,6 @@ int CompilerGCC::Run(ProjectBuildTarget* target) QuoteStringIfNeeded(strLinkerPath); command << strLinkerPath << strSPACE; } diff --git a/devel/codeblocks/patches/patch-src_plugins_contrib_dragscroll_dragscrollcfg_h b/devel/codeblocks/patches/patch-src_plugins_contrib_dragscroll_dragscrollcfg_h index ccf08ff3315..c9aaaee7fc3 100644 --- a/devel/codeblocks/patches/patch-src_plugins_contrib_dragscroll_dragscrollcfg_h +++ b/devel/codeblocks/patches/patch-src_plugins_contrib_dragscroll_dragscrollcfg_h @@ -8,7 +8,7 @@ Index: src/plugins/contrib/dragscroll/dragscrollcfg.h void OnApply(); void OnCancel(){} +#if defined(LOGGING) - virtual void InitDialog(){ asm("int3");} /*trap*/ + virtual void InitDialog() { } /*trap*/ +#endif // pointer to owner of the configuration diaglog needed to diff --git a/devel/codeblocks/patches/patch-src_sdk_scripting_squirrel_sqvm_cpp b/devel/codeblocks/patches/patch-src_sdk_scripting_squirrel_sqvm_cpp index 8a34db6e5e5..a3cf572bcf8 100644 --- a/devel/codeblocks/patches/patch-src_sdk_scripting_squirrel_sqvm_cpp +++ b/devel/codeblocks/patches/patch-src_sdk_scripting_squirrel_sqvm_cpp @@ -2,12 +2,12 @@ Index: src/sdk/scripting/squirrel/sqvm.cpp --- src/sdk/scripting/squirrel/sqvm.cpp.orig +++ src/sdk/scripting/squirrel/sqvm.cpp @@ -1,8 +1,8 @@ - /* - see copyright notice in squirrel.h - */ --#include "sqpcheader.h" - #include <math.h> -+#include "sqpcheader.h" - #include <stdlib.h> - #include "sqopcodes.h" - #include "sqfuncproto.h" + /* + see copyright notice in squirrel.h + */ +-#include "sqpcheader.h" + #include <math.h> ++#include "sqpcheader.h" + #include <stdlib.h> + #include "sqopcodes.h" + #include "sqvm.h" diff --git a/devel/codeblocks/patches/patch-src_src_prefix_cpp b/devel/codeblocks/patches/patch-src_src_prefix_cpp deleted file mode 100644 index ba78ff05a25..00000000000 --- a/devel/codeblocks/patches/patch-src_src_prefix_cpp +++ /dev/null @@ -1,14 +0,0 @@ ---- src/src/prefix.cpp.orig Thu Sep 11 14:39:47 2014 -+++ src/src/prefix.cpp Thu Sep 11 14:40:07 2014 -@@ -230,8 +230,10 @@ br_prepend_prefix (void *symbol, char *path) - #include <pthread.h> - - static pthread_key_t br_thread_key; --#ifdef __FreeBSD__ -+#if defined __FreeBSD__ - static pthread_once_t br_thread_key_once = {0, (pthread_mutex_t)NULL};//PTHREAD_ONCE_INIT; -+#elif defined __OpenBSD__ -+static pthread_once_t br_thread_key_once = {PTHREAD_NEEDS_INIT, (pthread_mutex_t)PTHREAD_MUTEX_INITIALIZER}; - #else - static pthread_once_t br_thread_key_once = PTHREAD_ONCE_INIT; - #endif diff --git a/devel/codeblocks/pkg/PLIST b/devel/codeblocks/pkg/PLIST index bbfe72ff73a..5d4b7813ae1 100644 --- a/devel/codeblocks/pkg/PLIST +++ b/devel/codeblocks/pkg/PLIST @@ -2,18 +2,6 @@ @bin bin/cb_share_config @bin bin/codeblocks include/codeblocks/ -include/codeblocks/Alignment.h -include/codeblocks/Assertions.h -include/codeblocks/Attributes.h -include/codeblocks/CharDistribution.h -include/codeblocks/Compiler.h -include/codeblocks/ErrorList.h -include/codeblocks/JpCntx.h -include/codeblocks/Likely.h -include/codeblocks/NullPtr.h -include/codeblocks/TypedEnum.h -include/codeblocks/Types.h -include/codeblocks/Util.h include/codeblocks/annoyingdialog.h include/codeblocks/autodetectcompilers.h include/codeblocks/backgroundthread.h @@ -48,11 +36,13 @@ include/codeblocks/configurationpanel.h include/codeblocks/configuretoolsdlg.h include/codeblocks/confirmreplacedlg.h include/codeblocks/crc32.h +include/codeblocks/cygwin.h include/codeblocks/debuggermanager.h include/codeblocks/editarrayfiledlg.h include/codeblocks/editarrayorderdlg.h include/codeblocks/editarraystringdlg.h include/codeblocks/editor_hooks.h +include/codeblocks/editor_utils.h include/codeblocks/editorbase.h include/codeblocks/editorcolourset.h include/codeblocks/editorlexerloader.h @@ -85,40 +75,12 @@ include/codeblocks/menuitemsmanager.h include/codeblocks/misctreeitemdata.h include/codeblocks/multiselectdlg.h include/codeblocks/newfromtemplatedlg.h -include/codeblocks/nsBig5Prober.h -include/codeblocks/nsCharSetProber.h -include/codeblocks/nsCodingStateMachine.h -include/codeblocks/nsDebug.h -include/codeblocks/nsEUCJPProber.h -include/codeblocks/nsEUCKRProber.h -include/codeblocks/nsEUCTWProber.h -include/codeblocks/nsError.h -include/codeblocks/nsEscCharsetProber.h -include/codeblocks/nsGB2312Prober.h -include/codeblocks/nsHebrewProber.h -include/codeblocks/nsLatin1Prober.h -include/codeblocks/nsMBCSGroupProber.h -include/codeblocks/nsMemory.h -include/codeblocks/nsPkgInt.h -include/codeblocks/nsSBCSGroupProber.h -include/codeblocks/nsSBCharSetProber.h -include/codeblocks/nsSJISProber.h -include/codeblocks/nsUTF8Prober.h -include/codeblocks/nsUniversalDetector.h -include/codeblocks/nscore.h include/codeblocks/personalitymanager.h include/codeblocks/pipedprocess.h include/codeblocks/pluginmanager.h include/codeblocks/pluginsconfigurationdlg.h -include/codeblocks/prcpucfg.h -include/codeblocks/prcpucfg_darwin.h -include/codeblocks/prcpucfg_linux.h -include/codeblocks/prcpucfg_openbsd.h -include/codeblocks/prcpucfg_win95.h -include/codeblocks/prcpucfg_winnt.h include/codeblocks/prep.h include/codeblocks/printing_types.h -include/codeblocks/prmem.h include/codeblocks/projectbuildtarget.h include/codeblocks/projectfile.h include/codeblocks/projectfileoptionsdlg.h @@ -128,15 +90,12 @@ include/codeblocks/projectloader_hooks.h include/codeblocks/projectmanager.h include/codeblocks/projectsfilemasksdlg.h include/codeblocks/projecttemplateloader.h -include/codeblocks/prtypes.h include/codeblocks/safedelete.h include/codeblocks/scripting/ include/codeblocks/scripting/bindings/ -include/codeblocks/scripting/bindings/sc_base_types.h include/codeblocks/scripting/bindings/sc_plugin.h include/codeblocks/scripting/include/ -include/codeblocks/scripting/include/sqdbgserver.h -include/codeblocks/scripting/include/sqrdbg.h +include/codeblocks/scripting/include/sqconfig.h include/codeblocks/scripting/include/sqstdaux.h include/codeblocks/scripting/include/sqstdblob.h include/codeblocks/scripting/include/sqstdio.h @@ -144,12 +103,6 @@ include/codeblocks/scripting/include/sqstdmath.h include/codeblocks/scripting/include/sqstdstring.h include/codeblocks/scripting/include/sqstdsystem.h include/codeblocks/scripting/include/squirrel.h -include/codeblocks/scripting/sqplus/ -include/codeblocks/scripting/sqplus/SqPlusConst.h -include/codeblocks/scripting/sqplus/SquirrelBindingsUtils.h -include/codeblocks/scripting/sqplus/SquirrelObject.h -include/codeblocks/scripting/sqplus/SquirrelVM.h -include/codeblocks/scripting/sqplus/sqplus.h include/codeblocks/scriptingmanager.h include/codeblocks/scriptsecuritywarningdlg.h include/codeblocks/scrollingdialog.h @@ -267,6 +220,7 @@ include/codeblocks/wxscintilla/ include/codeblocks/wxscintilla/include/ include/codeblocks/wxscintilla/include/wx/ include/codeblocks/wxscintilla/include/wx/wxscintilla.h +include/codeblocks/wxstringhash.h include/codeblocks/xtra_res.h include/wxsmith/ include/wxsmith/properties/ @@ -287,6 +241,7 @@ include/wxsmith/properties/wxspropertygridmanager.h include/wxsmith/properties/wxspropertystream.h include/wxsmith/properties/wxsquickpropspanel.h include/wxsmith/properties/wxsstringproperty.h +include/wxsmith/properties/wxstwolongproperty.h include/wxsmith/wxsadvqpp.h include/wxsmith/wxsadvqppchild.h include/wxsmith/wxsautoresourcetreeimage.h @@ -471,9 +426,6 @@ lib/pkgconfig/wxsmithaui.pc @man man/man1/cb_share_config.1 @man man/man1/codeblocks.1 @man man/man1/codesnippets.1 -share/appdata/ -share/appdata/codeblocks-contrib.metainfo.xml -share/appdata/codeblocks.appdata.xml share/applications/codeblocks.desktop share/codeblocks/ share/codeblocks/Astyle.zip @@ -513,6 +465,7 @@ share/codeblocks/SpellChecker/16x16/en_CA.png share/codeblocks/SpellChecker/16x16/en_GB.png share/codeblocks/SpellChecker/16x16/en_NZ.png share/codeblocks/SpellChecker/16x16/en_US.png +share/codeblocks/SpellChecker/16x16/es_ES.png share/codeblocks/SpellChecker/16x16/fr_FR.png share/codeblocks/SpellChecker/16x16/ru_RU.png share/codeblocks/SpellChecker/20x20/ @@ -525,6 +478,7 @@ share/codeblocks/SpellChecker/20x20/en_CA.png share/codeblocks/SpellChecker/20x20/en_GB.png share/codeblocks/SpellChecker/20x20/en_NZ.png share/codeblocks/SpellChecker/20x20/en_US.png +share/codeblocks/SpellChecker/20x20/es_ES.png share/codeblocks/SpellChecker/20x20/fr_FR.png share/codeblocks/SpellChecker/20x20/ru_RU.png share/codeblocks/SpellChecker/24x24/ @@ -537,6 +491,7 @@ share/codeblocks/SpellChecker/24x24/en_CA.png share/codeblocks/SpellChecker/24x24/en_GB.png share/codeblocks/SpellChecker/24x24/en_NZ.png share/codeblocks/SpellChecker/24x24/en_US.png +share/codeblocks/SpellChecker/24x24/es_ES.png share/codeblocks/SpellChecker/24x24/fr_FR.png share/codeblocks/SpellChecker/24x24/ru_RU.png share/codeblocks/SpellChecker/28x28/ @@ -549,6 +504,7 @@ share/codeblocks/SpellChecker/28x28/en_CA.png share/codeblocks/SpellChecker/28x28/en_GB.png share/codeblocks/SpellChecker/28x28/en_NZ.png share/codeblocks/SpellChecker/28x28/en_US.png +share/codeblocks/SpellChecker/28x28/es_ES.png share/codeblocks/SpellChecker/28x28/fr_FR.png share/codeblocks/SpellChecker/28x28/ru_RU.png share/codeblocks/SpellChecker/32x32/ @@ -561,6 +517,7 @@ share/codeblocks/SpellChecker/32x32/en_CA.png share/codeblocks/SpellChecker/32x32/en_GB.png share/codeblocks/SpellChecker/32x32/en_NZ.png share/codeblocks/SpellChecker/32x32/en_US.png +share/codeblocks/SpellChecker/32x32/es_ES.png share/codeblocks/SpellChecker/32x32/fr_FR.png share/codeblocks/SpellChecker/32x32/ru_RU.png share/codeblocks/SpellChecker/40x40/ @@ -573,6 +530,7 @@ share/codeblocks/SpellChecker/40x40/en_CA.png share/codeblocks/SpellChecker/40x40/en_GB.png share/codeblocks/SpellChecker/40x40/en_NZ.png share/codeblocks/SpellChecker/40x40/en_US.png +share/codeblocks/SpellChecker/40x40/es_ES.png share/codeblocks/SpellChecker/40x40/fr_FR.png share/codeblocks/SpellChecker/40x40/ru_RU.png share/codeblocks/SpellChecker/48x48/ @@ -585,6 +543,7 @@ share/codeblocks/SpellChecker/48x48/en_CA.png share/codeblocks/SpellChecker/48x48/en_GB.png share/codeblocks/SpellChecker/48x48/en_NZ.png share/codeblocks/SpellChecker/48x48/en_US.png +share/codeblocks/SpellChecker/48x48/es_ES.png share/codeblocks/SpellChecker/48x48/fr_FR.png share/codeblocks/SpellChecker/48x48/ru_RU.png share/codeblocks/SpellChecker/56x56/ @@ -597,6 +556,7 @@ share/codeblocks/SpellChecker/56x56/en_CA.png share/codeblocks/SpellChecker/56x56/en_GB.png share/codeblocks/SpellChecker/56x56/en_NZ.png share/codeblocks/SpellChecker/56x56/en_US.png +share/codeblocks/SpellChecker/56x56/es_ES.png share/codeblocks/SpellChecker/56x56/fr_FR.png share/codeblocks/SpellChecker/56x56/ru_RU.png share/codeblocks/SpellChecker/64x64/ @@ -609,6 +569,7 @@ share/codeblocks/SpellChecker/64x64/en_CA.png share/codeblocks/SpellChecker/64x64/en_GB.png share/codeblocks/SpellChecker/64x64/en_NZ.png share/codeblocks/SpellChecker/64x64/en_US.png +share/codeblocks/SpellChecker/64x64/es_ES.png share/codeblocks/SpellChecker/64x64/fr_FR.png share/codeblocks/SpellChecker/64x64/ru_RU.png share/codeblocks/SpellChecker/OnlineSpellChecking.xml @@ -633,6 +594,11 @@ share/codeblocks/compilers/compiler_bfin-elf-gcc.xml share/codeblocks/compilers/compiler_clang.xml share/codeblocks/compilers/compiler_dmc.xml share/codeblocks/compilers/compiler_dmd.xml +share/codeblocks/compilers/compiler_gcc-mingw64.xml +share/codeblocks/compilers/compiler_gcc-msys2-mingw32.xml +share/codeblocks/compilers/compiler_gcc-msys2-mingw64.xml +share/codeblocks/compilers/compiler_gcc-tdm-32.xml +share/codeblocks/compilers/compiler_gcc-tdm-64.xml share/codeblocks/compilers/compiler_ldc.xml share/codeblocks/compilers/compiler_lm32-gcc.xml share/codeblocks/compilers/compiler_lm8-gcc.xml @@ -669,6 +635,11 @@ share/codeblocks/compilers/options_cygwin.xml share/codeblocks/compilers/options_dmc.xml share/codeblocks/compilers/options_dmd.xml share/codeblocks/compilers/options_g95.xml +share/codeblocks/compilers/options_gcc-mingw64.xml +share/codeblocks/compilers/options_gcc-msys2-mingw32.xml +share/codeblocks/compilers/options_gcc-msys2-mingw64.xml +share/codeblocks/compilers/options_gcc-tdm-32.xml +share/codeblocks/compilers/options_gcc-tdm-64.xml share/codeblocks/compilers/options_gcc.xml share/codeblocks/compilers/options_gdc.xml share/codeblocks/compilers/options_gfortran.xml @@ -698,6 +669,8 @@ share/codeblocks/compilers/options_zpu-gcc.xml share/codeblocks/copystrings.zip share/codeblocks/debugger.zip share/codeblocks/defaultmimehandler.zip +share/codeblocks/docs/ +share/codeblocks/docs/index.ini share/codeblocks/dragscroll.zip share/codeblocks/envvars.zip share/codeblocks/exporter.zip @@ -754,6 +727,8 @@ share/codeblocks/images/settings/autosave-off.png share/codeblocks/images/settings/autosave.png share/codeblocks/images/settings/batch-off.png share/codeblocks/images/settings/batch.png +share/codeblocks/images/settings/browsetracker-off.png +share/codeblocks/images/settings/browsetracker.png share/codeblocks/images/settings/codecompletion-off.png share/codeblocks/images/settings/codecompletion.png share/codeblocks/images/settings/codestats-off.png @@ -788,6 +763,8 @@ share/codeblocks/images/settings/help-plugin-off.png share/codeblocks/images/settings/help-plugin.png share/codeblocks/images/settings/incsearch-off.png share/codeblocks/images/settings/incsearch.png +share/codeblocks/images/settings/mousesap-off.png +share/codeblocks/images/settings/mousesap.png share/codeblocks/images/settings/net-off.png share/codeblocks/images/settings/net.png share/codeblocks/images/settings/notebook-appearance-off.png @@ -865,6 +842,12 @@ share/codeblocks/images/wxsmith/wxComboBox16.png share/codeblocks/images/wxsmith/wxComboBox32.png share/codeblocks/images/wxsmith/wxContextHelpButton16.png share/codeblocks/images/wxsmith/wxContextHelpButton32.png +share/codeblocks/images/wxsmith/wxDataViewCtrl16.png +share/codeblocks/images/wxsmith/wxDataViewCtrl32.png +share/codeblocks/images/wxsmith/wxDataViewListCtrl16.png +share/codeblocks/images/wxsmith/wxDataViewListCtrl32.png +share/codeblocks/images/wxsmith/wxDataViewTreeCtrl16.png +share/codeblocks/images/wxsmith/wxDataViewTreeCtrl32.png share/codeblocks/images/wxsmith/wxDatePickerCtrl16.png share/codeblocks/images/wxsmith/wxDatePickerCtrl32.png share/codeblocks/images/wxsmith/wxDialUpManager16.png @@ -1164,6 +1147,7 @@ share/codeblocks/scripts/startup.script share/codeblocks/scripts/tests/ share/codeblocks/scripts/tests/menu_test_plugin.script share/codeblocks/scripts/tests/script_test_plugin.script +share/codeblocks/scripts/tests/sdk_test.script share/codeblocks/scripts/tests/test_base.script share/codeblocks/scripts/tests/user_dialog_test_plugin.script share/codeblocks/scripts/tests/wx_test.script @@ -1775,6 +1759,9 @@ share/codeblocks/wxsmith.zip share/codeblocks/wxsmithcontribitems.zip share/icons/hicolor/48x48/mimetypes/application-x-codeblocks-workspace.png share/icons/hicolor/48x48/mimetypes/application-x-codeblocks.png +share/metainfo/ +share/metainfo/codeblocks-contrib.metainfo.xml +share/metainfo/codeblocks.appdata.xml share/mime/packages/codeblocks.xml share/pixmaps/ share/pixmaps/codeblocks.png
