9f1b5e24ad
* Enable unixODBC support in PHP. * Build MySQL with thread-safe client libraries. svn path=/nixpkgs/trunk/; revision=5045
17 lines
347 B
Bash
17 lines
347 B
Bash
source $stdenv/setup
|
|
|
|
alias lex=flex
|
|
|
|
configureFlags="$configureFlags \
|
|
--with-libxml-dir=$libxml2 \
|
|
--with-apxs2=$apacheHttpd/bin/apxs \
|
|
--with-apr-util=$apacheHttpd"
|
|
|
|
if test -n "$unixODBC"; then
|
|
configureFlags="$configureFlags --with-unixODBC=$unixODBC"
|
|
fi
|
|
|
|
makeFlags="APXS_LIBEXECDIR=$out/modules $makeFlags"
|
|
|
|
genericBuild
|