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

Diff for /src/share/mk/bsd.README between version 1.52 and 1.53

version 1.52, 2013/10/13 23:30:12 version 1.53, 2013/12/04 22:58:24
Line 306 
Line 306 
 COPTS           Additional flags to the compiler when creating C objects.  COPTS           Additional flags to the compiler when creating C objects.
   
 LDADD           Additional loader objects.  Usually used for libraries.  LDADD           Additional loader objects.  Usually used for libraries.
                 For example, to load with the compatibility and utility                  For example, to load with the crypto and utility
                 libraries, use:                  libraries, use:
   
                         LDADD+=-lutil -lcompat                          LDADD+=-lutil -lcrypto
   
 LDFLAGS         Additional loader flags.  LDFLAGS         Additional loader flags.
   
Line 330 
Line 330 
                 defined, it's assumed to be ${PROG}.c.                  defined, it's assumed to be ${PROG}.c.
   
 DPADD           Additional dependencies for the program.  Usually used for  DPADD           Additional dependencies for the program.  Usually used for
                 libraries.  For example, to depend on the compatibility and                  libraries.  For example, to depend on the crypto and
                 utility libraries use:                  utility libraries use:
   
                         DPADD+=${LIBCOMPAT} ${LIBUTIL}                          DPADD+=${LIBCRYPTO} ${LIBUTIL}
   
                 The following libraries are predefined for DPADD:                  The following libraries are predefined for DPADD:
   
                         LIBASN1         /usr/lib/libasn1.a                          LIBASN1         /usr/lib/libasn1.a
                         LIBC            /usr/lib/libc.a                          LIBC            /usr/lib/libc.a
                         LIBCOM_ERR      /usr/lib/libcom_err.a                          LIBCOM_ERR      /usr/lib/libcom_err.a
                         LIBCOMPAT       /usr/lib/libcompat.a  
                         LIBCRYPTO       /usr/lib/libcrypto.a                          LIBCRYPTO       /usr/lib/libcrypto.a
                         LIBCURSES       /usr/lib/libcurses.a                          LIBCURSES       /usr/lib/libcurses.a
                         LIBEDIT         /usr/lib/libedit.a                          LIBEDIT         /usr/lib/libedit.a

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.53