Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 Aug 2000 09:40:03 -0700 (PDT)
From:      Johan Karlsson <k@numeri.campus.luth.se>
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: misc/19367: /etc/defaults/make.conf lists wrong value for  PERL_THREADED
Message-ID:  <200008031640.JAA02758@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR misc/19367; it has been noted by GNATS.

From: Johan Karlsson <k@numeri.campus.luth.se>
To: freebsd-gnats-submit@FreeBSD.org
Cc: patl@phoenix.volant.org, markm@FreeBSD.org
Subject: Re: misc/19367: /etc/defaults/make.conf lists wrong value for 
 PERL_THREADED
Date: Thu, 03 Aug 2000 18:33:21 +0200

 Hi 
 
 I think a better solution is to change
 /usr/src/gnu/usr.bin/perl/perl/Makefile:.if ${PERL_THREADED} == "yes"
 /usr/src/gnu/usr.bin/perl/Makefile.inc:PERL_THREADED?= no
 /usr/src/gnu/usr.bin/perl/Makefile.inc:.if ${PERL_THREADED} == "yes"
 
 to use 'true' instead since our make.conf uses true for every other value.
 
 
 in /usr/src/gnu/usr.bin/perl/perl/
 --- Makefile.~1~	Thu Aug  3 18:27:23 2000
 +++ Makefile	Thu Aug  3 18:28:03 2000
 @@ -24,7 +24,7 @@
  DYNAMIC_EXT=	B/B DB_File/DB_File Data/Dumper/Dumper Fcntl/Fcntl IO/IO \
  		IPC/SysV/SysV NDBM_File/NDBM_File Opcode/Opcode POSIX/POSIX \
  		SDBM_File/SDBM_File Socket/Socket attrs/attrs re/re
 -.if ${PERL_THREADED} == "yes"
 +.if ${PERL_THREADED} != "no"
  DYNAMIC_EXT+=	Thread/Thread
  .endif
  
 
 in /usr/src/gnu/usr.bin/perl/
 --- Makefile.inc.~1~	Thu Aug  3 18:27:27 2000
 +++ Makefile.inc	Thu Aug  3 18:28:26 2000
 @@ -58,7 +58,7 @@
  FARMDIRS=	lib ext Porting hints
  
  PERL_THREADED?= no
 -.if ${PERL_THREADED} == "yes"
 +.if ${PERL_THREADED} != "no"
  CFLAGS+=        -pthread
  THREAD=		threads-
  .endif
 
 
 Mark (markm), can you please have a look at this since you made the changes.
 
 Thanks
 Johan K
 
 


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200008031640.JAA02758>