Changes between Version 3 and Version 4 of pciutils
- Timestamp:
- 02/10/2009 08:51:42 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pciutils
v3 v4 1 1 = PCI Utilities = 2 For HLFS users, or anyone who wants exclusively PIC libraries, use the following commands :[[BR]]2 For HLFS users, or anyone who wants exclusively PIC libraries, use the following commands.[[BR]] 3 3 4 This static library may not be needed: 4 5 {{{ 5 6 make PREFIX=/usr ZLIB=no OPT="-O2 -fPIC" && 6 7 make PREFIX=/usr ZLIB=no OPT="-O2 -fPIC" install && 7 install -v -m 644 lib/libpci.a /usr/lib && 8 install -v -m 644 lib/libpci.a /usr/lib 9 }}} 10 11 This builds the shared library: 12 {{{ 8 13 make clean && 9 14 make PREFIX=/usr ZLIB=no SHARED=yes && 10 15 make PREFIX=/usr ZLIB=no SHARED=yes install && 16 cd /usr/lib && 17 ln -svf libpci.so.3 libpci.so 18 }}} 19 20 Install the headers too: 21 {{{ 11 22 install -v -m 755 -d /usr/include/pci && 12 23 install -v -m 644 lib/*.h /usr/include/pci 13 24 }}} 14 Note that some packages want the static version of libpci.a, so it should be installed.15 25 16 26 [wiki:SystemUtilities Up][[br]]