diff options
author | Peter Seiderer <ps.report@gmx.net> | 2016-10-17 22:01:28 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-10-19 23:36:48 +0200 |
commit | 1092c8f612229aeca7ef7453debdb0e7b501004b (patch) | |
tree | 513c2724bf107cba11f732c05f91a103de78cb2c | |
parent | b905df0df790ddf462e25bede08da84e048a28e1 (diff) | |
download | buildroot-1092c8f612229aeca7ef7453debdb0e7b501004b.tar.gz buildroot-1092c8f612229aeca7ef7453debdb0e7b501004b.zip |
motion: fix postgresql support
The commandline paramter to enable/disable postgresql support is
called '--with-pgsql/--without-pgsql' and not '--with-postgresql/
--without-postgresql'.
Fixes [1] in case postgresql development files are installed on the host:
checking for PostgreSQL... testing
checking autodect pgsql headers... yes /usr/include/postgresql
checking autodect pgsql libs... /usr/lib64
checking for PQconnectStart in -lpq... no
configure: error: PostgreSQL support can't build without PostgreSQL libraries
[1] http://autobuild.buildroot.net/results/749/7497730da2affffe0e5b9b790081de10c269f416
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/motion/motion.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/motion/motion.mk b/package/motion/motion.mk index cf9be7602a..16ce406f84 100644 --- a/package/motion/motion.mk +++ b/package/motion/motion.mk @@ -44,11 +44,11 @@ endif ifeq ($(BR2_PACKAGE_POSTGRESQL),y) MOTION_DEPENDENCIES += postgresql MOTION_CONF_OPTS += \ - --with-postgresql \ + --with-pgsql \ --with-pgsql-include=$(STAGING_DIR)/usr/include \ --with-pgsql-lib=$(STAGING_DIR)/usr/lib else -MOTION_CONF_OPTS += --without-postgresql +MOTION_CONF_OPTS += --without-pgsql endif ifeq ($(BR2_PACKAGE_SDL),y) |