Changes between Version 3 and Version 4 of pciutils


Ignore:
Timestamp:
02/10/2009 08:51:42 PM (15 years ago)
Author:
robert@…
Comment:

The static library probably is not needed.

Legend:

Unmodified
Added
Removed
Modified
  • pciutils

    v3 v4  
    11= PCI Utilities =
    2 For HLFS users, or anyone who wants exclusively PIC libraries, use the following commands:[[BR]]
     2For HLFS users, or anyone who wants exclusively PIC libraries, use the following commands.[[BR]]
    33
     4This static library may not be needed:
    45{{{
    56make PREFIX=/usr ZLIB=no OPT="-O2 -fPIC" &&
    67make PREFIX=/usr ZLIB=no OPT="-O2 -fPIC" install &&
    7 install -v -m 644 lib/libpci.a /usr/lib &&
     8install -v -m 644 lib/libpci.a /usr/lib
     9}}}
     10
     11This builds the shared library:
     12{{{
    813make clean &&
    914make PREFIX=/usr ZLIB=no SHARED=yes &&
    1015make PREFIX=/usr ZLIB=no SHARED=yes install &&
     16cd /usr/lib &&
     17ln -svf libpci.so.3 libpci.so
     18}}}
     19
     20Install the headers too:
     21{{{
    1122install -v -m 755 -d /usr/include/pci &&
    1223install -v -m 644 lib/*.h /usr/include/pci
    1324}}}
    14 Note that some packages want the static version of libpci.a, so it should be installed.
    1525
    1626[wiki:SystemUtilities Up][[br]]