diff options
author | markm <markm@FreeBSD.org> | 1999-09-04 10:27:12 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1999-09-04 10:27:12 +0000 |
commit | 1f1e44eabea5e3da90f36ed71187a3e3866119dc (patch) | |
tree | 2d388f64465213562a422305aa16e456748b2b02 /usr.bin/vi/Makefile | |
parent | 4b90371e14be2ca7998adc3d43948f6b06bc9671 (diff) | |
download | FreeBSD-src-1f1e44eabea5e3da90f36ed71187a3e3866119dc.zip FreeBSD-src-1f1e44eabea5e3da90f36ed71187a3e3866119dc.tar.gz |
Perl support in vi is broken if perl has thread support built in.
Document this. Minor nitpick in other comments.
Diffstat (limited to 'usr.bin/vi/Makefile')
-rw-r--r-- | usr.bin/vi/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vi/Makefile b/usr.bin/vi/Makefile index ef03609..129e057 100644 --- a/usr.bin/vi/Makefile +++ b/usr.bin/vi/Makefile @@ -16,7 +16,7 @@ APISTUFF= ex_notcl.c ex_noperl.c #TCLINTERP= yes #we don't have it in the base tree #TKNVI= yes #not ready, needs X11, tk, doesn't quite work yet -#PERLINTERP= yes #works +#PERLINTERP= yes #works if perl has no thread support built in APISTUFF= ex_tcl.c ex_perl.c @@ -83,7 +83,7 @@ CFLAGS+= -DHAVE_TCL_INTERP -I${DESTDIR}/usr/include/tcl .if defined(PERLINTERP) .PATH: ${SRCDIR}/perl_api -# Perl "knows" how to compile it's components. Ask it for details... +# Perl "knows" how to compile its components. Ask it for details... PERLLIB!= ${PERL} -MConfig -e 'print $$Config{privlib}' PERLCPPFLAGS!= cd ${SRCDIR}/build; ${PERL} -MExtUtils::Embed -e 'ccflags;perl_inc' PERLLIBS!= cd ${SRCDIR}/build; ${PERL} -MExtUtils::Embed -e 'ldopts' |