Changes between Version 1 and Version 2 of Install_on_ubuntu
- Timestamp:
- Nov 18, 2009, 10:46:21 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Install_on_ubuntu
v1 v2 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-essential1 * 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 3 4 4 * also need to have the 'libx11-dev' package 5 {{{ 5 6 apt-get install libx11-dev 6 7 apt-get install libncurses-dev 7 8 apt-get install automake libtool 9 }}} 8 10 9 11 * needed to force libz to be installed: 12 {{{ 10 13 pschecklibs -force libz 11 14 (pschecklibs found a copy of it, but it failed the configure test for libjpeg) 15 }}} 12 16 13 17 * memset is not defined? I had to add it to pmFootprintsFind.c... … … 15 19 * libjpeg has trouble with libtool : i needed to modify config.guess and config.sub (see jpeg-6b-p1) 16 20 * better to install the developer library at the system level: 17 apt-get install libjpeg62-dev21 {{{ apt-get install libjpeg62-dev }}} 18 22 19 23 * 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-dev24 {{{ apt-get install zlib1g-dev }}} 21 25 22 26 * other ubuntu libs that should be installed at the system level: 27 {{{ 23 28 libgsl0-dev 24 29 libmysqlclient15-dev 25 30 libpng12-dev 31 }}}
