Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
illuna-minetest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
illuna-minetest
Commits
ad2f95fc
Commit
ad2f95fc
authored
13 years ago
by
Constantin Wenger
Browse files
Options
Downloads
Patches
Plain Diff
updated some path because the dlls are mostly under bin not lib
added explanation why libintl must not belinked under some oses
parent
b99174cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmake/Modules/FindGettextLib.cmake
+3
-2
3 additions, 2 deletions
cmake/Modules/FindGettextLib.cmake
with
3 additions
and
2 deletions
cmake/Modules/FindGettextLib.cmake
+
3
−
2
View file @
ad2f95fc
...
...
@@ -17,6 +17,7 @@ FIND_PROGRAM(GETTEXT_MSGFMT
DOC
"path to msgfmt"
)
# modern Linux, as well as Mac, seem to not need require special linking
# they do not because gettext is part of glibc
# TODO check the requirements on other BSDs and older Linux
IF
(
WIN32
)
FIND_LIBRARY
(
GETTEXT_LIBRARY
...
...
@@ -25,11 +26,11 @@ IF (WIN32)
DOC
"gettext *intl*.lib"
)
FIND_LIBRARY
(
GETTEXT_DLL
NAMES libintl.dll intl.dll libintl3.dll intl3.dll
PATHS
"
${
CUSTOM_GETTEXT_PATH
}
/lib"
PATHS
"
${
CUSTOM_GETTEXT_PATH
}
/bin"
"
${
CUSTOM_GETTEXT_PATH
}
/lib"
DOC
"gettext *intl*.dll"
)
FIND_LIBRARY
(
GETTEXT_ICONV_DLL
NAMES libiconv2.dll
PATHS
"
${
CUSTOM_GETTEXT_PATH
}
/lib"
PATHS
"
${
CUSTOM_GETTEXT_PATH
}
/bin"
"
${
CUSTOM_GETTEXT_PATH
}
/lib"
DOC
"gettext *iconv*.lib"
)
ENDIF
(
WIN32
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment