All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/postgresql: fix BR2_OPTIMIZE_FAST comment
@ 2022-05-14 15:42 Fabrice Fontaine
  2022-05-14 21:10 ` Peter Korsgaard
  2022-05-26  8:09 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-05-14 15:42 UTC (permalink / raw)
  To: buildroot
  Cc: Bernd Kuhls, Asaf Kahlon, Peter Seiderer, Julien Corjon,
	Fabrice Fontaine, Nathaniel Roach, Matt Weber

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

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.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 7c48577daf..f3e918458c 100644
--- a/package/postgresql/Config.in
+++ b/package/postgresql/Config.in
@@ -40,4 +40,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"
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/postgresql: fix BR2_OPTIMIZE_FAST comment
  2022-05-14 15:42 [Buildroot] [PATCH 1/1] package/postgresql: fix BR2_OPTIMIZE_FAST comment Fabrice Fontaine
@ 2022-05-14 21:10 ` Peter Korsgaard
  2022-05-26  8:09 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-05-14 21:10 UTC (permalink / raw)
  To: Fabrice Fontaine
  Cc: Bernd Kuhls, Asaf Kahlon, Peter Seiderer, Julien Corjon,
	buildroot, Nathaniel Roach, Matt Weber

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

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

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/postgresql: fix BR2_OPTIMIZE_FAST comment
  2022-05-14 15:42 [Buildroot] [PATCH 1/1] package/postgresql: fix BR2_OPTIMIZE_FAST comment Fabrice Fontaine
  2022-05-14 21:10 ` Peter Korsgaard
@ 2022-05-26  8:09 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-05-26  8:09 UTC (permalink / raw)
  To: Fabrice Fontaine
  Cc: Bernd Kuhls, Asaf Kahlon, Peter Seiderer, Julien Corjon,
	buildroot, Nathaniel Roach, Matt Weber

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

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

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-05-26  8:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-14 15:42 [Buildroot] [PATCH 1/1] package/postgresql: fix BR2_OPTIMIZE_FAST comment Fabrice Fontaine
2022-05-14 21:10 ` Peter Korsgaard
2022-05-26  8:09 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.