treewide: Make explicit that 'dev' output of libmysql is used
This commit is contained in:
parent
6d68178693
commit
1c761150f7
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
|||
"-DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick"
|
||||
"-DWT_CPP_11_MODE=-std=c++11"
|
||||
"-DGM_PREFIX=${graphicsmagick}"
|
||||
"-DMYSQL_PREFIX=${libmysql}"
|
||||
"-DMYSQL_PREFIX=${libmysql.dev}"
|
||||
"--no-warn-unused-cli"
|
||||
];
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
|
|||
++ optional (openssl != null) "--with-openssl=${openssl.dev}"
|
||||
++ optional (sqlite != null) "--with-sqlite3=${sqlite.dev}"
|
||||
++ optional (postgresql != null) "--with-postgresql=${postgresql}"
|
||||
++ optional (libmysql != null) "--with-mysql=${libmysql}"
|
||||
++ optional (libmysql != null) "--with-mysql=${libmysql.dev}"
|
||||
++ optional (zlib != null) "--with-zlib=${zlib.dev}"
|
||||
++ optional (lzo != null) "--with-lzo=${lzo}"
|
||||
++ optional (jansson != null) "--with-jansson=${jansson}"
|
||||
|
|
Loading…
Reference in New Issue