diff options
author | Jason E. Hale <jhale@FreeBSD.org> | 2023-07-30 16:12:19 -0400 |
---|---|---|
committer | Jason E. Hale <jhale@FreeBSD.org> | 2023-07-30 16:15:30 -0400 |
commit | d3ddc6b5eeb665a49b5fd99c672c9b36148eb79e (patch) | |
tree | 806efaf44b20fbf9fca160027dd79e32d9949a36 | |
parent | devel/qtcreator: Update to 11.0.0 release. (diff) |
devel/qtcreator: Silence locale warnings
Detected locale "C" with character encoding "US-ASCII", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
-rw-r--r-- | devel/qtcreator/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devel/qtcreator/Makefile b/devel/qtcreator/Makefile index d0eca9b82252..78feceeec7f5 100644 --- a/devel/qtcreator/Makefile +++ b/devel/qtcreator/Makefile @@ -25,6 +25,7 @@ USES= cmake compiler:c++17-lang desktop-file-utils gl llvm:build,run,min=15 \ pkgconfig python qt:6 shebangfix tar:xz USE_GL= gl USE_LDCONFIG= ${LOCALBASE}/lib/${PORTNAME} +USE_LOCALE= C.UTF-8 USE_QT= 5compat base declarative positioning quick3d quicktimeline \ serialport shadertools sqldriver-sqlite svg tools translations webchannel |