[BACK]Return to bsd.prefs.mk CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / pkgsrc / mk

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /pkgsrc/mk/bsd.prefs.mk between version 1.401 and 1.402

version 1.401, 2018/10/29 01:50:00 version 1.402, 2018/11/12 14:22:58
Line 766  _PKGSRC_USE_STACK_CHECK=no
Line 766  _PKGSRC_USE_STACK_CHECK=no
 _PKGSRC_USE_STACK_CHECK=yes  _PKGSRC_USE_STACK_CHECK=yes
 .endif  .endif
   
   # Enable CTF conversion if the user requested it, the OPSYS supports it, there
   # is a tool for it, and the package supports it.  We also need to explicitly
   # turn on _INSTALL_UNSTRIPPED as conversion is impossible on stripped files.
   #
   .if ${PKGSRC_USE_CTF:Uno:tl} == "yes" && \
       ${_OPSYS_SUPPORTS_CTF:Uno:tl} == "yes" && \
       defined(TOOLS_PLATFORM.ctfconvert) && \
       ${CTF_SUPPORTED:Uyes:tl} == "yes"
   _PKGSRC_USE_CTF=        yes
   _INSTALL_UNSTRIPPED=    # defined
   .else
   _PKGSRC_USE_CTF=        no
   .endif
   
 # Enable cwrappers if not building the wrappers themselves, and if the user has  # Enable cwrappers if not building the wrappers themselves, and if the user has
 # explicitly requested them, or if they haven't but the compiler/platform is  # explicitly requested them, or if they haven't but the compiler/platform is
 # known to support them.  # known to support them.

Legend:
Removed from v.1.401  
changed lines
  Added in v.1.402

CVSweb <webmaster@jp.NetBSD.org>