[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.71 and 1.72

version 1.71, 2003/12/27 23:23:21 version 1.72, 2004/01/28 02:28:14
Line 30 
Line 30 
 # Set toolchain to be able to know differences.  # Set toolchain to be able to know differences.
 .if (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "powerpc" || \  .if (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "powerpc" || \
      ${MACHINE_ARCH} == "hppa" || ${MACHINE_ARCH} == "sparc64" || \       ${MACHINE_ARCH} == "hppa" || ${MACHINE_ARCH} == "sparc64" || \
      ${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "i386")       ${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "i386" || \
        ${MACHINE_ARCH} == "x86_64")
 ELF_TOOLCHAIN?= yes  ELF_TOOLCHAIN?= yes
 .else  .else
 ELF_TOOLCHAIN?= no  ELF_TOOLCHAIN?= no
 .endif  .endif
   
 # don't use yet.  # do the dew
   .if (${MACHINE_ARCH} == "x86_64" || ${MACHINE_ARCH} == "hppa64")
   USE_GCC3?=yes
   .else
 USE_GCC3?=no  USE_GCC3?=no
   .endif
   
 # where the system object and source trees are kept; can be configurable  # where the system object and source trees are kept; can be configurable
 # by the user in case they want them in ~/foosrc and ~/fooobj, for example  # by the user in case they want them in ~/foosrc and ~/fooobj, for example
Line 111 
Line 116 
   
 # 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") || \  .if (${MACHINE_ARCH} == "vax") || (${MACHINE_ARCH} == "x86_64") || \
     (${MACHINE_ARCH} == "hppa") || (${MACHINE_ARCH} == "m88k")      (${MACHINE_ARCH} == "hppa") || (${MACHINE_ARCH} == "m88k")
 NOPIC=  NOPIC=
 .endif  .endif

Legend:
Removed from v.1.71  
changed lines
  Added in v.1.72