Installation openSUSE » History » Revision 2
Revision 1 (stbuehler, 2010-02-06 23:58) → Revision 2/3 (stbuehler, 2010-04-07 15:56)
h1. Installation openSUSE Add additional repositories: <pre> zypper ar http://download.opensuse.org/repositories/devel:/tools:/building/openSUSE_11.2 develtools # needed for ragel zypper ar http://download.opensuse.org/repositories/home:/darix/openSUSE_11.2 darix # needed for libev </pre> Install packages: <pre> zypper install git-core cmake gcc glib2-devel libev-devel zlib-devel ragel lua-devel </pre> Checkout source: <pre> git clone git://git.lighttpd.net/lighttpd/lighttpd2 git://git.lighttpd.net/lighttpd/sandbox cd lighttpd2 sandbox mkdir cmakebuild </pre> Configure: (in cmakebuild/); use c to configure, change some flags, configure again, g to generate if configure was successful (q to quit if not successful) <pre> ccmake .. </pre> Build: (in cmakebuild/) <pre> make </pre>