diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2001-02-28 17:49:17 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2001-02-28 17:49:17 +0000 |
| commit | 925cc760fd071e60e1510e238572804c6c916d1c (patch) | |
| tree | 2cc59a9de79332859165b7ac60f82e89583c1da1 /gnu/usr.bin | |
| parent | 197e3e903dc54119c3e6f46ce9b33e3b616231bb (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin')
| -rw-r--r-- | gnu/usr.bin/perl/Makefile.inc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/usr.bin/perl/Makefile.inc b/gnu/usr.bin/perl/Makefile.inc index 0c35596ecb39..e012d6be17a1 100644 --- a/gnu/usr.bin/perl/Makefile.inc +++ b/gnu/usr.bin/perl/Makefile.inc @@ -85,14 +85,12 @@ MAKEMAKER_ARGS= INSTALLDIRS=perl PERL_SRC=${.OBJDIR} \ PERL=${MINIPERL} FULLPERL=perl DEFINE=-I${DESTDIR}/usr/include \ DEFINE=-DPERL_CORE -PERL_THREADED?= no -.if ${PERL_THREADED} == "yes" +.if defined(PERL_THREADED) && ${PERL_THREADED} == "true" CFLAGS+= -pthread THREAD= threads- .endif -PERL_DEBUGGING?= no -.if ${PERL_DEBUGGING} == "yes" +.if defined(PERL_DEBUGGING) && ${PERL_DEBUGGING} == "true" CFLAGS+= -DDEBUGGING .endif |
