diff options
author | ru <ru@FreeBSD.org> | 2005-11-10 18:07:07 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2005-11-10 18:07:07 +0000 |
commit | c82c5ba499665e44341dee9630ef960a16eca899 (patch) | |
tree | d3e7e373e1b02fdf2f14e66714105afabc05662e /lib/ncurses | |
parent | 9f37514a123bf2ec67aa6382b6528757c562e47d (diff) | |
download | FreeBSD-src-c82c5ba499665e44341dee9630ef960a16eca899.zip FreeBSD-src-c82c5ba499665e44341dee9630ef960a16eca899.tar.gz |
Add missing shared library interdependencies.
Diffstat (limited to 'lib/ncurses')
-rw-r--r-- | lib/ncurses/form/Makefile | 3 | ||||
-rw-r--r-- | lib/ncurses/menu/Makefile | 2 | ||||
-rw-r--r-- | lib/ncurses/panel/Makefile | 2 |
3 files changed, 7 insertions, 0 deletions
diff --git a/lib/ncurses/form/Makefile b/lib/ncurses/form/Makefile index 6e69075..027be49 100644 --- a/lib/ncurses/form/Makefile +++ b/lib/ncurses/form/Makefile @@ -8,6 +8,9 @@ NCURSES=${.CURDIR}/../../contrib/ncurses .PATH: ${NCURSES}/man LIB= form +DPADD= ${LIBNCURSES} +LDADD= -lncurses + AWK?= awk SRCS= ncurses_def.h \ diff --git a/lib/ncurses/menu/Makefile b/lib/ncurses/menu/Makefile index fd3ddfe..6e05739 100644 --- a/lib/ncurses/menu/Makefile +++ b/lib/ncurses/menu/Makefile @@ -7,6 +7,8 @@ NCURSES=${.CURDIR}/../../contrib/ncurses .PATH: ${NCURSES}/man LIB= menu +DPADD= ${LIBNCURSES} +LDADD= -lncurses AWK?= awk SRCS= ncurses_def.h \ diff --git a/lib/ncurses/panel/Makefile b/lib/ncurses/panel/Makefile index e715921..6d828b2 100644 --- a/lib/ncurses/panel/Makefile +++ b/lib/ncurses/panel/Makefile @@ -7,6 +7,8 @@ NCURSES=${.CURDIR}/../../contrib/ncurses .PATH: ${NCURSES}/man LIB= panel +DPADD= ${LIBNCURSES} +LDADD= -lncurses AWK?= awk SRCS= ncurses_def.h \ |