diff options
author | jlam <jlam@pkgsrc.org> | 2001-05-29 16:19:00 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-05-29 16:19:00 +0000 |
commit | 46a5b3b8581ba13f60c15de3e373b3e3274bf32a (patch) | |
tree | 3c1e5e9525c197f45d200ccf3de4ac34e53feff1 | |
parent | ef18eef10d056fa70ecf1f13f40c7723a80e2484 (diff) | |
download | pkgsrc-46a5b3b8581ba13f60c15de3e373b3e3274bf32a.tar.gz |
Prevent configure script from finding unnecessary libraries: readline,
termcap, and intl. This package shouldn't find and link against any of
those libraries.
-rw-r--r-- | sysutils/amanda-server/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sysutils/amanda-server/Makefile b/sysutils/amanda-server/Makefile index b436b588d9d..68ae57f88cf 100644 --- a/sysutils/amanda-server/Makefile +++ b/sysutils/amanda-server/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2001/02/25 04:18:15 hubertf Exp $ +# $NetBSD: Makefile,v 1.18 2001/05/29 16:19:00 jlam Exp $ # FreeBSD Id: Makefile,v 1.9 1997/03/08 05:00:11 gpalmer Exp # @@ -11,7 +11,6 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.amanda.org/ COMMENT= Server part of Amanda, a network backup system -DEPENDS+= readline>=4.0:../../devel/readline DEPENDS+= amanda-common-2.4.2:../../sysutils/amanda-common USE_X11= yes @@ -23,6 +22,15 @@ USE_GMAKE= yes CONFIGURE_ARGS+= --without-client +# Prevent configure script from finding unnecessary libraries. +# +CONFIGURE_ENV+= ac_cv_lib_intl_main=no +CONFIGURE_ENV+= ac_cv_lib_termcap_tgetent=no +CONFIGURE_ENV+= ac_cv_lib_curses_tgetent=no +CONFIGURE_ENV+= ac_cv_lib_ncurses_tgetent=no +CONFIGURE_ENV+= ac_cv_lib_ncurses_tgetent=no +CONFIGURE_ENV+= ac_cv_lib_readline_readline=no + BUILD_DEFS+= AMANDA_USER AMANDA_SMB AMANDA_VAR # post-install: |