Skip to content

Commit f298e7b

Browse files
committed
configure.ac: remove stale code
1 parent ba98d5c commit f298e7b

File tree

1 file changed

+0
-48
lines changed

1 file changed

+0
-48
lines changed

configure.ac

-48
Original file line numberDiff line numberDiff line change
@@ -351,16 +351,6 @@ AC_DEFUN([LIB_FFR_FEATURE],
351351
# openarc
352352
#
353353

354-
FEATURE([poll], [use poll() instead of select()])
355-
356-
# sendmail command
357-
358-
AC_PATH_PROG([SENDMAIL_PATH], [sendmail], [/usr/sbin/sendmail],
359-
[/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/lib:$PATH])
360-
AC_DEFINE_UNQUOTED([SENDMAIL_PATH], "$ac_cv_path_SENDMAIL_PATH",
361-
[The path the the sendmail executable for report sending])
362-
AC_SUBST([SENDMAIL_PATH])
363-
364354
#
365355
# use rpath at load time?
366356
#
@@ -525,9 +515,6 @@ AC_ARG_ENABLE([allsymbols],
525515
[export internal-use symbols for better test coverage]))
526516
AM_CONDITIONAL(ALL_SYMBOLS, [test x"$enable_allsymbols" = x"yes"])
527517

528-
# the AM_CONDITIONAL and AC_DEFINE for USE_ARLIB are farther below,
529-
# after the Darwin checks
530-
531518
AC_ARG_ENABLE([debug],
532519
AS_HELP_STRING([--enable-debug],
533520
[produce debugging binaries and libraries]),
@@ -880,41 +867,6 @@ AC_SUBST(LIBOPENARC_INC)
880867
AC_DEFINE_UNQUOTED([LIBOPENARC_FEATURE_STRING], "$LIBOPENARC_FEATURE_STRING",
881868
[Feature string for printing])
882869

883-
#
884-
# Platform Specific Configuration
885-
#
886-
AC_CANONICAL_HOST
887-
case "$host" in
888-
*-darwin*)
889-
CPPFLAGS="$CPPFLAGS -DBIND_8_COMPAT -DDARWIN"
890-
if test x"$unboundpath" = x"no"
891-
then
892-
AC_MSG_ERROR("unbound required on Darwin")
893-
fi
894-
;;
895-
esac
896-
897-
#
898-
# Determine domainname for sample configs
899-
#
900-
AC_ARG_WITH([domain],
901-
AS_HELP_STRING([--with-domain],
902-
[name of the domain for signing - sets this in sample configuration files]),
903-
[
904-
DOMAIN="$withval"
905-
],[
906-
AC_PATH_PROG(domainname, domainname)
907-
AS_IF([test x"$domainname" != x""],
908-
[DOMAIN=`$domainname`],
909-
)
910-
AS_IF([test x"$DOMAIN" = x"" -o x"$DOMAIN" = x"(none)" ],
911-
[DOMAIN=example.com]
912-
)
913-
]
914-
)
915-
916-
AC_SUBST([DOMAIN])
917-
918870
#
919871
# final command line tweaks
920872
#

0 commit comments

Comments
 (0)