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

Diff for /src/share/mk/bsd.lib.mk between version 1.38 and 1.39

version 1.38, 2004/06/22 19:50:01 version 1.39, 2004/06/24 04:35:13
Line 117 
Line 117 
 CFLAGS+=        ${COPTS}  CFLAGS+=        ${COPTS}
 CXXFLAGS+=      ${CXXOPTS}  CXXFLAGS+=      ${CXXOPTS}
   
   .if !defined(PICFLAG) && (${MACHINE_ARCH} != "mips")
   PICFLAG=-fpic
   .if ${MACHINE_ARCH} == "m68k"
   # Function CSE makes gas -k not recognize external function calls as lazily
   # resolvable symbols, thus sometimes making ld.so report undefined symbol
   # errors on symbols found in shared library members that would never be
   # called.  Ask niklas@openbsd.org for details.
   PICFLAG+=-fno-function-cse
   .endif
   .endif
   
 _LIBS=lib${LIB}.a  _LIBS=lib${LIB}.a
 .if (${DEBUGLIBS:L} == "yes")  .if (${DEBUGLIBS:L} == "yes")
 _LIBS+=lib${LIB}_g.a  _LIBS+=lib${LIB}_g.a

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.39