5 users online. Create an account or sign in to join them.Users
Attention Symphony Litespeed Users on a Mac... installation guide, showing you how to install Litespeed Webserver on your Mac
This is an open discussion with 2 replies, filed under General.
Search
bzerangue
Does one need --with-freetype-dir[=DIR] in the compilation for freetype to work or does it default to the correct dir if no customizations to the freetype installation were made?
Does one need --with-freetype-dir[=DIR] in the compilation for freetype to work or does it default to the correct dir if no customizations to the freetype installation were made?
@wjnielsen - Good catch!
Add '--with-freetype-dir=..' to your compile command.
I've updated my original post with this correction.
Create an account or sign in to comment.
Installing Litespeed Web Server, MySQL, and PHP on your Mac OS X machine (also works with Lion)
Download and install Litespeed Web Server Standard (FREE)
curl -O http://www.litespeedtech.com/packages/4.0/lsws-4.1.7-std-i386-osx.tar.gz
tar -xzvf lsws-4.1.7-std-i386-osx.tar.gz
cd lsws-4.1.7
sudo ./install.sh
Download and compile (sudo ./configure, sudo make, sudo make install) the following libraries...
Log into Litespeed Webserver and Compile PHP through Litespeed...
'--with-zlib' '--with-gd' '--enable-shmop' '--enable-track-vars' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-magic-quotes' '--enable-mbstring' '--with-iconv' '--with-curl=/usr' '--enable-soap' '--enable-exif' '--with-jpeg-dir=..' '--with-png-dir=..' '--with-freetype-dir=..' '--with-libxml-dir=/usr' '--with-xsl=/usr' '--enable-gd-native-ttf' '--with-ttf' '--enable-libxml' '--enable-xml' '--enable-simplexml' '--enable-wddx' '--enable-sockets' '--enable-bcmath' '--enable-dbase' '--enable-zend-multibyte' '--enable-session' '--with-pcre-regex' '--enable-sigchild' '--enable-magic-quotes' '--enable-zip' '--with-mcrypt=/usr/local/bin/mcrypt' '--with-openssl' '--with-litespeed' '--with-bz2=/usr' '--enable-calendar' '--enable-mbregex' '--enable-sysvmsg' '--with-xmlrpc' '--with-mysqli=/usr/local/mysql/bin/mysqlconfig' '--with-mysql=/usr/local/mysql' '--with-mysql-sock=/tmp/mysql.sock' '--enable-pdo' '--with-pdo-mysql=/usr/local/mysql/bin/mysqlconfig' '--with-gettext'
NOTE: Added '--with-freetype-dir=..' to the configure command per wjnielsen's comment below.