diff options
-rw-r--r-- | INSTALL | 8 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | configure | 6 | ||||
-rw-r--r-- | doc/upgrade.html | 3 |
4 files changed, 8 insertions, 10 deletions
@@ -21,15 +21,9 @@ POSIX.1-2008, available at: ./configure && make && sudo make install will work for most users. - It will install the static libraries in /usr/lib/skalibs, the shared + It will install the static libraries in /usr/lib, the shared libraries in /lib, and the sysdeps in /usr/lib/skalibs/sysdeps. - Please note that static libraries in /usr/lib/skalibs *will not* -be found by a default linker invocation: you need -L/usr/lib/skalibs. -Other skarnet.org software automatically handles that case if the -default configuration is used, but if you change the configuration, -remember to use the appropriate --with-lib configure option. - You can strip the libraries of their extra symbols via "make strip" before the "make install" phase. It will shave a few bytes off them. @@ -7,6 +7,7 @@ In 2.4.3.0 - Newish function: mininetstring_read(). (was previously removed in 2.7.0.0) - New header: cplz.h + - Install .a to /usr/lib by default In 2.4.2.0 @@ -366,7 +366,7 @@ LDFLAGS_NOSHARED= LDFLAGS_SHARED=-shared prefix= dynlibdir='$prefix/lib' -libdir='$prefix/lib/$package' +libdir='$prefix/lib' includedir='$prefix/include' sysconfdir='$prefix/etc' sysdepdir='$prefix/lib/$package/sysdeps' @@ -436,8 +436,8 @@ done # Add /usr in the default default case if test -z "$prefix" ; then - if test "$libdir" = '$prefix/lib/$package' ; then - libdir=/usr/lib/$package + if test "$libdir" = '$prefix/lib' ; then + libdir=/usr/lib fi if test "$includedir" = '$prefix/include' ; then includedir=/usr/include diff --git a/doc/upgrade.html b/doc/upgrade.html index 2a93362..eb7a7aa 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -22,6 +22,9 @@ <li> <tt>UNIXMESSAGE_MAXFDS</tt> decreased to 253. </li> <li> New <tt>mininetstring_read()</tt> function. (Was previously removed in 2.7.0.0.) </li> + <li> New <tt>cplz.h</tt> header. </li> + <li> Static libraries now install to <tt>/usr/lib</tt> by +default. </li> </ul> <h2> in 2.14.2.0 </h2> |