treewide: Make explicit that 'dev' output of libjpeg is used
This commit is contained in:
parent
62479404ea
commit
be00816cab
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
./boost_regex.patch # modified not to use "-mt" suffix
|
||||
];
|
||||
|
||||
configureFlags = "--with-extra-includes=${libjpeg}/include";
|
||||
configureFlags = "--with-extra-includes=${libjpeg.dev}/include";
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig autoreconfHook commoncpp2 openssl boost libsndfile
|
||||
|
@ -135,7 +135,7 @@ let
|
||||
"--with-gd"
|
||||
"--with-freetype-dir=${freetype.dev}"
|
||||
"--with-png-dir=${libpng}"
|
||||
"--with-jpeg-dir=${libjpeg}"
|
||||
"--with-jpeg-dir=${libjpeg.dev}"
|
||||
];
|
||||
buildInputs = [ libpng libjpeg freetype ];
|
||||
};
|
||||
|
@ -29,7 +29,7 @@ composableDerivation.composableDerivation {} (fixed: rec {
|
||||
preConfigure = "export CFLAGS=-O0 CXXFLAGS=-O0; unset CC CXX";
|
||||
|
||||
configureFlags = [
|
||||
"--with-jpeg=${libjpeg}"
|
||||
"--with-jpeg=${libjpeg.dev}"
|
||||
"--with-libtiff=${libtiff}" # optional (without largetiff support)
|
||||
"--with-libpng=${libpng}" # optional
|
||||
"--with-libz=${zlib}" # optional
|
||||
|
@ -24,7 +24,7 @@ composableDerivation.composableDerivation {} (fixed: rec {
|
||||
preConfigure = "export CFLAGS=-O0 CXXFLAGS=-O0; unset CC CXX";
|
||||
|
||||
configureFlags = [
|
||||
"--with-jpeg=${libjpeg}"
|
||||
"--with-jpeg=${libjpeg.dev}"
|
||||
"--with-libtiff=${libtiff}" # optional (without largetiff support)
|
||||
"--with-libpng=${libpng}" # optional
|
||||
"--with-libz=${zlib}" # optional
|
||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
configureFlags =
|
||||
[ "--with-pngincludedir=${libpng}/include"
|
||||
"--with-pnglibdir=${libpng.out}/lib"
|
||||
"--with-jpegincludedir=${libjpeg}/include"
|
||||
"--with-jpegincludedir=${libjpeg.dev}/include"
|
||||
"--with-jpeglibdir=${libjpeg.out}/lib"
|
||||
"--with-expatincludedir=${expat.dev}/include"
|
||||
"--with-expatlibdir=${expat.out}/lib"
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
configureFlags =
|
||||
[ "--with-pngincludedir=${libpng}/include"
|
||||
"--with-pnglibdir=${libpng.out}/lib"
|
||||
"--with-jpegincludedir=${libjpeg}/include"
|
||||
"--with-jpegincludedir=${libjpeg.dev}/include"
|
||||
"--with-jpeglibdir=${libjpeg.out}/lib"
|
||||
"--with-expatincludedir=${expat.dev}/include"
|
||||
"--with-expatlibdir=${expat.out}/lib"
|
||||
|
@ -7123,7 +7123,7 @@ in modules // {
|
||||
HDF5_DIR="${pkgs.hdf5}";
|
||||
NETCDF4_DIR="${pkgs.netcdf}";
|
||||
CURL_DIR="${pkgs.curl.dev}";
|
||||
JPEG_DIR="${pkgs.libjpeg}";
|
||||
JPEG_DIR="${pkgs.libjpeg.dev}";
|
||||
|
||||
meta = {
|
||||
description = "interface to netCDF library (versions 3 and 4)";
|
||||
|
Loading…
Reference in New Issue
Block a user