IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 1 and Version 2 of Install_on_ubuntu


Ignore:
Timestamp:
Nov 18, 2009, 10:46:21 AM (17 years ago)
Author:
eugene
Comment:

--

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-essential
     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 }}}
    33
    44 * also need to have the 'libx11-dev' package
     5{{{
    56  apt-get install libx11-dev
    67  apt-get install libncurses-dev
    78  apt-get install automake libtool
     9}}}
    810
    911 * needed to force libz to be installed:
     12{{{
    1013  pschecklibs -force libz
    1114  (pschecklibs found a copy of it, but it failed the configure test for libjpeg)
     15}}}
    1216
    1317 * memset is not defined?  I had to add it to pmFootprintsFind.c...
     
    1519 * libjpeg has trouble with libtool : i needed to modify config.guess and config.sub (see jpeg-6b-p1)
    1620  * better to install the developer library at the system level:
    17   apt-get install libjpeg62-dev
     21 {{{ apt-get install libjpeg62-dev }}}
    1822
    1923 * 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
     24  {{{ apt-get install zlib1g-dev }}}
    2125
    2226 * other ubuntu libs that should be installed at the system level:
     27{{{
    2328 libgsl0-dev
    2429 libmysqlclient15-dev
    2530 libpng12-dev
     31}}}