| | 1 | * need to make sure you have the 'build-essential' package, which supplies libc, standard headers, as well as gcc: |
| | 2 | apt-get install build-essential |
| | 3 | |
| | 4 | * also need to have the 'libx11-dev' package |
| | 5 | apt-get install libx11-dev |
| | 6 | apt-get install libncurses-dev |
| | 7 | apt-get install automake libtool |
| | 8 | |
| | 9 | * needed to force libz to be installed: |
| | 10 | pschecklibs -force libz |
| | 11 | (pschecklibs found a copy of it, but it failed the configure test for libjpeg) |
| | 12 | |
| | 13 | * memset is not defined? I had to add it to pmFootprintsFind.c... |
| | 14 | |
| | 15 | * libjpeg has trouble with libtool : i needed to modify config.guess and config.sub (see jpeg-6b-p1) |
| | 16 | * better to install the developer library at the system level: |
| | 17 | apt-get install libjpeg62-dev |
| | 18 | |
| | 19 | * installing the IPP code, including libz, broke my ubuntu installation of evince by providing a version of libz which did not have gzopen64 included. It is safest to install the developer version of libz as well: |
| | 20 | * apt-get install zlib1g-dev |
| | 21 | |
| | 22 | * other ubuntu libs that should be installed at the system level: |
| | 23 | libgsl0-dev |
| | 24 | libmysqlclient15-dev |
| | 25 | libpng12-dev |