[Buildroot] [git commit] package/postgresql: fix BR2_OPTIMIZE_FAST comment

Peter Korsgaard peter at korsgaard.com
Sat May 14 21:10:12 UTC 2022


commit: https://git.buildroot.net/buildroot/commit/?id=4f84945cc10a269810559ee38bb24950cab0cee4
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Commit e702a05d8998a1f2416225eb62b43b6585738fe9 wrongly added a
dependency on !BR2_OPTIMIZE_FAST instead of BR2_OPTIMIZE_FAST

Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/bandwidthd/Config.in      | 2 +-
 package/collectd/Config.in        | 2 +-
 package/lighttpd/Config.in        | 2 +-
 package/php/Config.ext            | 4 ++--
 package/poco/Config.in            | 2 +-
 package/postgresql/Config.in      | 2 +-
 package/python-psycopg2/Config.in | 2 +-
 package/qt5/qt5base/Config.in     | 2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/package/bandwidthd/Config.in b/package/bandwidthd/Config.in
index 7537552390..e2a6f1acb1 100644
--- a/package/bandwidthd/Config.in
+++ b/package/bandwidthd/Config.in
@@ -48,7 +48,7 @@ comment "postgresql support needs a toolchain w/ dynamic library, wchar"
 	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
 
 comment "postgresql support can't be built with Optimize for fast"
-	depends on !BR2_OPTIMIZE_FAST
+	depends on BR2_OPTIMIZE_FAST
 
 config BR2_PACKAGE_BANDWIDTHD_SQLITE3
 	bool "enable sqlite3 log storage"
diff --git a/package/collectd/Config.in b/package/collectd/Config.in
index da8465beee..dc6ecd2b72 100644
--- a/package/collectd/Config.in
+++ b/package/collectd/Config.in
@@ -487,7 +487,7 @@ comment "postgresql support needs a toolchain w/ wchar"
 	depends on !BR2_USE_WCHAR
 
 comment "postgresql support can't be built with Optimize for fast"
-	depends on !BR2_OPTIMIZE_FAST
+	depends on BR2_OPTIMIZE_FAST
 
 config BR2_PACKAGE_COLLECTD_PROCESSES
 	bool "processes"
diff --git a/package/lighttpd/Config.in b/package/lighttpd/Config.in
index 9522b80426..5d9e624506 100644
--- a/package/lighttpd/Config.in
+++ b/package/lighttpd/Config.in
@@ -103,7 +103,7 @@ comment "pgsql support needs a toolchain w/ wchar"
 	depends on !BR2_USE_WCHAR
 
 comment "pgsql support can't be built with Optimize for fast"
-	depends on !BR2_OPTIMIZE_FAST
+	depends on BR2_OPTIMIZE_FAST
 
 config BR2_PACKAGE_LIGHTTPD_WEBDAV
 	bool "webdav support"
diff --git a/package/php/Config.ext b/package/php/Config.ext
index e4aced66df..1c2af9fd15 100644
--- a/package/php/Config.ext
+++ b/package/php/Config.ext
@@ -151,7 +151,7 @@ comment "PostgreSQL extension needs a toolchain w/ dynamic library, wchar"
 	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
 
 comment "PostgreSQL extension can't be built with Optimize for fast"
-	depends on !BR2_OPTIMIZE_FAST
+	depends on BR2_OPTIMIZE_FAST
 
 config BR2_PACKAGE_PHP_EXT_SQLITE
 	bool "SQLite3"
@@ -186,7 +186,7 @@ comment "PostgreSQL drivers need a toolchain w/ wchar, dynamic library"
 	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
 
 comment "PostgreSQL drivers can't be built with Optimize for fast"
-	depends on !BR2_OPTIMIZE_FAST
+	depends on BR2_OPTIMIZE_FAST
 
 config BR2_PACKAGE_PHP_EXT_PDO_SQLITE
 	bool "SQLite3"
diff --git a/package/poco/Config.in b/package/poco/Config.in
index d2852ba03e..95f9a46e6e 100644
--- a/package/poco/Config.in
+++ b/package/poco/Config.in
@@ -57,7 +57,7 @@ config BR2_PACKAGE_POCO_DATA_PGSQL
 	select BR2_PACKAGE_POSTGRESQL
 
 comment "Data/PostgreSQL can't be built with Optimize for fast"
-	depends on !BR2_OPTIMIZE_FAST
+	depends on BR2_OPTIMIZE_FAST
 
 config BR2_PACKAGE_POCO_DATA_SQLITE
 	bool "Data/SQLite"
diff --git a/package/postgresql/Config.in b/package/postgresql/Config.in
index 476427d534..899907d6a5 100644
--- a/package/postgresql/Config.in
+++ b/package/postgresql/Config.in
@@ -37,4 +37,4 @@ comment "postgresql needs a toolchain w/ dynamic library, wchar"
 	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
 
 comment "postgresql can't be built with Optimize for fast"
-	depends on !BR2_OPTIMIZE_FAST
+	depends on BR2_OPTIMIZE_FAST
diff --git a/package/python-psycopg2/Config.in b/package/python-psycopg2/Config.in
index 361c40cfa9..4aa86c7690 100644
--- a/package/python-psycopg2/Config.in
+++ b/package/python-psycopg2/Config.in
@@ -27,4 +27,4 @@ comment "python-psycopg2 needs a toolchain w/ wchar"
 	depends on !BR2_USE_WCHAR
 
 comment "python-psycopg2 can't be built with Optimize for fast"
-	depends on !BR2_OPTIMIZE_FAST
+	depends on BR2_OPTIMIZE_FAST
diff --git a/package/qt5/qt5base/Config.in b/package/qt5/qt5base/Config.in
index 6f2309dffd..b876f1948e 100644
--- a/package/qt5/qt5base/Config.in
+++ b/package/qt5/qt5base/Config.in
@@ -85,7 +85,7 @@ comment "PostgreSQL plugin needs a toolchain w/ wchar, dynamic library"
 	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
 
 comment "PostgreSQL plugin can't be built with Optimize for fast"
-	depends on !BR2_OPTIMIZE_FAST
+	depends on BR2_OPTIMIZE_FAST
 
 choice
 	prompt "SQLite 3 support"



More information about the buildroot mailing list