A stab at handling empty response from DS.
[shibboleth/sp.git] / configs / Makefile.am
index 23d7898..790b7bf 100644 (file)
@@ -8,9 +8,10 @@ pkgxmldir = $(datadir)/xml/@PACKAGE@
 varrundir = $(localstatedir)/run
 pkgsysconfdir = $(sysconfdir)/@PACKAGE@
 pkgsysconf_DATA = \
+       shibd \
        apache.config \
        apache2.config \
-       inqueue.pem
+       apache22.config
 
 # The config files are installed "special".  Unlike the entries in
 # pkgsysconf_DATA, these files are installed as "foo.dist" and only
@@ -18,22 +19,24 @@ pkgsysconf_DATA = \
 # the config files will not overwrite existing versions.
 BUILTCONFIGFILES = \
        shibboleth.xml \
-       httpd.logger \
+       native.logger \
        shibd.logger \
-       AAP.xml \
-       IQ-sites.xml \
-       IQ-trust.xml
+       attribute-map.xml \
+       attribute-policy.xml \
+       example-metadata.xml
 
 # While BUILTCONFIGFILES are processed, these are not; so we should pull
 # them from SRCDIR.
 CONFIGFILES = \
-       shibboleth.logger \
+       console.logger \
+       syslog.logger \
        accessError.html \
-       rmError.html \
        sessionError.html \
        metadataError.html \
-       example.key \
-       example.crt
+       bindingTemplate.html \
+       sslError.html \
+       sp-example.key \
+       sp-example.crt
 
 #
 # Some of these need building
@@ -41,13 +44,13 @@ CONFIGFILES = \
 do-build-file:
        rm -f ${FILE}.tmp
        sed < ${srcdir}/${FILE}.in > ${FILE}.tmp \
-           -e 's:@-PREFIX-@:${prefix}:' \
-           -e 's:@-LIBEXECDIR-@:${libexecdir}:' \
-           -e 's:@-PKGSYSCONFDIR-@:${pkgsysconfdir}:' \
-           -e 's:@-PKGXMLDIR-@:${pkgxmldir}:' \
-           -e 's:@-PKGLOGDIR-@:${pkglogdir}:' \
-           -e 's:@-SHIRELOGDIR-@:${shirelogdir}:' \
-           -e 's:@-VARRUNDIR-@:${varrundir}:'
+           -e 's:@-PREFIX-@:${prefix}:g' \
+           -e 's:@-LIBEXECDIR-@:${libexecdir}:g' \
+           -e 's:@-PKGSYSCONFDIR-@:${pkgsysconfdir}:g' \
+           -e 's:@-PKGXMLDIR-@:${pkgxmldir}:g' \
+           -e 's:@-PKGLOGDIR-@:${pkglogdir}:g' \
+           -e 's:@-SHIRELOGDIR-@:${shirelogdir}:g' \
+           -e 's:@-VARRUNDIR-@:${varrundir}:g'
        cmp -s ${FILE} ${FILE}.tmp || mv ${FILE}.tmp ${FILE}
        rm -f ${FILE}.tmp
 
@@ -57,22 +60,28 @@ apache.config: ${srcdir}/apache.config.in Makefile ${top_builddir}/config.status
 apache2.config: ${srcdir}/apache2.config.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
+apache22.config: ${srcdir}/apache22.config.in Makefile ${top_builddir}/config.status
+       $(MAKE) do-build-file FILE=$@
+
+shibd: ${srcdir}/shibd.in Makefile ${top_builddir}/config.status
+       $(MAKE) do-build-file FILE=$@
+
 shibd.logger: ${srcdir}/shibd.logger.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-httpd.logger: ${srcdir}/httpd.logger.in Makefile ${top_builddir}/config.status
+native.logger: ${srcdir}/native.logger.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
 shibboleth.xml: ${srcdir}/shibboleth.xml.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-AAP.xml: ${srcdir}/AAP.xml.in Makefile ${top_builddir}/config.status
+attribute-map.xml: ${srcdir}/attribute-map.xml.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-IQ-sites.xml: ${srcdir}/IQ-sites.xml.in Makefile ${top_builddir}/config.status
+attribute-policy.xml: ${srcdir}/attribute-policy.xml.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-IQ-trust.xml: ${srcdir}/IQ-trust.xml.in Makefile ${top_builddir}/config.status
+example-metadata.xml: ${srcdir}/example-metadata.xml.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
 all-data-local: $(BUILTCONFIGFILES)
@@ -100,27 +109,31 @@ install-data-local:       all-data-local
 CLEANFILES = \
        apache.config \
        apache2.config \
+       apache22.config \
+       shibd \
        shibd.logger \
-       httpd.logger \
+       native.logger \
        shibboleth.xml \
-       AAP.xml \
-       IQ-sites.xml \
-       IQ-trust.xml
+       attribute-map.xml \
+       attribute-policy.xml \
+       example-metadata.xml
 
-EXTRA_DIST = .cvsignore \
+EXTRA_DIST = \
        shibboleth.xml.in \
-       httpd.logger.in \
+       attribute-map.xml.in \
+       attribute-policy.xml.in \
+       example-metadata.xml.in \
+       native.logger.in \
        shibd.logger.in \
        apache.config.in \
        apache2.config.in \
-       shibboleth.logger \
+       apache22.config.in \
+       shibd.in \
+       console.logger \
+       syslog.logger \
        accessError.html \
-       rmError.html \
        sessionError.html \
        metadataError.html \
-       AAP.xml.in \
-       IQ-sites.xml.in \
-       IQ-trust.xml.in \
-       inqueue.pem \
-       example.key \
-       example.crt
+       sslError.html \
+       sp-example.key \
+       sp-example.crt