Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 832218
Collapse All | Expand All

(-)bind-9.18.16.orig/bin/dnssec/Makefile.am (-2 / +7 lines)
Lines 14-21 LDADD += \ Link Here
14
	$(LIBISC_LIBS)		\
14
	$(LIBISC_LIBS)		\
15
	$(LIBDNS_LIBS)
15
	$(LIBDNS_LIBS)
16
16
17
bin_PROGRAMS = \
17
if !BIND_TOOLS_ONLY
18
	dnssec-cds		\
18
bin_PROGRAMS = dnssec-cds
19
else
20
bin_PROGRAMS =
21
endif
22
23
bin_PROGRAMS += \
19
	dnssec-dsfromkey	\
24
	dnssec-dsfromkey	\
20
	dnssec-importkey	\
25
	dnssec-importkey	\
21
	dnssec-keyfromlabel	\
26
	dnssec-keyfromlabel	\
(-)bind-9.18.16.orig/bin/Makefile.am (+4 lines)
Line 1 Link Here
1
if BIND_TOOLS_ONLY
2
SUBDIRS = delv dig dnssec nsupdate
3
else
1
SUBDIRS = named rndc dig delv dnssec tools nsupdate check confgen tests plugins
4
SUBDIRS = named rndc dig delv dnssec tools nsupdate check confgen tests plugins
5
endif
(-)bind-9.18.16.orig/configure.ac (+17 lines)
Lines 1199-1204 AS_IF([test "$enable_dnstap" != "no"], Link Here
1199
AC_SUBST([DNSTAP_CFLAGS])
1199
AC_SUBST([DNSTAP_CFLAGS])
1200
AC_SUBST([DNSTAP_LIBS])
1200
AC_SUBST([DNSTAP_LIBS])
1201
AM_CONDITIONAL([HAVE_DNSTAP], [test "$enable_dnstap" != "no"])
1201
AM_CONDITIONAL([HAVE_DNSTAP], [test "$enable_dnstap" != "no"])
1202
1203
#
1204
# Build only the tools or build everything?
1205
#
1206
# [pairwise: --enable-tools-only, --disable-tools-only]
1207
AC_ARG_ENABLE([tools-only],
1208
	      [AS_HELP_STRING([--enable-tools-only],
1209
			      [enable building only the common tools? [default=no]])],
1210
	      [], [enable_tools_only="no"])
1211
AM_CONDITIONAL([BIND_TOOLS_ONLY], [test "$enable_tools_only" = "yes"])
1212
1202
#
1213
#
1203
# The following sections deal with tools used for formatting
1214
# The following sections deal with tools used for formatting
1204
# the documentation.  They are all optional, unless you are
1215
# the documentation.  They are all optional, unless you are
Lines 1589-1594 report() { Link Here
1589
    if test "yes" = "$with_jemalloc"; then
1600
    if test "yes" = "$with_jemalloc"; then
1590
	echo "    Memory allocator: jemalloc"
1601
	echo "    Memory allocator: jemalloc"
1591
    fi
1602
    fi
1603
    if test "yes" = "$enable_tools_only"; then
1604
	echo "    Only building the following BIND9 tools:"
1605
	echo "        delv, dig, dnssec-dsfromkey, dnssec-importkey,"
1606
	echo "        dnssec-keyfromlabel, dnssec-revoke, dnssec-keygen, dnssec-settime,"
1607
	echo "        dnssec-signzone, dnssec-verify, host, nslookup, nsupdate"
1608
    fi
1592
    if test "yes" = "$enable_full_report" -o "standard" = "$with_locktype"; then
1609
    if test "yes" = "$enable_full_report" -o "standard" = "$with_locktype"; then
1593
	echo "    Mutex lock type: $with_locktype"
1610
	echo "    Mutex lock type: $with_locktype"
1594
    fi
1611
    fi
(-)bind-9.18.16.orig/lib/Makefile.am (+4 lines)
Lines 1-3 Link Here
1
include $(top_srcdir)/Makefile.top
1
include $(top_srcdir)/Makefile.top
2
2
3
if BIND_TOOLS_ONLY
4
SUBDIRS = isc dns ns isccfg bind9 irs
5
else
3
SUBDIRS = isc dns isccc ns isccfg bind9 irs
6
SUBDIRS = isc dns isccc ns isccfg bind9 irs
7
endif

Return to bug 832218