diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2009-01-06 17:59:31 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2009-01-06 17:59:31 +0000 |
commit | b2a96c6df1c8809216eced623ec37a8372b3216e (patch) | |
tree | 0c994bc87e8a2f221a7e2be76b9aafc16eab32bb /shells/zsh | |
parent | 87b685f5d4325ba771e96b0ef49c71f903fb3ae0 (diff) | |
download | ports-b2a96c6df1c8809216eced623ec37a8372b3216e.tar.gz ports-b2a96c6df1c8809216eced623ec37a8372b3216e.zip |
- Remove conditional checks for FreeBSD 5.x and older
Notes
Notes:
svn path=/head/; revision=225335
Diffstat (limited to 'shells/zsh')
-rw-r--r-- | shells/zsh/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/shells/zsh/Makefile b/shells/zsh/Makefile index b351cb7907a6..1a534853c893 100644 --- a/shells/zsh/Makefile +++ b/shells/zsh/Makefile @@ -30,6 +30,8 @@ CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ CONFIGURE_ARGS= --with-term-lib="ncursesw ncurses" --with-tcsetpgrp \ --enable-function-subdirs +EXTRA_PATCHES= ${FILESDIR}/extra-patch-bsdtar + OPTIONS= ZSH_MEM "Enable zsh-mem and zsh-secure-free options" on \ ZSH_MAILDIR "Enable support for Maildirs in MAIL(PATH)" on \ ZSH_MULTIBYTE "Enable multibyte character support" on \ @@ -82,9 +84,6 @@ CONFIGURE_ARGS+= --enable-multibyte CONFIGURE_ARGS+= --disable-multibyte .endif -.if ${OSVERSION} >= 503000 -EXTRA_PATCHES= ${FILESDIR}/extra-patch-bsdtar -.endif post-patch: @${SED} -i "" -e "s,link=dynamic,link=either," \ |