summaryrefslogtreecommitdiff
path: root/mk/autoconf.mk
diff options
context:
space:
mode:
Diffstat (limited to 'mk/autoconf.mk')
-rw-r--r--mk/autoconf.mk48
1 files changed, 1 insertions, 47 deletions
diff --git a/mk/autoconf.mk b/mk/autoconf.mk
index 76d9a202d26..a0010d2b4e6 100644
--- a/mk/autoconf.mk
+++ b/mk/autoconf.mk
@@ -1,4 +1,4 @@
-# $NetBSD: autoconf.mk,v 1.7 2005/05/11 22:17:26 jlam Exp $
+# $NetBSD: autoconf.mk,v 1.8 2005/05/22 19:11:12 jlam Exp $
#
# makefile fragment for packages that use autoconf
# AUTOCONF_REQD can be set to the minimum version required.
@@ -18,55 +18,9 @@ AUTOCONF_REQD?= 2.50
.include "../../mk/bsd.prefs.mk"
.if empty(AUTOCONF_REQD:M2.1[0-9]*)
-. if !empty(_USE_NEW_TOOLS:M[yY][eE][sS])
USE_TOOLS+= autoconf
-. else
-BUILD_DEPENDS+= autoconf>=${AUTOCONF_REQD}:../../devel/autoconf
-AUTOCONF= ${LOCALBASE}/bin/autoconf
-AUTORECONF= ${LOCALBASE}/bin/autoreconf
-AUTOHEADER= ${LOCALBASE}/bin/autoheader
-. endif
.else
-. if !empty(_USE_NEW_TOOLS:M[yY][eE][sS])
USE_TOOLS+= autoconf213
-. else
-BUILD_DEPENDS+= autoconf213>=${AUTOCONF_REQD}:../../devel/autoconf213
-AUTOCONF= ${LOCALBASE}/bin/autoconf-2.13
-AUTORECONF= ${LOCALBASE}/bin/autoreconf-2.13
-AUTOHEADER= ${LOCALBASE}/bin/autoheader-2.13
-. if defined(USE_LIBTOOL)
-pre-configure: do-libtool-m4-override
-. endif
-. endif
-.endif
-
-.if empty(_USE_NEW_TOOLS:M[yY][eE][sS])
-# LIBTOOL_M4_OVERRIDE lists the locations where the libtool.m4 symlink
-# will be created. The libtool.m4 is only created if a GNU configure
-# script exists at that location.
-#
-LIBTOOL_M4_OVERRIDE?= libtool.m4 */libtool.m4 */*/libtool.m4
-
-# Symlink the libtool-1.4.m4 file into any directory in which there's a
-# configure script under ${WRKSRC}. The symlink is called "libtool.m4",
-# which is the name expected by the autoconf tools. The symlinking is
-# only done if ${AUTOCONF_REQD} == 2.13 and USE_LIBTOOL is defined. This
-# allows autoconf-2.13, autoreconf-2.13 and aclocal-2.13 to use the older
-# libtool.m4 file when regenerating files. This is okay, because we later
-# override the generated libtool file anyway.
-#
-.PHONY: do-libtool-m4-override
-do-libtool-m4-override:
-.for _pattern_ in ${LIBTOOL_M4_OVERRIDE}
- ${_PKG_SILENT}${_PKG_DEBUG}cd ${WRKSRC}; \
- for cfile in ${_pattern_:S/libtool.m4$/configure/}; do \
- if [ -f "$$cfile" ]; then \
- libtool_m4=`${DIRNAME} $$cfile`/libtool.m4; \
- ${LN} -sf ${PKGSRCDIR}/mk/gnu-config/libtool-1.4.m4 \
- $$libtool_m4; \
- fi; \
- done
-.endfor
.endif
.endif # AUTOCONF_MK