[BACK]Return to bsd.own.mk CVS log [TXT][DIR] Up to [local] / src / share / mk

Diff for /src/share/mk/bsd.own.mk between version 1.82 and 1.83

version 1.82, 2004/05/18 19:07:32 version 1.83, 2004/06/01 20:43:44
Line 32 
Line 32 
 .endif  .endif
   
 # do the dew  # do the dew
 .if (${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "hppa64" || \  .if ${MACHINE} == "amd64" || (${MACHINE_ARCH} == "arm" || \
     ${MACHINE_ARCH} == "x86_64" || ${MACHINE_ARCH} == "sparc64") || \      ${MACHINE_ARCH} == "hppa" || ${MACHINE_ARCH} == "hppa64" || \
     ${MACHINE} == "amd64"      ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "x86_64")
 USE_GCC3?=yes  USE_GCC3?=yes
 .else  .else
 USE_GCC3?=no  USE_GCC3?=no
Line 112 
Line 112 
   
 # don't try to generate PIC versions of libraries on machines  # don't try to generate PIC versions of libraries on machines
 # which don't support PIC.  # which don't support PIC.
 .if (${MACHINE_ARCH} == "vax") || (${MACHINE_ARCH} == "hppa") || \  .if (${MACHINE_ARCH} == "vax") || (${MACHINE_ARCH} == "m88k")
     (${MACHINE_ARCH} == "m88k")  
 NOPIC=  NOPIC=
 .endif  .endif
   

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.83