6 releases

Uses old Rust 2015

0.21.3 Mar 16, 2022
0.21.2 Jul 21, 2021
0.21.0 Mar 3, 2021
0.19.9 Jul 26, 2019
0.19.8 May 23, 2018

#116 in Internationalization (i18n)

Download history 14118/week @ 2023-12-14 12333/week @ 2023-12-21 12534/week @ 2023-12-28 12613/week @ 2024-01-04 11336/week @ 2024-01-11 11635/week @ 2024-01-18 11737/week @ 2024-01-25 11871/week @ 2024-02-01 13904/week @ 2024-02-08 13847/week @ 2024-02-15 12686/week @ 2024-02-22 14390/week @ 2024-02-29 15200/week @ 2024-03-07 17584/week @ 2024-03-14 19860/week @ 2024-03-21 15140/week @ 2024-03-28

69,750 downloads per month
Used in 24 crates (2 directly)

MIT license

6.5MB
297 lines

gettext-sys

Raw FFI bindings for gettext. Please see documentation for details.

Licensing

On platforms that don't have a native gettext implementation, this crate compiles GNU gettext, which is licensed under LGPL. This means you have to abide by LGPL. If you don't want or can't do that, there are two ways out:

  1. in a GNU environment, enable gettext-system feature (see below);
  2. dynamically link to GNU gettext library you obtained by some other means, like a package manager. See environment variables below.

Features

  • gettext-system: if enabled, asks the crate to use the gettext implementation that's part of glibc or musl libc. This only works on:

    • Linux with glibc or musl libc;

    • Windows + GNU (e.g. MSYS2) with gettext-devel installed e.g. using:

      pacman --noconfirm -S base-devel mingw-w64-x86_64-gcc libxml2-devel tar
      

    If none of those conditions hold, the crate will proceed to building and statically linking its own copy of GNU gettext!

Environment variables

  • GETTEXT_SYSTEM: same as enabling gettext-system feature (see above).

  • GETTEXT_DIR: if specified, a directory that will be used to find gettext installation. It's expected that under this directory, the include folder has header files, the bin folder has gettext binary, and a lib folder has the runtime libraries.

  • GETTEXT_LIB_DIR: if specified, a directory that will be used to find gettext libraries. Overrides the lib folder implied by GETTEXT_DIR (if specified).

  • GETTEXT_INCLUDE_DIR: if specified, a directory that will be used to find gettext header files. Overrides the include folder implied by GETTEXT_DIR (if specified).

  • GETTEXT_BIN_DIR: if specified, a directory that will be used to find gettext binaries. Overrides the bin folder implied by GETTEXT_DIR (if specified).

  • GETTEXT_STATIC: if specified, gettext libraries will be statically rather than dynamically linked. This only affects GETTEXT_DIR and GETTEXT_*_DIR scenarios; the default behaviour and GETTEXT_SYSTEM still use static and dynamic linking respectively.

  • NUM_JOBS: sets the number of parallel build jobs.

  • TMPDIR (on Unix), TMP, TEMP, USERPROFILE (on Windows): set the parent directory for the temporary build directory.

    GNU gettext uses autotools, which don't allow some characters in paths, notably a space character. To get around that, this crate performs the build in a temporary directory which usually resides somewhere under /tmp or C:\Temp. The aforementioned env vars allow you to move the build directory elsewhere.

For target-specific configuration, each of these environment variables can be prefixed by an upper-cased target, for example, X86_64_UNKNOWN_LINUX_GNU_GETTEXT_DIR. This can be useful in cross compilation contexts.

This doesn't work on AppVeyor ATM. Use SET GETTEXT_SYSTEM=true instead.

Dependencies