]> git.pld-linux.org Git - packages/lighttpd.git/commitdiff
add mod_vhostdb_pgsql build auto/th/lighttpd-1.4.48-1
authorElan Ruusamäe <glen@pld-linux.org>
Sun, 12 Nov 2017 22:10:12 +0000 (00:10 +0200)
committerElan Ruusamäe <glen@pld-linux.org>
Sun, 12 Nov 2017 22:10:12 +0000 (00:10 +0200)
lighttpd.spec
mod_vhostdb.conf

index 125826a8cc772a6a6f19d0fba0dc651819b00cf1..0a87ab3b61bfe1ff556e3be5a98b3ea4dd257334 100644 (file)
@@ -13,6 +13,7 @@
 %bcond_without dbi             # libdbi, enables mod_vhostdb_dbi
 %bcond_without ssl             # ssl support
 %bcond_without mysql           # mysql support in mod_mysql_vhost, mod_vhostdb_mysql
 %bcond_without dbi             # libdbi, enables mod_vhostdb_dbi
 %bcond_without ssl             # ssl support
 %bcond_without mysql           # mysql support in mod_mysql_vhost, mod_vhostdb_mysql
+%bcond_without pgsql           # PgSQL, enables mod_vhostdb_pgsql
 %bcond_without geoip           # GeoIP support
 %bcond_with    krb5            # krb5 support (does not work with heimdal)
 %bcond_without ldap            # ldap support in mod_auth, mod_vhostdb_ldap
 %bcond_without geoip           # GeoIP support
 %bcond_with    krb5            # krb5 support (does not work with heimdal)
 %bcond_without ldap            # ldap support in mod_auth, mod_vhostdb_ldap
@@ -141,6 +142,7 @@ BuildRequires:      libuuid-devel
 %{?with_lua:BuildRequires:     lua51-devel}
 BuildRequires: mailcap >= 2.1.14-4.4
 %{?with_mysql:BuildRequires:   mysql-devel}
 %{?with_lua:BuildRequires:     lua51-devel}
 BuildRequires: mailcap >= 2.1.14-4.4
 %{?with_mysql:BuildRequires:   mysql-devel}
+%{?with_pgsql:BuildRequires:   postgresql-devel}
 %{?with_ldap:BuildRequires:    openldap-devel}
 %{?with_ssl:BuildRequires:     openssl-devel}
 BuildRequires: pcre-devel
 %{?with_ldap:BuildRequires:    openldap-devel}
 %{?with_ssl:BuildRequires:     openssl-devel}
 BuildRequires: pcre-devel
@@ -989,6 +991,7 @@ fi
        %{?with_mysql:--with-mysql} \
        %{?with_ldap:--with-ldap} \
        %{?with_ssl:--with-openssl} \
        %{?with_mysql:--with-mysql} \
        %{?with_ldap:--with-ldap} \
        %{?with_ssl:--with-openssl} \
+       %{?with_pgsql:--with-pgsql} \
        %{?with_lua:--with-lua=lua51} \
        %{?with_storage_memcached:--with-memcached} \
        %{?with_webdav_props:--with-webdav-props} \
        %{?with_lua:--with-lua=lua51} \
        %{?with_storage_memcached:--with-memcached} \
        %{?with_webdav_props:--with-webdav-props} \
@@ -1517,6 +1520,9 @@ fi
 %if %{with mysql}
 %attr(755,root,root) %{pkglibdir}/mod_vhostdb_mysql.so
 %endif
 %if %{with mysql}
 %attr(755,root,root) %{pkglibdir}/mod_vhostdb_mysql.so
 %endif
+%if %{with pgsql}
+%attr(755,root,root) %{pkglibdir}/mod_vhostdb_pgsql.so
+%endif
 
 %files mod_webdav
 %defattr(644,root,root,755)
 
 %files mod_webdav
 %defattr(644,root,root,755)
index 71f24dbf08baf7f2072c4d7da53a3f509e534511..8ae748889ebfaace8672340fb8ace49773eff617 100644 (file)
@@ -7,4 +7,5 @@ server.modules += (
 #      "mod_vhostdb_dbi",
 #      "mod_vhostdb_ldap",
 #      "mod_vhostdb_mysql",
 #      "mod_vhostdb_dbi",
 #      "mod_vhostdb_ldap",
 #      "mod_vhostdb_mysql",
+#      "mod_vhostdb_pgsql",
 )
 )
This page took 0.129975 seconds and 4 git commands to generate.