* Build PHP for release
* Disable ODBC support on Darwin; unixODBC needs patching on Darwin. svn path=/nixpkgs/trunk/; revision=5191
This commit is contained in:
parent
67d9dfd583
commit
7f239275aa
@ -874,8 +874,11 @@ rec {
|
|||||||
inherit fetchurl stdenv libsigsegv gettext;
|
inherit fetchurl stdenv libsigsegv gettext;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# FIXME: unixODBC needs patching on Darwin (see darwinports)
|
||||||
php = (import ../development/interpreters/php) {
|
php = (import ../development/interpreters/php) {
|
||||||
inherit stdenv fetchurl flex bison libxml2 apacheHttpd unixODBC;
|
inherit stdenv fetchurl flex bison libxml2 apacheHttpd;
|
||||||
|
unixODBC =
|
||||||
|
if stdenv.system == "powerpc-darwin" then null else unixODBC;
|
||||||
};
|
};
|
||||||
|
|
||||||
guile = (import ../development/interpreters/guile) {
|
guile = (import ../development/interpreters/guile) {
|
||||||
|
@ -82,6 +82,7 @@ let {
|
|||||||
par2cmdline
|
par2cmdline
|
||||||
parted
|
parted
|
||||||
perl
|
perl
|
||||||
|
php
|
||||||
pkgconfig
|
pkgconfig
|
||||||
postgresql
|
postgresql
|
||||||
postgresql_jdbc
|
postgresql_jdbc
|
||||||
@ -150,6 +151,7 @@ let {
|
|||||||
;};
|
;};
|
||||||
|
|
||||||
powerpcDarwinPkgs = {inherit (allPackages {system = "powerpc-darwin";})
|
powerpcDarwinPkgs = {inherit (allPackages {system = "powerpc-darwin";})
|
||||||
|
apacheHttpd
|
||||||
aterm
|
aterm
|
||||||
autoconf
|
autoconf
|
||||||
automake19x
|
automake19x
|
||||||
@ -162,6 +164,7 @@ let {
|
|||||||
libxslt
|
libxslt
|
||||||
maven
|
maven
|
||||||
nxml
|
nxml
|
||||||
|
php
|
||||||
subversion
|
subversion
|
||||||
tetex
|
tetex
|
||||||
unzip
|
unzip
|
||||||
|
Loading…
x
Reference in New Issue
Block a user