diff options
| author | micmac1 | 2020-03-07 09:01:53 +0000 |
|---|---|---|
| committer | GitHub | 2020-03-07 09:01:53 +0000 |
| commit | 2d17fc02950a0500e7366907195ef38b4df0d133 (patch) | |
| tree | 2f5905ba99538e88d7b5a346a60bfbc1c776099a | |
| parent | 59ecaa5d053ca37320675fe0152aab0eb965c456 (diff) | |
| parent | 9cff8aecfd6520f51cfc8099c069799ab65e1866 (diff) | |
| download | telephony-2d17fc02950a0500e7366907195ef38b4df0d133.tar.gz | |
Merge pull request #504 from micmac1/pg-fs
freeswitch-stable: use pg_config for now
| -rw-r--r-- | net/freeswitch-stable/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net/freeswitch-stable/Makefile b/net/freeswitch-stable/Makefile index ee332c7..3f6b77d 100644 --- a/net/freeswitch-stable/Makefile +++ b/net/freeswitch-stable/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PRG_NAME:=freeswitch PKG_NAME:=$(PRG_NAME)-stable PKG_VERSION:=1.10.2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MAINTAINER:=Sebastian Kemper <sebastian_ml@gmx.net> PKG_SOURCE:=$(PRG_NAME)-$(PKG_VERSION).-release.tar.xz @@ -674,6 +674,11 @@ endif CONFIGURE_ARGS+= \ --without-pgsql +# libpq pkg-config file is broken, see +# https://github.com/openwrt/packages/pull/11507 +CONFIGURE_ARGS+= \ + --disable-core-pgsql-pkgconfig + # Don't want host-php CONFIGURE_VARS+= \ ac_cv_have_php=no \ |