[BACK]Return to checklist.html CVS log [TXT][DIR] Up to [local] / www

Diff for /www/Attic/checklist.html between version 1.67 and 1.68

version 1.67, 2007/08/16 16:23:22 version 1.68, 2007/09/09 19:49:20
Line 323 
Line 323 
   
 <br><br><li>  <br><br><li>
 Install the application with <b>make fake</b>.  Install the application with <b>make fake</b>.
 If the port installs dynamic libraries, check their symbol tables  Libraries should never be stripped. Executables are stripped by default;
 with <code>nm</code>, as some mistaken software strips dynamic libraries,  this is governed by <code>${INSTALL_STRIP}</code>.
 which may lead to weird failures later. On the other hand, executable binaries  <code>${INSTALL_PROGRAM}</code> honors this automatically and is
 SHOULD be stripped; <code>file</code> can be used to determine this.  If the  preferable to unconditional stripping (e.g., by an "install-strip"
 port already contains code for stripping binaries, use it (i.e., an  target or by running "strip" from the Makefile). You can use
 'install-strip' target); otherwise, add a provision in the port Makefile.  <code>file</code> to determine if a binary is stripped or not.
   
 <br><br><li>  <br><br><li>
 <strong>Check port for security holes again</strong>. This is  <strong>Check port for security holes again</strong>. This is

Legend:
Removed from v.1.67  
changed lines
  Added in v.1.68