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

Diff for /src/share/mk/bsd.port.mk between version 1.61 and 1.62

version 1.61, 1999/02/17 13:00:42 version 1.62, 1999/02/17 23:45:15
Line 95 
Line 95 
 #                                 directories will get created, and symbolically linked to from  #                                 directories will get created, and symbolically linked to from
 #                                 ${WRKDIR} (see below).  This is useful for building ports on  #                                 ${WRKDIR} (see below).  This is useful for building ports on
 #                                 several architectures, then ${PORTSDIR} can be NFS-mounted  #                                 several architectures, then ${PORTSDIR} can be NFS-mounted
 #                                 while ${WRKOBJDIR} is local to every arch.  #                                 while ${WRKOBJDIR} is local to every arch
   # NO_SHARED_LIBS - defined as "yes" for those machine architectures that do
   #                                 not support shared libraries.
   
 #  #
 # Variables that typically apply to an individual port.  Non-Boolean  # Variables that typically apply to an individual port.  Non-Boolean
Line 362 
Line 364 
 .include "${.CURDIR}/../Makefile.inc"  .include "${.CURDIR}/../Makefile.inc"
 .endif  .endif
   
   # Define SUPPORT_SHARES for those machines that support shared libraries.
   #
   .if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "powerpc") || \
       (${MACHINE_ARCH} == "vax") || (${MACHINE_ARCH} == "hppa")
   NO_SHARED_LIBS= yes
   .endif
   
 NOCLEANDEPENDS= yes  NOCLEANDEPENDS= yes
 NOMANCOMPRESS?= yes  NOMANCOMPRESS?= yes
 DEF_UMASK?=             022  DEF_UMASK?=             022
Line 626 
Line 635 
 DESCR?=         ${PKGDIR}/DESCR  DESCR?=         ${PKGDIR}/DESCR
 .if exists(${PKGDIR}/PLIST.${ARCH})  .if exists(${PKGDIR}/PLIST.${ARCH})
 PLIST?=         ${PKGDIR}/PLIST.${ARCH}  PLIST?=         ${PKGDIR}/PLIST.${ARCH}
   .else
   .if defined(NO_SHARED_LIBS) && exists(${PKGDIR}/PLIST.noshared)
   PLIST?=         ${PKGDIR}/PLIST.noshared
 .else  .else
 PLIST?=         ${PKGDIR}/PLIST  PLIST?=         ${PKGDIR}/PLIST
 .endif  .endif

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.62