OLS 1.2.8 /bin/sh: aclocal-1.13: command not found

1,628 views
Skip to first unread message

George Liu

unread,
Jan 13, 2014, 4:22:56 AM1/13/14
to openlitespee...@googlegroups.com
Found a bit of spare time to play with OLS 1.2.8 but can't it it to install via Git and source compile ends with error

configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating src/edio/Makefile
config.status: creating src/extensions/Makefile
config.status: creating src/http/Makefile
config.status: creating src/spdy/Makefile
config.status: creating src/log4cxx/Makefile
config.status: creating src/main/Makefile
config.status: creating src/socket/Makefile
config.status: creating src/sslpp/Makefile
config.status: creating src/ssi/Makefile
config.status: creating src/util/Makefile
config.status: creating src/config.h
config.status: executing depfiles commands
CDPATH="${ZSH_VERSION+.}:" && cd . && aclocal-1.13 
/bin/sh: aclocal-1.13: command not found
make: *** [aclocal.m4] Error 127

Using my one liner for install

date; echo; echo "Install OpenLiteSpeed via git repository"; echo "git uses port 9418. If using a firewall open port 9418"; echo "If port not open, hit CTRL+C to exit now"; sleep 60; read -ep "Where do you want to download OpenLiteSpeed source files to ? i.e. /usr/local/src: " DIR; echo; echo "Installing yum packages required..."; echo; yum -q -y groupinstall 'Development tools' ; yum -q -y install git; yum -q -y install automake bzip2-devel curl-devel pcre-devel expat-devel libc-client-devel libxml2-devel libjpeg-devel libpng-devel freetype-devel libmcrypt-devel mhash-devel gd-devel openssl-devel zlib-devel geoip-devel; echo; echo "yum packages installed"; cd $DIR; git clone https://github.com/litespeedtech/openlitespeed.git; cd ${DIR}/openlitespeed; BRANCH=$(git branch -r | tail -1); git checkout -t $BRANCH;./configure; make && make install; echo; echo "Web Admin Console: https://$(uname -n):7080"; echo "Admin: admin Pass: 123456"; echo; echo "Default sample site: http://$(uname -n):8088"; echo; date

Using CentOS 6.5 64bit

GeoIP-devel.x86_64 1.4.8-1.el6 @epel
automake.noarch 1.11.1-4.el6 @base
bzip2-devel.x86_64 1.0.5-7.el6_0 @base
expat-devel.x86_64 2.0.1-11.el6_2 @base
freetype-devel.x86_64 2.3.11-14.el6_3.1 @base
gd-devel.x86_64 2.0.35-11.el6 @base
libc-client-devel.x86_64 2007e-11.el6 @base
libmcrypt-devel.x86_64 2.5.8-9.el6 @epel
libpng-devel.x86_64 2:1.2.49-1.el6_2 @base
libxml2-devel.x86_64 2.7.6-14.el6 @base
mhash-devel.x86_64 0.9.9.9-3.el6 @epel
openssl-devel.x86_64 1.0.1e-16.el6_5.4 @updates
pcre-devel.x86_64 7.8-6.el6 @base
zlib-devel.x86_64 1.2.3-29.el6 @base

Xing

unread,
Jan 16, 2014, 4:04:26 AM1/16/14
to openlitespee...@googlegroups.com
Make sure to install autoconf v2.6.9 or higher or the configure/compile will fail. 

George Liu

unread,
Jan 16, 2014, 9:58:49 AM1/16/14
to openlitespee...@googlegroups.com
Thanks Xing still not sure what i am missing

autoconf --version; automake --version

autoconf (GNU Autoconf) 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+/Autoconf: GNU GPL version 3 or later
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David J. MacKenzie and Akim Demaille.
automake (GNU automake) 1.14
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl-2.0.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Tom Tromey <tro...@redhat.com>
       and Alexandre Duret-Lutz <a...@gnu.org>.

cd openlitespeed

aclocal && libtoolize --copy --install --force && autoreconf

libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./config.guess'
libtoolize: copying file `./config.sub'
libtoolize: copying file `./install-sh'
libtoolize: copying file `./ltmain.sh'
libtoolize: You should add the contents of the following files to `aclocal.m4':
libtoolize:   `/usr/share/aclocal/libtool.m4'
libtoolize:   `/usr/share/aclocal/ltoptions.m4'
libtoolize:   `/usr/share/aclocal/ltversion.m4'
libtoolize:   `/usr/share/aclocal/ltsugar.m4'
libtoolize:   `/usr/share/aclocal/lt~obsolete.m4'
libtoolize: Remember to add `LT_INIT' to configure.ac.
libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
libtoolize: `AC_PROG_RANLIB' is rendered obsolete by `LT_INIT'
configure.ac:26: error: required file './compile' not found
configure.ac:26:   'automake --add-missing' can install 'compile'
src/Makefile.am:11: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/edio/Makefile.am:2: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/extensions/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/extensions/Makefile.am:8: warning: source file 'cgi/lscgid.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
automake: warning: possible forward-incompatibility.
automake: At least a source file is in a subdirectory, but the 'subdir-objects'
automake: automake option hasn't been enabled.  For now, the corresponding output
automake: object file(s) will be placed in the top-level directory.  However,
automake: this behaviour will change in future Automake versions: they will
automake: unconditionally cause object files to be placed in the same subdirectory
automake: of the corresponding sources.
automake: You are advised to start using 'subdir-objects' option throughout your
automake: project, to avoid future incompatibilities.
src/extensions/Makefile.am:8: warning: source file 'cgi/suexec.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'cgi/cgidreq.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'cgi/cgidconfig.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'cgi/cgidworker.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'cgi/cgidconn.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'fcgi/fcgienv.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'fcgi/fcgiappconfig.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'fcgi/fcgiapp.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'fcgi/fcginamevaluepair.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'fcgi/fcgiconnection.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'fcgi/fcgirecord.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'jk/jkajp13.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'jk/jworker.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'jk/jworkerconfig.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'jk/jconn.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'proxy/proxyconfig.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'proxy/proxyworker.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'proxy/proxyconn.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'registry/extappregistry.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'lsapi/lsapiworker.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'lsapi/lsapireq.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'lsapi/lsapiconn.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'lsapi/lsapiconfig.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/http/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/log4cxx/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/main/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/socket/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/spdy/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/ssi/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/ssi/Makefile.am:7: warning: source file '../http/requestvars.cpp' is in a subdirectory,
src/ssi/Makefile.am:7: but option 'subdir-objects' is disabled
src/sslpp/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/util/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/util/Makefile.am:7: warning: source file 'misc/profiletime.cpp' is in a subdirectory,
src/util/Makefile.am:7: but option 'subdir-objects' is disabled
src/util/Makefile.am:7: warning: source file 'sysinfo/nicdetect.cpp' is in a subdirectory,
src/util/Makefile.am:7: but option 'subdir-objects' is disabled
src/util/Makefile.am:7: warning: source file 'sysinfo/systeminfo.cpp' is in a subdirectory,
src/util/Makefile.am:7: but option 'subdir-objects' is disabled
autoreconf: automake failed with exit status: 1

running make in openlitespeed directory gives
make
 cd . && automake-1.14 --foreign
configure.ac:26: error: required file './compile' not found
configure.ac:26:   'automake --add-missing' can install 'compile'
src/Makefile.am:11: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/edio/Makefile.am:2: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/extensions/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/extensions/Makefile.am:8: warning: source file 'cgi/lscgid.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
automake-1.14: warning: possible forward-incompatibility.
automake-1.14: At least a source file is in a subdirectory, but the 'subdir-objects'
automake-1.14: automake option hasn't been enabled.  For now, the corresponding output
automake-1.14: object file(s) will be placed in the top-level directory.  However,
automake-1.14: this behaviour will change in future Automake versions: they will
automake-1.14: unconditionally cause object files to be placed in the same subdirectory
automake-1.14: of the corresponding sources.
automake-1.14: You are advised to start using 'subdir-objects' option throughout your
automake-1.14: project, to avoid future incompatibilities.
src/extensions/Makefile.am:8: warning: source file 'cgi/suexec.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'cgi/cgidreq.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'cgi/cgidconfig.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'cgi/cgidworker.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'cgi/cgidconn.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'fcgi/fcgienv.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'fcgi/fcgiappconfig.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'fcgi/fcgiapp.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'fcgi/fcginamevaluepair.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'fcgi/fcgiconnection.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'fcgi/fcgirecord.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'jk/jkajp13.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'jk/jworker.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'jk/jworkerconfig.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'jk/jconn.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'proxy/proxyconfig.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'proxy/proxyworker.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'proxy/proxyconn.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'registry/extappregistry.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'lsapi/lsapiworker.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'lsapi/lsapireq.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'lsapi/lsapiconn.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/extensions/Makefile.am:8: warning: source file 'lsapi/lsapiconfig.cpp' is in a subdirectory,
src/extensions/Makefile.am:8: but option 'subdir-objects' is disabled
src/http/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/log4cxx/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/main/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/socket/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/spdy/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/ssi/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/ssi/Makefile.am:7: warning: source file '../http/requestvars.cpp' is in a subdirectory,
src/ssi/Makefile.am:7: but option 'subdir-objects' is disabled
src/sslpp/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/util/Makefile.am:4: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/util/Makefile.am:7: warning: source file 'misc/profiletime.cpp' is in a subdirectory,
src/util/Makefile.am:7: but option 'subdir-objects' is disabled
src/util/Makefile.am:7: warning: source file 'sysinfo/nicdetect.cpp' is in a subdirectory,
src/util/Makefile.am:7: but option 'subdir-objects' is disabled
src/util/Makefile.am:7: warning: source file 'sysinfo/systeminfo.cpp' is in a subdirectory,
src/util/Makefile.am:7: but option 'subdir-objects' is disabled
make: *** [Makefile.in] Error 1

Xing Li

unread,
Jan 16, 2014, 11:10:35 AM1/16/14
to George Liu, openlitespee...@googlegroups.com

Try 'yum install libtool'.

Jacob Baungard Hansen

unread,
May 17, 2014, 11:00:37 AM5/17/14
to openlitespee...@googlegroups.com, George Liu
Did you ever find a solution to this? I have the same problem with 1.3.1. I noticed I could compile from the tar file provided, so I ran a git diff. The only difference where the files in /dist/share/autoindex/icons/ had different permissions, changing them did not help. 

In the end I ended up copying the .git folder from my fork directly into the files I got from the tar.gz release, commit and push the changes, attempted to clone the repo from new, didn't work. Still though, I can compile fine from the directory where I copied the /.git/ directory in manually, but of course this is far from ideal! Any suggestions?

On Thursday, January 16, 2014 4:10:35 PM UTC, Xing wrote:

Try 'yum install libtool'.

George Wang

unread,
May 19, 2014, 12:11:56 PM5/19/14
to openlitespee...@googlegroups.com
I think it is a time stamp issue.
The time stamp of files checked out from git causes make to run autoconf/automake to generate the whole configure and make files.

We need to find out the files trigger this, and update the time stamp of those file accordingly.

Best regards,
George Wang
--
You received this message because you are subscribed to the Google Groups "OpenLiteSpeed Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openlitespeed-deve...@googlegroups.com.
To post to this group, send email to openlitespee...@googlegroups.com.
Visit this group at http://groups.google.com/group/openlitespeed-development.
For more options, visit https://groups.google.com/d/optout.

Jacob Baungard Hansen

unread,
Oct 7, 2014, 3:42:27 PM10/7/14
to openlitespee...@googlegroups.com
It is even worse in the new release. Near impossible to build from github clone with autotools. Managed to get it work with cmake after a lot of modifications but in the end it only seem to generate an openlitespeed binary and not do a proper installation (said binary fails to run).

On Monday, May 19, 2014 5:11:56 PM UTC+1, George Wang wrote:
I think it is a time stamp issue.
The time stamp of files checked out from git causes make to run autoconf/automake to generate the whole configure and make files.

We need to find out the files trigger this, and update the time stamp of those file accordingly.

Best regards,
George Wang

On 5/17/2014 11:00 AM, Jacob Baungard Hansen wrote:
Did you ever find a solution to this? I have the same problem with 1.3.1. I noticed I could compile from the tar file provided, so I ran a git diff. The only difference where the files in /dist/share/autoindex/icons/ had different permissions, changing them did not help. 

In the end I ended up copying the .git folder from my fork directly into the files I got from the tar.gz release, commit and push the changes, attempted to clone the repo from new, didn't work. Still though, I can compile fine from the directory where I copied the /.git/ directory in manually, but of course this is far from ideal! Any suggestions?

On Thursday, January 16, 2014 4:10:35 PM UTC, Xing wrote:

Try 'yum install libtool'.

--
You received this message because you are subscribed to the Google Groups "OpenLiteSpeed Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openlitespeed-development+unsub...@googlegroups.com.

David

unread,
Oct 7, 2014, 4:25:40 PM10/7/14
to openlitespee...@googlegroups.com
I am sorry to hear that.
There is a shell script fixtimestamp.sh in the root directory of the source code to fix the time stamp issue, so can you try to run it and re-install again?
Thanks for you feedback.
To unsubscribe from this group and stop receiving emails from it, send an email to openlitespeed-deve...@googlegroups.com.

Will James

unread,
Oct 20, 2014, 9:11:39 PM10/20/14
to openlitespee...@googlegroups.com
I finally got this installed and working from source, I just had to add a few missing files to the git repository. Also installed newer versions of autoconf and automake.


And then used George Liu's one liner to install:
date; echo; echo "Install OpenLiteSpeed via git repository"; echo "git uses port 9418. If using a firewall open port 9418"; echo "If port not open, hit CTRL+C to exit now"; sleep 10; read -ep "Where do you want to download OpenLiteSpeed source files to ? i.e. /usr/local/src: " DIR; echo; echo "Installing yum packages required..."; echo; yum -q -y groupinstall 'Development tools' ; yum -q -y install git; yum -q -y install automake bzip2-devel curl-devel pcre-devel expat-devel libc-client-devel libxml2-devel libjpeg-devel libpng-devel freetype-devel libmcrypt-devel mhash-devel gd-devel openssl-devel zlib-devel geoip-devel; echo; echo "yum packages installed"; cd $DIR; git clone https://github.com/litespeedtech/openlitespeed.git; cd ${DIR}/openlitespeed; BRANCH=$(git branch -r | tail -1); git checkout -t $BRANCH; ./fixtimestamp.sh; ./configure; make && make install; echo; echo "Web Admin Console: https://$(uname -n):7080"; echo "Admin: admin Pass: 123456"; echo; echo "Default sample site: http://$(uname -n):8088"; echo; date

Note that the repository is linked to my personal branch, as soon as the pull request is pulled into litespeed you should change it back.

Pull request: 
https://github.com/litespeedtech/openlitespeed/pull/14
Reply all
Reply to author
Forward
0 new messages