diff options
author | ade <ade@FreeBSD.org> | 2004-08-03 22:36:52 +0000 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2004-08-03 22:36:52 +0000 |
commit | 964e12c93b0f7a787724b4d70b83d4cab989b315 (patch) | |
tree | 30d59616dab81b2f606e3ae725727737b4cc1b5b /Mk | |
parent | 8fc41f53c9bf41c8ba6ee322d3df8ea524ee36ce (diff) | |
download | FreeBSD-ports-964e12c93b0f7a787724b4d70b83d4cab989b315.zip FreeBSD-ports-964e12c93b0f7a787724b4d70b83d4cab989b315.tar.gz |
Move devel/autoconf->devel/autoconf253 and devel/automake->devel/automake15
All autotools ports are now truly versioned and do not conflict with each
other.
This marks the end of "Phase 1" of the autotools updates.
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.autotools.mk | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Mk/bsd.autotools.mk b/Mk/bsd.autotools.mk index 66ea3ca..1915bc6 100644 --- a/Mk/bsd.autotools.mk +++ b/Mk/bsd.autotools.mk @@ -116,12 +116,6 @@ Autotools_Include_MAINTAINER= ade@FreeBSD.org # the configuration steps. # # Things to do: -# - Move both autoconf and automake to true versioned ports -# (devel/autoconf253 and devel/automake14 respectively). This is -# likely to break a number of ports that make assumptions about -# "autoconf", "automake", et al. but is required if we are to move -# to strictly-versioned autotools. -# # - Work on killing off as many "old" autotools ports as possible # # - Bring back the installation of libtool .la files by default, removing @@ -153,15 +147,7 @@ GNU_CONFIGURE?= yes .endif .if defined(WANT_AUTOMAKE_VER) - -# XXX: hackery to handle non-versioned "legacy" ports -# destined to die -# -. if ${WANT_AUTOMAKE_VER} == 15 -AUTOMAKE_SUFFIX= # empty -. else AUTOMAKE_SUFFIX= ${WANT_AUTOMAKE_VER} -. endif # Make sure we specified a legal version of automake # @@ -220,15 +206,7 @@ BROKEN= "Incompatible autoheader ${WANT_AUTOHEADER_VER} and autoconf ${WANT_AUTO .endif .if defined(WANT_AUTOCONF_VER) - -# XXX: hackery to handle non-versioned "legacy" ports -# destined to die -# -. if ${WANT_AUTOCONF_VER} == 253 -AUTOCONF_SUFFIX= # empty -. else AUTOCONF_SUFFIX= ${WANT_AUTOCONF_VER} -. endif # Make sure we specified a legal version of autoconf # @@ -277,9 +255,6 @@ GNU_CONFIGURE?= yes WANT_LIBTOOL_VER?= ${USE_INC_LIBTOOL_VER} .endif -# Note that there aren't any non-versioned libtools, so we can skip -# a little bit of cruft that exists in automake/autoconf above -# .if defined(WANT_LIBTOOL_VER) LIBTOOL_SUFFIX= ${WANT_LIBTOOL_VER} |