<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.theeggeadventure.com/wikimedia/index.php?action=history&amp;feed=atom&amp;title=Lighttpd_on_Solaris</id>
	<title>Lighttpd on Solaris - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.theeggeadventure.com/wikimedia/index.php?action=history&amp;feed=atom&amp;title=Lighttpd_on_Solaris"/>
	<link rel="alternate" type="text/html" href="https://www.theeggeadventure.com/wikimedia/index.php?title=Lighttpd_on_Solaris&amp;action=history"/>
	<updated>2026-04-17T10:20:02Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://www.theeggeadventure.com/wikimedia/index.php?title=Lighttpd_on_Solaris&amp;diff=2196&amp;oldid=prev</id>
		<title>Brianegge: Created page with &#039;I spent the better part of the morning getting lighttpd to install on Solaris 10 using the Sun C 5.8 compiler.  They key thing was I needed to uncomment the sections of the src/M…&#039;</title>
		<link rel="alternate" type="text/html" href="https://www.theeggeadventure.com/wikimedia/index.php?title=Lighttpd_on_Solaris&amp;diff=2196&amp;oldid=prev"/>
		<updated>2009-08-28T03:36:21Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;#039;I spent the better part of the morning getting lighttpd to install on Solaris 10 using the Sun C 5.8 compiler.  They key thing was I needed to uncomment the sections of the src/M…&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;I spent the better part of the morning getting lighttpd to install on Solaris 10 using the Sun C 5.8 compiler.  They key thing was I needed to uncomment the sections of the src/Makefile which enable the liblightcomp.la to be built.  I also had to add &amp;#039;&amp;#039;&amp;#039;-lsendfile&amp;#039;&amp;#039;&amp;#039; to the libs.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;geshi lang=&amp;quot;diff&amp;quot;&amp;gt;&lt;br /&gt;
--- src/Makefile        2009-08-28 13:21:54.510281000 +1000&lt;br /&gt;
+++ /tmp/Makefile-solaris       2009-08-28 13:19:36.201946862 +1000&lt;br /&gt;
@@ -41,7 +41,7 @@&lt;br /&gt;
 # if the linker doesn&amp;#039;t allow referencing symbols of the binary&lt;br /&gt;
 # we have to put everything into a shared-lib and link it into&lt;br /&gt;
 # everything&lt;br /&gt;
-#am__append_1 = liblightcomp.la&lt;br /&gt;
+am__append_1 = liblightcomp.la&lt;br /&gt;
 am__append_2 = $(common_src)&lt;br /&gt;
 subdir = src&lt;br /&gt;
 DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \&lt;br /&gt;
@@ -63,9 +63,9 @@&lt;br /&gt;
 libLTLIBRARIES_INSTALL = $(INSTALL)&lt;br /&gt;
 LTLIBRARIES = $(lib_LTLIBRARIES)&lt;br /&gt;
 am__DEPENDENCIES_1 =&lt;br /&gt;
-#liblightcomp_la_DEPENDENCIES =  \&lt;br /&gt;
-#      $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \&lt;br /&gt;
-#      $(am__DEPENDENCIES_1)&lt;br /&gt;
+liblightcomp_la_DEPENDENCIES =  \&lt;br /&gt;
+       $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \&lt;br /&gt;
+       $(am__DEPENDENCIES_1)&lt;br /&gt;
 am__liblightcomp_la_SOURCES_DIST = buffer.c log.c keyvalue.c chunk.c \&lt;br /&gt;
        http_chunk.c stream.c fdevent.c stat_cache.c plugin.c \&lt;br /&gt;
        joblist.c etag.c array.c data_string.c data_count.c \&lt;br /&gt;
@@ -105,13 +105,13 @@&lt;br /&gt;
        liblightcomp_la-network_solaris_sendfilev.lo \&lt;br /&gt;
        liblightcomp_la-network_openssl.lo \&lt;br /&gt;
        liblightcomp_la-splaytree.lo liblightcomp_la-status_counter.lo&lt;br /&gt;
-#am_liblightcomp_la_OBJECTS = $(am__objects_1)&lt;br /&gt;
+am_liblightcomp_la_OBJECTS = $(am__objects_1)&lt;br /&gt;
 liblightcomp_la_OBJECTS = $(am_liblightcomp_la_OBJECTS)&lt;br /&gt;
 liblightcomp_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \&lt;br /&gt;
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(liblightcomp_la_CFLAGS) \&lt;br /&gt;
        $(CFLAGS) $(liblightcomp_la_LDFLAGS) $(LDFLAGS) -o $@&lt;br /&gt;
-#am_liblightcomp_la_rpath = -rpath $(libdir)&lt;br /&gt;
-#am__DEPENDENCIES_2 = liblightcomp.la&lt;br /&gt;
+am_liblightcomp_la_rpath = -rpath $(libdir)&lt;br /&gt;
+am__DEPENDENCIES_2 = liblightcomp.la&lt;br /&gt;
 mod_access_la_DEPENDENCIES = $(am__DEPENDENCIES_2)&lt;br /&gt;
 am_mod_access_la_OBJECTS = mod_access.lo&lt;br /&gt;
 mod_access_la_OBJECTS = $(am_mod_access_la_OBJECTS)&lt;br /&gt;
@@ -440,7 +440,7 @@&lt;br /&gt;
 AWK = gawk&lt;br /&gt;
 BZ_LIB = -lbz2&lt;br /&gt;
 CC = cc&lt;br /&gt;
-CCDEPMODE = depmode=none&lt;br /&gt;
+CCDEPMODE = depmode=dashXmstdout&lt;br /&gt;
 CFLAGS = -xarch=generic64 -I/opt/tools/include -KPIC&lt;br /&gt;
 CPP = cc -E&lt;br /&gt;
 CPPFLAGS = -xarch=generic64 -I/opt/tools/include -KPIC -D_REENTRANT -D__EXTENSIONS__ -DOPENSSL_NO_KRB5 -I/opt/tools/include -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES&lt;br /&gt;
@@ -471,7 +471,7 @@&lt;br /&gt;
 LDAP_LIB = &lt;br /&gt;
 LDFLAGS = -xarch=generic64 -L/opt/tools/lib -R/opt/tools/lib -KPIC&lt;br /&gt;
 LIBOBJS = &lt;br /&gt;
-LIBS = -lresolv -lnsl -lsocket &lt;br /&gt;
+LIBS = -lresolv -lnsl -lsocket -lsendfile&lt;br /&gt;
 LIBTOOL = $(SHELL) $(top_builddir)/libtool&lt;br /&gt;
 LIPO = &lt;br /&gt;
 LN_S = ln -s&lt;br /&gt;
@@ -513,7 +513,7 @@&lt;br /&gt;
 UUID_LIBS = &lt;br /&gt;
 VERSION = 1.4.23&lt;br /&gt;
 XML_CFLAGS = &lt;br /&gt;
-XML_LIBS = &lt;br /&gt;
+XML_LIBS = /usr/lib64&lt;br /&gt;
 Z_LIB = -lz&lt;br /&gt;
 abs_builddir = /usr/home/src/lighttpd-1.4.23/src&lt;br /&gt;
 abs_srcdir = /usr/home/src/lighttpd-1.4.23/src&lt;br /&gt;
@@ -556,7 +556,7 @@&lt;br /&gt;
 mkdir_p = /opt/tools/bin/mkdir -p&lt;br /&gt;
 oldincludedir = /usr/include&lt;br /&gt;
 pdfdir = ${docdir}&lt;br /&gt;
-prefix = /opt/tools/lighttpd-1.4.23&lt;br /&gt;
+prefix = /tmp/lighttpd-1.4.23&lt;br /&gt;
 program_transform_name = s,x,x,&lt;br /&gt;
 psdir = ${docdir}&lt;br /&gt;
 sbindir = ${exec_prefix}/sbin&lt;br /&gt;
@@ -613,12 +613,12 @@&lt;br /&gt;
        mod_simple_vhost.la mod_fastcgi.la mod_extforward.la \&lt;br /&gt;
        mod_access.la mod_compress.la mod_auth.la mod_rewrite.la \&lt;br /&gt;
        mod_redirect.la mod_status.la mod_accesslog.la&lt;br /&gt;
-#liblightcomp_la_SOURCES = $(common_src)&lt;br /&gt;
-#liblightcomp_la_CFLAGS = $(AM_CFLAGS)&lt;br /&gt;
-#liblightcomp_la_LDFLAGS = -avoid-version -no-undefined&lt;br /&gt;
-#liblightcomp_la_LIBADD = $(PCRE_LIB) $(SSL_LIB) $(FAM_LIBS)&lt;br /&gt;
+liblightcomp_la_SOURCES = $(common_src)&lt;br /&gt;
+liblightcomp_la_CFLAGS = $(AM_CFLAGS)&lt;br /&gt;
+liblightcomp_la_LDFLAGS = -avoid-version -no-undefined&lt;br /&gt;
+liblightcomp_la_LIBADD = $(PCRE_LIB) $(SSL_LIB) $(FAM_LIBS)&lt;br /&gt;
 common_libadd = &lt;br /&gt;
-#common_libadd = liblightcomp.la&lt;br /&gt;
+common_libadd = liblightcomp.la&lt;br /&gt;
 mod_flv_streaming_la_SOURCES = mod_flv_streaming.c&lt;br /&gt;
 mod_flv_streaming_la_LDFLAGS = -module -export-dynamic -avoid-version -no-undefined&lt;br /&gt;
 mod_flv_streaming_la_LIBADD = $(common_libadd)&lt;br /&gt;
&amp;lt;/geshi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Solaris]]&lt;/div&gt;</summary>
		<author><name>Brianegge</name></author>
	</entry>
</feed>