zed
zed
There are [defined](http://docwiki.embarcadero.com/RADStudio/Sydney/en/Predefined_Macros) macros `__BORLANDC__` and `__clang__` for this compiler.
The condition is only used to show the user a warning if he uses an unknown compiler: ``` {$IF CompilerVersion > 35} {$MESSAGE WARN 'Check if System.ImageList.TBaseImageList is still the...
> The next step would be to open a RFP: https://gitlab.com/fdroid/rfp/issues/new Done: https://gitlab.com/fdroid/rfp/-/issues/1991
https://github.com/prof7bit/TorChat/issues/62
1. Close TorChat 2. Download latest "Expert Bundle" build: https://www.torproject.org/dist/win32/ 3. Install it to c:\TorChat\bin\Tor\ 4. Start TorChat
Use expert bundle. If you look to the [changelog of tor browser](https://blog.torproject.org/category/tags/tor-browser-bundle) you will see that all changes about browser (FireFox), but not Tor. So if you will use updates...
I found that problem with linking nghttp2. It seems that static version libcurl.a linked with dynamic version nghttp2 (i.e. it compiled without flag `-DNGHTTP2_STATIC`). My test CMakeLists.txt: ``` cmake_minimum_required(VERSION 2.8)...
Build command: ``` i686-w64-mingw32-gcc.exe -Wall -DCURL_STATICLIB -DNGHTTP2_STATICLIB -g -Iinclude -c main.c -o obj\Debug\main.o i686-w64-mingw32-g++.exe -Llib -o bin\Debug\cb_curl_static.exe obj\Debug\main.o -static-libstdc++ -static-libgcc -static -lcurl -lnghttp2 -lssl -lcrypto -lidn2 -lssh2 -lz -lws2_32 -lwinmm...
@williamjcm Did you set `-DCURL_STATICLIB` when building `main.c`?