diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-05-04 01:42:24 +0000 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-05-04 01:44:29 +0000 |
commit | 5423027d670fd231c524bcbc9decfc27aa2b8154 (patch) | |
tree | 64f4dd46a7079c6c7e7e14e8929a96a220203cf2 | |
parent | 7c411a7ff8308a95ba7b8663aa2dd8a4beadd9d1 (diff) | |
download | ports-5423027d670fd231c524bcbc9decfc27aa2b8154.tar.gz ports-5423027d670fd231c524bcbc9decfc27aa2b8154.zip |
net/freeswitch: Fix dependency
- There was a LIB_DEPENDS to postgresql12-client and also USES=pgsql for
OPTIONS_DEFAULT PGSQL which caused a recursive dependency cylle to
trigger rebuild everytime poudriere is being run.
- Although in previous commits it was mentioned that it builds fine with
i386 that is not the case. It still fails to build 12.4-RELEASE i386
Approved by: portmgr (blanket)
-rw-r--r-- | net/freeswitch/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/freeswitch/Makefile b/net/freeswitch/Makefile index 13c8004c18e1..c6178233af8f 100644 --- a/net/freeswitch/Makefile +++ b/net/freeswitch/Makefile @@ -12,6 +12,7 @@ WWW= https://freeswitch.org LICENSE= MPL11 +BROKEN_i386= error: expected ')' ONLY_FOR_ARCHS= aarch64 amd64 i386 powerpc64 powerpc64le BUILD_DEPENDS= gdiff:textproc/diffutils \ @@ -33,7 +34,6 @@ LIB_DEPENDS= libsqlite3.so:databases/sqlite3 \ libjbig.so:graphics/jbigkit \ libtiff.so:graphics/tiff \ libuuid.so:misc/e2fsprogs-libuuid \ - libpq.so:databases/postgresql12-client \ libmariadb.so:databases/mariadb-connector-c \ libspandsp.so:comms/spandsp \ libsofia-sip-ua.so:net/sofia-sip |