diff options
author | Adriaan de Groot <adridg@FreeBSD.org> | 2021-12-13 11:34:06 +0000 |
---|---|---|
committer | Adriaan de Groot <adridg@FreeBSD.org> | 2021-12-13 11:37:54 +0000 |
commit | 311f9ba169e17fa141fd6a075ee703b6a7da578f (patch) | |
tree | 8251b0768ef663d1899d3739c6a4936cea93c245 | |
parent | 610227f565873935ba57ed5e9b1c6c2fbac47a1e (diff) | |
download | ports-311f9ba169e17fa141fd6a075ee703b6a7da578f.tar.gz ports-311f9ba169e17fa141fd6a075ee703b6a7da578f.zip |
databases/kexi: fix build by nmaking testlib dependency explicit
Another one of the "testlib was a runtime dependency of *something*
in the stack and was used implicitly here" fixes. Even though tests
are turned off through CMake arguments, testlib is still needed
at configure time.
-rw-r--r-- | databases/kexi/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/kexi/Makefile b/databases/kexi/Makefile index 261295c2ead4..942aaef75210 100644 --- a/databases/kexi/Makefile +++ b/databases/kexi/Makefile @@ -1,6 +1,6 @@ PORTNAME= kexi DISTVERSION= 3.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases kde MASTER_SITES= KDE/stable/${PORTNAME}/src DIST_SUBDIR= KDE/${PORTNAME} @@ -21,7 +21,7 @@ USE_KDE= auth bookmarks codecs completion config \ solid sonnet texteditor textwidgets widgetsaddons \ xmlgui breeze-icons_build USE_QT= concurrent core dbus declarative gui network printsupport webkit widgets xml \ - buildtools_build qmake_build + buildtools_build qmake_build testlib_build CONFLICTS_INSTALL= calligra-2* |