diff options
author | jlam <jlam@pkgsrc.org> | 2001-05-29 16:01:57 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-05-29 16:01:57 +0000 |
commit | 913d1e8778383d00eb6c2953bd3e85a84d614e65 (patch) | |
tree | ed52a9fc0d6050e5a82420cf4d36694ec3f0ea61 /sysutils/amanda-common | |
parent | cde66cb5dc2ee3f7e9eccb4cd6a38af31659ef2e (diff) | |
download | pkgsrc-913d1e8778383d00eb6c2953bd3e85a84d614e65.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.
Diffstat (limited to 'sysutils/amanda-common')
-rw-r--r-- | sysutils/amanda-common/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sysutils/amanda-common/Makefile b/sysutils/amanda-common/Makefile index 043bbbedd78..37e686b5913 100644 --- a/sysutils/amanda-common/Makefile +++ b/sysutils/amanda-common/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2001/02/17 17:42:09 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2001/05/29 16:01:57 jlam Exp $ # FreeBSD Id: Makefile,v 1.9 1997/03/08 05:00:11 gpalmer Exp # @@ -34,6 +34,15 @@ ADDGROUP= groupadd CONFIGURE_ARGS+= --without-server --without-restore --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 + CPPFLAGS= # empty BUILD_DEFS+= AMANDA_USER AMANDA_SMB AMANDA_VAR |