summaryrefslogtreecommitdiff
path: root/databases/php-mysql/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2016-09-11Drop "55" (php55) from PHP_VERSIONS_ACCEPTED.taca1-2/+2
2015-12-06Explicitly restrict PHP_VERSIONS_ACCEPTED to 55 and 56 for packages whichtaca1-1/+2
use php-mysql package.
2015-11-25Remove mk/find-prefix.mk usage from the databases category.jperkin1-2/+1
The find-prefix infrastructure was required in a pkgviews world where packages installed from pkgsrc could have different installation prefixes, and this was a way for a dependency prefix to be determined. Now that pkgviews has been removed there is no longer any need for the overhead of this infrastructure. Instead we use BUILDLINK_PREFIX.pkg for dependencies pulled in via buildlink, or LOCALBASE/PREFIX where the dependency is coming from pkgsrc. Provides a reasonable performance win due to the reduction of `pkg_info -qp` calls, some of which were redundant anyway as they were duplicating the same information provided by BUILDLINK_PREFIX.pkg.
2015-08-10Fix build of packages depending on mariadb55-clientmanu1-1/+1
When a package depends on mysql-client, in includes mk/mysql-buildlink3.mk and may get buildlinked with mariadb55-client if MYSQL_VERSION_DEFAULT is set to MARIADB55. mariadb55-client's buildlink3.mk defined BUILDLINK_*.mariadb-client variables, wich caused build problems with packages expecting BUILDLINK_*.mysql-client to be defined. For instance, php-pdo_mysql expectex BUILDLINK_PREFIX.mysql-client to be set and fails to build without it. Fix the problem by changing BUILDLINK_*.mariadb-client to BUILDLINK_*.mysql-client in mariadb55-client/buildlink3.mk. Remove a package specific woakrround for this exact ptoblem in php-mysqli. NB: commit log on pkgsrc/databases/mariadb55-client/buildlink3.mk 1.2-1.3 and pkgsrc/databases/php-mysqli/Makefile 1.12-1.13 was truncated. This change just adds a comment to the first file and a null-commit to the second file to have an oportunity to provide the full cvs log.
2014-06-13Add optional support for mysqlnd (MySQL Native Driver). Removes the need to ↵fhajny1-4/+14
build against and link the mysql-client package.
2013-03-16Reset PKGREVISION by update of both php53 and php54.taca1-2/+1
2013-03-02Bump PKGREVISION for mysql default change to 55.wiz1-1/+2
2012-10-19Reset PKGREVISION by updating both php53 and php54.taca1-2/+1
2012-10-02Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-09-15Recursive bump from mysql51-client library changed to use openssl.obache1-1/+2
2010-12-13Reset PKGREVISION by update of base PHP version.taca1-2/+1
2010-09-30Bump PKGREVISION by default mysql version changed from 5.0 to 5.1.obache1-1/+2
2008-06-12Add DESTDIR support.joerg1-1/+3
2006-06-04Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv).joerg1-2/+2
While going through the tree, fix some more packages which had similiar issues with too strict conflicts, bump the revisions of those.
2006-06-02Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*,joerg1-2/+3
all PEAR packages to php?-pear-* and all Apache packages to ap13-* or ap2-* respectively. Add new variables to simplify the Makefile handling. Add CONFLICTS on the old names. Reset revisions of bumped packages. ap-php will now depend on the default Apache and PHP version. All programs using it have an implicit option of the Apache version as well. OK from jlam@ and adrianp@.
2006-05-13Pass CPP to configure, which needs it to detect uid_t.minskim1-1/+2
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-01-08Bump PKGREVISION due to mysql.buildlink3.mk changes (default mysqlxtraeme1-1/+2
pkg has been changed to 5.x). Reminded by wiz... thanks.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+1
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2004-11-05now that PHP 5.x Makefile.common doesn't pollute CONFIGURE_ARGS, it safejdolecek1-3/+2
to include "../../lang/php/ext.mk" after extension CONFIGURE_ARGS setting; successful build confirmed with both PHP 4.x and PHP 5.x
2004-10-31extension modules must be able to override CONFIGURE_ARGS, so includejdolecek1-2/+3
lang/php/ext.mk before setting CONFIGURE_ARGS
2004-10-31new PHP extension module framework, which makes it possible to buildjdolecek1-0/+19
individual PHP extension packages with either PHP 4.x or PHP 5.x convert existing php4-* packages to this framework and import as php-*