From 736ecae2096f84587eac2bc669b548c86702efac Mon Sep 17 00:00:00 2001 From: Dirk Neukirchen Date: Fri, 21 Aug 2015 09:20:05 +0200 Subject: [PATCH] postgresql: add missing librt dependency fixes build error with uclibc Signed-off-by: Dirk Neukirchen --- libs/postgresql/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/postgresql/Makefile b/libs/postgresql/Makefile index 33cb010ab..dd4b28ef6 100644 --- a/libs/postgresql/Makefile +++ b/libs/postgresql/Makefile @@ -42,7 +42,7 @@ endef define Package/pgsql-cli SECTION:=utils CATEGORY:=Utilities - DEPENDS:=+libpq + DEPENDS:=+libpq @USE_UCLIBC:+librt TITLE:=Command Line Interface (CLI) to PostgreSQL databases URL:=http://www.postgresql.org/ SUBMENU:=database @@ -55,7 +55,7 @@ endef define Package/pgsql-server SECTION:=utils CATEGORY:=Utilities - DEPENDS:=+libpq + DEPENDS:=+libpq @USE_UCLIBC:+librt TITLE:=PostgreSQL databases Server URL:=http://www.postgresql.org/ SUBMENU:=database