Upstream renamed --with-ssl to --with-openssl, and --without-ssl now
means no SSL at all. This fixes building with SSL libraries other than
OpenSSL.
Approved by: sunpoet (via email)
Building the port with WITH_PIE fails if STANDARD_BOOTSTRAP or
LTO_BOOTSTRAP option is enabled.
Mark PIE_UNSAFE when such an option is enabled until a better solution
is found.
PR: 268901
Reported by: netchild
$ sed -i '' 's/min=14/min=16/' emulators/yuzu/Makefile
$ make clean all -C emulators/yuzu
[...]
CMake Error at /usr/local/share/cmake/Modules/CMakeDetermineCCompiler.cmake:49 (message):
Could not find compiler set in environment variable CC:
clang16.
Call Stack (most recent call first):
CMakeLists.txt
CMake Error at CMakeLists.txt:248 (find_package):
Could not find a configuration file for package "Catch2" that is compatible
with requested version "3.0.1".
The following configuration files were considered but not accepted:
/usr/local/lib/cmake/Catch2/Catch2Config.cmake, version: 2.13.9
https://github.com/yuzu-emu/yuzu/commit/d0fe27708edf
FAILED: src/Hyprland
/usr/local/bin/ld: src/Hyprland.p/managers_ThreadManager.cpp.o: in function `std::__1::basic_filebuf<char, std::__1::char_traits<char> >::overflow(int)':
ThreadManager.cpp:(.text._ZNSt3__113basic_filebufIcNS_11char_traitsIcEEE8overflowEi[_ZNSt3__113basic_filebufIcNS_11char_traitsIcEEE8overflowEi]+0x2e4): undefined reference to `std::bad_cast::bad_cast()'
/usr/local/bin/ld: src/Hyprland.p/managers_ThreadManager.cpp.o: in function `std::__1::basic_filebuf<char, std::__1::char_traits<char> >::sync()':
ThreadManager.cpp:(.text._ZNSt3__113basic_filebufIcNS_11char_traitsIcEEE4syncEv[_ZNSt3__113basic_filebufIcNS_11char_traitsIcEEE4syncEv]+0x306): undefined reference to `std::bad_cast::bad_cast()'
/usr/local/bin/ld: src/Hyprland.p/managers_ThreadManager.cpp.o: in function `std::__1::basic_filebuf<char, std::__1::char_traits<char> >::seekoff(long long, std::__1::ios_base::seekdir, unsigned int)':
ThreadManager.cpp:(.text._ZNSt3__113basic_filebufIcNS_11char_traitsIcEEE7seekoffExNS_8ios_base7seekdirEj[_ZNSt3__113basic_filebufIcNS_11char_traitsIcEEE7seekoffExNS_8ios_base7seekdirEj]+0x166): undefined reference to `std::bad_cast::bad_cast()'
[...]
No new features mostly due to holidays and other things, but:
- TCP reassembly is now less strict about invalid TCP options
- REPL now handles the del[ete] key properly
Notified by: upstream author
ChangeLog: https://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.46.6
Add patch to make m_offset reliable. Due to some race conditions on the
pipeline between FreeBSD's yes a, which emits 8190-long writes on
13-STABLE, and GNU dd (gdd), which it pipes its output into, gdd can
sometimes receive short reads occasionally, and because the count=
normally is the number of read(2) calls dispatched, this then leads to a
shorter reference "file system" that we crcsum, and that causes false
negative test results. gdd warns that iflag=fullblock would avoid
effects of short reads, but this warning is discarded in the test
script. Anyways, patch m_offset to use dd's and gdd's iflag=fullblock,
which causes (g)dd to call read(2) again until the block is full for
each nominal block, so we definitely read the desired output size 512 kB
no matter what shorter blocks might travel through the pipeline.
MFH: 2023Q1
In the previous commit a duplicate USE_FETCH target was added similar to
the one in Mk/Uses/go.mk. However this is possible using a different
number and target name compared to what is already predefined as it
conflicts.
Reported by: bulk build
Approved by: portmgr (just-fix-it)
Since mysql 5.6 the C Connector is distributed as part of the
mysql-client packages and is no longer distributed as a different
package. The requirement of this package is no longer valid as
mysql55-{client|server} packages are in the tree.
gcc 4.2 and related codes have been removed.