I am trying to install libjpeg on os X to fix a problem with setting up a Python image library JPEG.
I downloaded libjpeg from http://www.ijg.org/files/jpegsrc.v7.tar.gz
Then I started to configure the configuration file
cp /usr/share/libtool/config.sub .
cp /usr/share/libtool/config.guess .
./configure βenable-shared
However, the checkbox with access enabled did not work.
$ ./configure β-enable-shared
configure: WARNING: you should use
configure: WARNING: invalid host type: β-enable-shared
checking build system type... Invalid configuration `β-enable-shared': machine `β-enable' not recognized
configure: error: /bin/sh ./config.sub β-enable-shared failed
I have done a lot of Google searches, and I cannot figure out where the error is or how to get around this error.
source
share