diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-05-27 05:38:03 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-05-27 05:38:03 +0000 |
commit | 3c8edf032db0ea33eef9be98b2f917250fb8dfbe (patch) | |
tree | 1fb77315c00dcb02fe5344332d9c03ff2b7b6792 /openwrt/package | |
parent | 1e4e635d5f5bcef88a523c7124b4837996c27c89 (diff) | |
download | mtk-20170518-3c8edf032db0ea33eef9be98b2f917250fb8dfbe.zip mtk-20170518-3c8edf032db0ea33eef9be98b2f917250fb8dfbe.tar.gz mtk-20170518-3c8edf032db0ea33eef9be98b2f917250fb8dfbe.tar.bz2 |
Standardize Config.in
SVN-Revision: 1076
Diffstat (limited to 'openwrt/package')
-rw-r--r-- | openwrt/package/mysql/Config.in | 13 | ||||
-rw-r--r-- | openwrt/package/postgresql/Config.in | 12 |
2 files changed, 16 insertions, 9 deletions
diff --git a/openwrt/package/mysql/Config.in b/openwrt/package/mysql/Config.in index 4abf4fc..2c60191 100644 --- a/openwrt/package/mysql/Config.in +++ b/openwrt/package/mysql/Config.in @@ -1,13 +1,16 @@ +config BR2_PACKAGE_MYSQL + bool + default n + depends BR2_PACKAGE_LIBMYSQLCLIENT + config BR2_PACKAGE_LIBMYSQLCLIENT - tristate "libmysqlclient - MySQL client library" + prompt "libmysqlclient - MySQL client library" + tristate default m if CONFIG_DEVEL + select BR2_PACKAGE_MYSQL help MySQL client library. http://dev.mysql.com/ -config BR2_PACKAGE_MYSQL - tristate - default BR2_PACKAGE_LIBMYSQLCLIENT - diff --git a/openwrt/package/postgresql/Config.in b/openwrt/package/postgresql/Config.in index 3692782..542f3d4 100644 --- a/openwrt/package/postgresql/Config.in +++ b/openwrt/package/postgresql/Config.in @@ -1,12 +1,16 @@ +config BR2_PACKAGE_POSTGRESQL + bool + default n + depends BR2_PACKAGE_LIBPQ + config BR2_PACKAGE_LIBPQ - tristate "libpq - PostgreSQL client library" + prompt "libpq - PostgreSQL client library" + tristate default m if CONFIG_DEVEL + select BR2_PACKAGE_POSTGRESQL help PostgreSQL client library. http://www.postgresql.org/ -config BR2_PACKAGE_POSTGRESQL - tristate - default BR2_PACKAGE_LIBPQ |