pkgconfig: Enable cross-compilation

(cherry picked from commit 91fdb2f9caf5ce14acb87f3b877216aeb2590e7e)
This commit is contained in:
Ben Gamari 2017-10-27 17:13:21 -04:00 committed by John Ericson
parent bef09dcca1
commit 6db707fe7e

View file

@ -24,7 +24,15 @@ stdenv.mkDerivation rec {
buildInputs = optional (stdenv.isCygwin || stdenv.isDarwin || stdenv.isSunOS) libiconv;
configureFlags = [ "--with-internal-glib" ]
++ optional (stdenv.isSunOS) [ "--with-libiconv=gnu" "--with-system-library-path" "--with-system-include-path" "CFLAGS=-DENABLE_NLS" ];
++ optional (stdenv.isSunOS) [ "--with-libiconv=gnu" "--with-system-library-path" "--with-system-include-path" "CFLAGS=-DENABLE_NLS" ]
# Can't run these tests while cross-compiling
++ optional (stdenv.hostPlatform != stdenv.buildPlatform)
[ "glib_cv_stack_grows=no"
"glib_cv_uscore=no"
"ac_cv_func_posix_getpwuid_r=yes"
"ac_cv_func_posix_getgrgid_r=yes"
];
postInstall = ''rm -f "$out"/bin/*-pkg-config''; # clean the duplicate file