[Midnightbsd-cvs] [MidnightBSD/mports] d0dc4b: textproc/scim-m17n: Fix build with modern C++ stan...
Lucas Holt
noreply at github.com
Thu May 28 09:36:21 EDT 2026
Branch: refs/heads/master
Home: https://github.com/MidnightBSD/mports
Commit: d0dc4bc228b3301bae2cf25c327acf05ee889301
https://github.com/MidnightBSD/mports/commit/d0dc4bc228b3301bae2cf25c327acf05ee889301
Author: Lucas Holt <luke at foolishgames.com>
Date: 2026-05-28 (Thu, 28 May 2026)
Changed paths:
M textproc/scim-m17n/Makefile
Log Message:
-----------
textproc/scim-m17n: Fix build with modern C++ standard libraries (#588)
Resolves the compilation failure on Magus (port ID 2189885) where
standard C++ library implicit instantiation of undefined template
`std::char_traits<unsigned int>` was triggered. Specifying
`-D__STDC_ISO_10646__` ensures SCIM's `WideString` is defined as
`std::wstring` (`std::basic_string<wchar_t>`), for which
`std::char_traits` is fully defined. Additionally, this sets the
`LICENSE` field to `gpl2` to match related SCIM ports.
## Summary by Sourcery
Fix build issues for scim-m17n with modern C++ standard libraries and
align licensing metadata with related SCIM ports.
Bug Fixes:
- Resolve compilation failures caused by incompatible wide character
handling in modern standard C++ libraries.
Build:
- Add compiler and linker flags to locate dependencies and define
__STDC_ISO_10646__ for successful C++11 builds.
Chores:
- Set the port LICENSE field to gpl2 to match related SCIM ports.
Signed-off-by: Lucas Holt <luke at foolishgames.com>
To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/mports/settings/notifications
More information about the Midnightbsd-cvs
mailing list