Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Installing libjpeg on OS X (See related posts)

Get http://www.ijg.org/files/jpegsrc.v6b.tar.gz, and then:

   1  tar zxvf jpegsrc.v6b.tar.gz
   2  cd jpeg-6b
   3  cp /usr/share/libtool/config.sub .
   4  cp /usr/share/libtool/config.guess .
   5  ./configure --enable-shared --enable-static
   6  make
   7  sudo make install
   8  sudo ranlib /usr/local/lib/libjpeg.a

You need to create an account or log in to post comments to this site.


Click here to browse all 5827 code snippets

Related Posts