diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index 7e7569095..000000000
--- a/Makefile.am
+++ /dev/null
@@ -1,90 +0,0 @@
-## Process this file with automake to produce Makefile.in
-## Created by Anjuta
-
-ACLOCAL_AMFLAGS = -I m4
-
-include aminclude.am
-
-SUBDIRS = \
- third-party \
- tools \
- lib \
- components \
- icinga-app \
- test \
- itl \
- etc \
- doc \
- pki
-
-#doc
-icinga2docdir = ${docdir}
-icinga2doc_DATA = \
- README \
- COPYING \
- COPYING.Exceptions \
- AUTHORS \
- ChangeLog \
- INSTALL \
- NEWS
-
-install-data-local:
- $(INSTALL) -d $(INSTALL_OPTS) $(DESTDIR)${localstatedir}/log/${PACKAGE}
- $(INSTALL) -d $(INSTALL_OPTS) $(DESTDIR)${localstatedir}/log/${PACKAGE}/compat
- $(INSTALL) -d $(INSTALL_OPTS) $(DESTDIR)${localstatedir}/log/${PACKAGE}/compat/archives
- $(INSTALL) -d $(INSTALL_OPTS) $(DESTDIR)${localstatedir}/cache/${PACKAGE}
- $(INSTALL) -d $(INSTALL_OPTS) $(DESTDIR)${localstatedir}/spool/${PACKAGE}
- $(INSTALL) -d $(INSTALL_OPTS) $(DESTDIR)${localstatedir}/spool/${PACKAGE}/perfdata
- $(INSTALL) -d $(INSTALL_OPTS) $(DESTDIR)${localstatedir}/lib/${PACKAGE}
- $(INSTALL) -d $(INSTALL_OPTS) $(DESTDIR)${localstatedir}/lib/${PACKAGE}/cluster
- $(INSTALL) -d $(INSTALL_OPTS) $(DESTDIR)${localstatedir}/lib/${PACKAGE}/cluster/config
- $(INSTALL) -d $(INSTALL_OPTS) $(DESTDIR)${localstatedir}/lib/${PACKAGE}/cluster/log
- $(INSTALL) -d $(INSTALL_OPTS) $(DESTDIR)${localstatedir}/run/${PACKAGE}
- $(INSTALL) -m 775 -d $(COMMAND_OPTS) $(DESTDIR)${localstatedir}/run/${PACKAGE}/cmd
- chmod g+s $(DESTDIR)${localstatedir}/run/${PACKAGE}/cmd
-
-EXTRA_DIST = \
- $(icinga2doc_DATA) \
- git_version.sh \
- icinga2.spec \
- Vagrantfile \
- .vagrant-puppet
-
-# Remove doc directory on uninstall
-uninstall-local:
- -rm -r $(icinga2docdir)
-
-BUILT_SOURCES = icinga-version.stamp
-CLEANFILES = icinga-version.h
-GIT_VERSION_CMD = $(SHELL) $(top_srcdir)/git_version.sh
-icinga-version.stamp:
- @if test -f "$(srcdir)/icinga-version.h"; then \
- if test -f "icinga-version.h"; then :; \
- else \
- cp "$(srcdir)/icinga-version.h" "icinga-version.h"; \
- fi; \
- fi
- $(GIT_VERSION_CMD) -k -s $(top_srcdir) -o icinga-version.h
- @if test -s "$(srcdir)/icinga-version.h"; then \
- if cmp "$(srcdir)/icinga-version.h" "icinga-version.h"; then :; \
- else \
- echo "Error: $(srcdir)/icinga-version.h and icinga-version.h differ."; \
- echo " You probably want to remove the former."; \
- exit 1; \
- fi; \
- fi
-
-dist-hook: icinga-version.stamp
- if test -f "icinga-version.h"; then \
- $(SED) -e 's|^#undef GIT_IS_DIST.*|#define GIT_IS_DIST 1|' \
- "icinga-version.h" > "$(distdir)/icinga-version.h"; \
- fi
-
-check-coverage: all
- lcov -d . -z
- make check
- lcov -d . -c -o icinga2.info
- lcov -e icinga2.info -o icinga2-filtered.info "`readlink -f $(top_srcdir)`/*"
- mkdir -p docs/lcov
- genhtml -o docs/lcov icinga2-filtered.info
-
diff --git a/aminclude.am b/aminclude.am
deleted file mode 100644
index 420049eca..000000000
--- a/aminclude.am
+++ /dev/null
@@ -1,186 +0,0 @@
-# Copyright (C) 2004 Oren Ben-Kiki
-# This file is distributed under the same terms as the Automake macro files.
-
-# Generate automatic documentation using Doxygen. Goals and variables values
-# are controlled by the various DX_COND_??? conditionals set by autoconf.
-#
-# The provided goals are:
-# doxygen-doc: Generate all doxygen documentation.
-# doxygen-run: Run doxygen, which will generate some of the documentation
-# (HTML, CHM, CHI, MAN, RTF, XML) but will not do the post
-# processing required for the rest of it (PS, PDF, and some MAN).
-# doxygen-man: Rename some doxygen generated man pages.
-# doxygen-ps: Generate doxygen PostScript documentation.
-# doxygen-pdf: Generate doxygen PDF documentation.
-#
-# Note that by default these are not integrated into the automake goals. If
-# doxygen is used to generate man pages, you can achieve this integration by
-# setting man3_MANS to the list of man pages generated and then adding the
-# dependency:
-#
-# $(man3_MANS): doxygen-doc
-#
-# This will cause make to run doxygen and generate all the documentation.
-#
-# The following variable is intended for use in Makefile.am:
-#
-# DX_CLEANFILES = everything to clean.
-#
-# This is usually added to MOSTLYCLEANFILES.
-
-## --------------------------------- ##
-## Format-independent Doxygen rules. ##
-## --------------------------------- ##
-
-if DX_COND_doc
-
-## ------------------------------- ##
-## Rules specific for HTML output. ##
-## ------------------------------- ##
-
-if DX_COND_html
-
-DX_CLEAN_HTML = @DX_DOCDIR@/html
-
-endif DX_COND_html
-
-## ------------------------------ ##
-## Rules specific for CHM output. ##
-## ------------------------------ ##
-
-if DX_COND_chm
-
-DX_CLEAN_CHM = @DX_DOCDIR@/chm
-
-if DX_COND_chi
-
-DX_CLEAN_CHI = @DX_DOCDIR@/@PACKAGE@.chi
-
-endif DX_COND_chi
-
-endif DX_COND_chm
-
-## ------------------------------ ##
-## Rules specific for MAN output. ##
-## ------------------------------ ##
-
-if DX_COND_man
-
-DX_CLEAN_MAN = @DX_DOCDIR@/man
-
-endif DX_COND_man
-
-## ------------------------------ ##
-## Rules specific for RTF output. ##
-## ------------------------------ ##
-
-if DX_COND_rtf
-
-DX_CLEAN_RTF = @DX_DOCDIR@/rtf
-
-endif DX_COND_rtf
-
-## ------------------------------ ##
-## Rules specific for XML output. ##
-## ------------------------------ ##
-
-if DX_COND_xml
-
-DX_CLEAN_XML = @DX_DOCDIR@/xml
-
-endif DX_COND_xml
-
-## ----------------------------- ##
-## Rules specific for PS output. ##
-## ----------------------------- ##
-
-if DX_COND_ps
-
-DX_CLEAN_PS = @DX_DOCDIR@/@PACKAGE@.ps
-
-DX_PS_GOAL = doxygen-ps
-
-doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps
-
-@DX_DOCDIR@/@PACKAGE@.ps: @DX_DOCDIR@/@PACKAGE@.tag
- cd @DX_DOCDIR@/latex; \
- rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
- $(DX_LATEX) refman.tex; \
- $(MAKEINDEX_PATH) refman.idx; \
- $(DX_LATEX) refman.tex; \
- countdown=5; \
- while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
- refman.log > /dev/null 2>&1 \
- && test $$countdown -gt 0; do \
- $(DX_LATEX) refman.tex; \
- countdown=`expr $$countdown - 1`; \
- done; \
- $(DX_DVIPS) -o ../@PACKAGE@.ps refman.dvi
-
-endif DX_COND_ps
-
-## ------------------------------ ##
-## Rules specific for PDF output. ##
-## ------------------------------ ##
-
-if DX_COND_pdf
-
-DX_CLEAN_PDF = @DX_DOCDIR@/@PACKAGE@.pdf
-
-DX_PDF_GOAL = doxygen-pdf
-
-doxygen-pdf: @DX_DOCDIR@/@PACKAGE@.pdf
-
-@DX_DOCDIR@/@PACKAGE@.pdf: @DX_DOCDIR@/@PACKAGE@.tag
- cd @DX_DOCDIR@/latex; \
- rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
- $(DX_PDFLATEX) refman.tex; \
- $(DX_MAKEINDEX) refman.idx; \
- $(DX_PDFLATEX) refman.tex; \
- countdown=5; \
- while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
- refman.log > /dev/null 2>&1 \
- && test $$countdown -gt 0; do \
- $(DX_PDFLATEX) refman.tex; \
- countdown=`expr $$countdown - 1`; \
- done; \
- mv refman.pdf ../@PACKAGE@.pdf
-
-endif DX_COND_pdf
-
-## ------------------------------------------------- ##
-## Rules specific for LaTeX (shared for PS and PDF). ##
-## ------------------------------------------------- ##
-
-if DX_COND_latex
-
-DX_CLEAN_LATEX = @DX_DOCDIR@/latex
-
-endif DX_COND_latex
-
-.PHONY: doxygen-run doxygen-doc $(DX_PS_GOAL) $(DX_PDF_GOAL)
-
-.INTERMEDIATE: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
-
-doxygen-run: @DX_DOCDIR@/@PACKAGE@.tag
-
-doxygen-doc: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
-
-@DX_DOCDIR@/@PACKAGE@.tag: $(DX_CONFIG) $(pkginclude_HEADERS)
- rm -rf @DX_DOCDIR@
- $(DX_ENV) $(DX_DOXYGEN) $(srcdir)/$(DX_CONFIG)
-
-DX_CLEANFILES = \
- @DX_DOCDIR@/@PACKAGE@.tag \
- -r \
- $(DX_CLEAN_HTML) \
- $(DX_CLEAN_CHM) \
- $(DX_CLEAN_CHI) \
- $(DX_CLEAN_MAN) \
- $(DX_CLEAN_RTF) \
- $(DX_CLEAN_XML) \
- $(DX_CLEAN_PS) \
- $(DX_CLEAN_PDF) \
- $(DX_CLEAN_LATEX)
-
-endif DX_COND_doc
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 00ce9e442..000000000
--- a/autogen.sh
+++ /dev/null
@@ -1,199 +0,0 @@
-#!/bin/sh
-# Run this to generate all the initial makefiles, etc.
-
-ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I m4"
-
-srcdir=`dirname $0`
-test -z "$srcdir" && srcdir=.
-
-DIE=0
-
-if [ -n "$GNOME2_DIR" ]; then
- ACLOCAL_FLAGS="-I $GNOME2_DIR/share/aclocal $ACLOCAL_FLAGS"
- LD_LIBRARY_PATH="$GNOME2_DIR/lib:$LD_LIBRARY_PATH"
- PATH="$GNOME2_DIR/bin:$PATH"
- export PATH
- export LD_LIBRARY_PATH
-fi
-
-(test -f $srcdir/configure.ac) || {
- echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
- echo " top-level package directory"
- exit 1
-}
-
-(autoconf --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "**Error**: You must have \`autoconf' installed."
- echo "Download the appropriate package for your distribution,"
- echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
- DIE=1
-}
-
-(grep "^AC_PROG_LEX" $srcdir/configure.ac >/dev/null) && {
- (lex --version) < /dev/null > /dev/null 2>&1 ||
- (flex --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "**Error**: You must have \`lex' installed."
- echo "Download the appropriate package for your distribution,"
- echo "or get the source tarball for flex at http://flex.sourceforge.net/"
- DIE=1
- }
-}
-
-(grep "^AC_PROG_YACC" $srcdir/configure.ac >/dev/null) && {
- (yacc --version) < /dev/null > /dev/null 2>&1 ||
- (bison --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "**Error**: You must have \`yacc' installed."
- echo "Download the appropriate package for your distribution,"
- echo "or get the source tarball for bison at http://ftp.gnu.org/gnu/bison/"
- DIE=1
- }
-}
-
-(grep "^IT_PROG_INTLTOOL" $srcdir/configure.ac >/dev/null) && {
- (intltoolize --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "**Error**: You must have \`intltool' installed."
- echo "You can get it from:"
- echo " ftp://ftp.gnome.org/pub/GNOME/"
- DIE=1
- }
-}
-
-(grep "^AM_PROG_XML_I18N_TOOLS" $srcdir/configure.ac >/dev/null) && {
- (xml-i18n-toolize --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "**Error**: You must have \`xml-i18n-toolize' installed."
- echo "You can get it from:"
- echo " ftp://ftp.gnome.org/pub/GNOME/"
- DIE=1
- }
-}
-
-LIBTOOL=libtool
-LIBTOOLIZE=libtoolize
-
-if glibtool --version < /dev/null > /dev/null 2>&1; then
- LIBTOOL=glibtool
- LIBTOOLIZE=glibtoolize
-fi
-
-(grep "^LT_INIT" $srcdir/configure.ac >/dev/null) && {
- ($LIBTOOL --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "**Error**: You must have \`libtool' installed."
- echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/"
- DIE=1
- }
-}
-
-(grep "^AM_GLIB_GNU_GETTEXT" $srcdir/configure.ac >/dev/null) && {
- (grep "sed.*POTFILES" $srcdir/configure.ac) > /dev/null || \
- (glib-gettextize --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "**Error**: You must have \`glib' installed."
- echo "You can get it from: ftp://ftp.gtk.org/pub/gtk"
- DIE=1
- }
-}
-
-(automake --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "**Error**: You must have \`automake' installed."
- echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/"
- DIE=1
- NO_AUTOMAKE=yes
-}
-
-# if no automake, don't bother testing for aclocal
-test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "**Error**: Missing \`aclocal'. The version of \`automake'"
- echo "installed doesn't appear recent enough."
- echo "You can get automake from ftp://ftp.gnu.org/pub/gnu/"
- DIE=1
-}
-
-if test "$DIE" -eq 1; then
- exit 1
-fi
-
-if test -z "$*"; then
- echo "**Warning**: I am going to run \`configure' with no arguments."
- echo "If you wish to pass any to it, please specify them on the"
- echo \`$0\'" command line."
- echo
-fi
-
-case $CC in
-xlc )
- am_opt=--include-deps;;
-esac
-
-# verify that libtool-ltdl-devel is installed
-echo "Running libtoolize dry-run..."
-if ! $LIBTOOLIZE --copy --force ; then
- echo ""
- echo "**Error**: $LIBTOOLIZE cannot detect necessary files."
- echo ""
- echo "Make sure libtool-ltdl-devel (RHEL) / libltdl-dev (Debian) or an"
- echo "appropriate package for your distribution is installed."
- exit 1
-fi
-
-for coin in `find $srcdir -path $srcdir/CVS -prune -o -name configure.ac -print`
-do
- dr=`dirname $coin`
- if test -f $dr/NO-AUTO-GEN; then
- echo skipping $dr -- flagged as no auto-gen
- else
- echo processing $dr
- ( cd $dr
-
- aclocalinclude="$ACLOCAL_FLAGS"
-
- if grep "^AM_GLIB_GNU_GETTEXT" configure.ac >/dev/null; then
- echo "Creating $dr/aclocal.m4 ..."
- test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
- echo "Running glib-gettextize... Ignore non-fatal messages."
- echo "no" | glib-gettextize --force --copy
- echo "Making $dr/aclocal.m4 writable ..."
- test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
- fi
- if grep "^IT_PROG_INTLTOOL" configure.ac >/dev/null; then
- echo "Running intltoolize..."
- intltoolize --copy --force --automake
- fi
- if grep "^AM_PROG_XML_I18N_TOOLS" configure.ac >/dev/null; then
- echo "Running xml-i18n-toolize..."
- xml-i18n-toolize --copy --force --automake
- fi
- if grep "^LT_INIT" configure.ac >/dev/null; then
- if test -z "$NO_LIBTOOLIZE" ; then
- echo "Running $LIBTOOLIZE..."
- $LIBTOOLIZE --force --copy
- fi
- fi
- echo "Running aclocal $aclocalinclude ..."
- aclocal $aclocalinclude
- if grep "^A[CM]_CONFIG_HEADER" configure.ac >/dev/null; then
- echo "Running autoheader..."
- autoheader
- fi
- echo "Running automake --gnu $am_opt ..."
- automake --add-missing --gnu $am_opt
- echo "Running autoconf ..."
- autoconf
- )
- fi
-done
-
-if test x$NOCONFIGURE = x; then
- echo Running $srcdir/configure "$@" ...
- $srcdir/configure "$@" \
- && echo Now type \`make\' to compile. || exit 1
-else
- echo Skipping configure process.
-fi
diff --git a/components/Makefile.am b/components/Makefile.am
deleted file mode 100644
index 6523d87b5..000000000
--- a/components/Makefile.am
+++ /dev/null
@@ -1,12 +0,0 @@
-## Process this file with automake to produce Makefile.in
-## Created by Anjuta
-
-SUBDIRS = \
- checker \
- cluster \
- compat \
- demo \
- db_ido_mysql \
- livestatus \
- notification \
- perfdata
diff --git a/components/checker/.gitignore b/components/checker/.gitignore
deleted file mode 100644
index 786efdebb..000000000
--- a/components/checker/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-checker-type.cpp
diff --git a/components/checker/Makefile.am b/components/checker/Makefile.am
deleted file mode 100644
index 9f1dfab99..000000000
--- a/components/checker/Makefile.am
+++ /dev/null
@@ -1,44 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-pkglib_LTLIBRARIES = \
- libchecker.la
-
-BUILT_SOURCES = \
- checkercomponent.th
-
-nodist_libchecker_la_SOURCES = $(BUILT_SOURCES)
-
-CLEANFILES = \
- checker-type.cpp
-
-.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig
- $(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
-
-.ti.th: $(top_builddir)/tools/mkclass/mkclass
- $(top_builddir)/tools/mkclass/mkclass $< > $@.tmp && mv $@.tmp $@
-
-libchecker_la_SOURCES = \
- checkercomponent.cpp \
- checkercomponent.h \
- checkercomponent.ti \
- checker-type.conf
-
-libchecker_la_CPPFLAGS = \
- $(BOOST_CPPFLAGS) \
- -I${top_srcdir}/lib \
- -I${top_srcdir}/components
-
-libchecker_la_LDFLAGS = \
- $(BOOST_LDFLAGS) \
- -module \
- -no-undefined \
- @RELEASE_INFO@ \
- @VERSION_INFO@
-
-libchecker_la_LIBADD = \
- $(BOOST_SIGNALS_LIB) \
- $(BOOST_THREAD_LIB) \
- $(BOOST_SYSTEM_LIB) \
- ${top_builddir}/lib/base/libbase.la \
- ${top_builddir}/lib/config/libconfig.la \
- ${top_builddir}/lib/icinga/libicinga.la
diff --git a/components/checker/checker.vcxproj b/components/checker/checker.vcxproj
deleted file mode 100644
index 539e58e63..000000000
--- a/components/checker/checker.vcxproj
+++ /dev/null
@@ -1,212 +0,0 @@
-
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {38CE81CC-2660-4EF0-A936-4A337591DA3E}
- Win32Proj
- checker
-
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- true
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
- Level3
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- false
- true
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- Level3
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;_WINDOWS;%(PreprocessorDefinitions)
- false
- true
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- Level3
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- false
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- Level3
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- false
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
-
-
-
-
-
-
-
- Document
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/checker/checker.vcxproj.filters b/components/checker/checker.vcxproj.filters
deleted file mode 100644
index 571eb2d8b..000000000
--- a/components/checker/checker.vcxproj.filters
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hpp;hxx;hm;inl;inc;xsd
-
-
-
-
- Headerdateien
-
-
-
-
- Quelldateien
-
-
- Quelldateien
-
-
-
-
- Quelldateien
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/checker/packages.config b/components/checker/packages.config
deleted file mode 100644
index 63dced53b..000000000
--- a/components/checker/packages.config
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/cluster/.gitignore b/components/cluster/.gitignore
deleted file mode 100644
index f180b9c43..000000000
--- a/components/cluster/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-cluster-type.cpp
diff --git a/components/cluster/Makefile.am b/components/cluster/Makefile.am
deleted file mode 100644
index b7225e998..000000000
--- a/components/cluster/Makefile.am
+++ /dev/null
@@ -1,50 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-pkglib_LTLIBRARIES = \
- libcluster.la
-
-BUILT_SOURCES = \
- clusterlistener.th \
- endpoint.th
-
-nodist_libcluster_la_SOURCES = $(BUILT_SOURCES)
-
-CLEANFILES = \
- cluster-type.cpp
-
-.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig
- $(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
-
-.ti.th: $(top_builddir)/tools/mkclass/mkclass
- $(top_builddir)/tools/mkclass/mkclass $< > $@.tmp && mv $@.tmp $@
-
-libcluster_la_SOURCES = \
- clusterlistener.cpp \
- clusterlistener.h \
- clusterlistener.ti \
- cluster-type.conf \
- endpoint.cpp \
- endpoint.h \
- endpoint.ti \
- jsonrpc.cpp \
- jsonrpc.h
-
-libcluster_la_CPPFLAGS = \
- $(BOOST_CPPFLAGS) \
- -I${top_srcdir}/lib \
- -I${top_srcdir}/components
-
-libcluster_la_LDFLAGS = \
- $(BOOST_LDFLAGS) \
- -module \
- -no-undefined \
- @RELEASE_INFO@ \
- @VERSION_INFO@
-
-libcluster_la_LIBADD = \
- $(BOOST_SIGNALS_LIB) \
- $(BOOST_THREAD_LIB) \
- $(BOOST_SYSTEM_LIB) \
- ${top_builddir}/lib/base/libbase.la \
- ${top_builddir}/lib/config/libconfig.la \
- ${top_builddir}/lib/icinga/libicinga.la
diff --git a/components/cluster/cluster.vcxproj b/components/cluster/cluster.vcxproj
deleted file mode 100644
index ee5bacb28..000000000
--- a/components/cluster/cluster.vcxproj
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Document
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- Preparing config fragment for embedding
- Preparing config fragment for embedding
- Preparing config fragment for embedding
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
-
-
-
-
-
-
- {8732E0CD-E3D0-41F2-A538-94884543890F}
- Win32Proj
- demo
-
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;_WINDOWS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/cluster/cluster.vcxproj.filters b/components/cluster/cluster.vcxproj.filters
deleted file mode 100644
index fdb66804f..000000000
--- a/components/cluster/cluster.vcxproj.filters
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
- {11a495bf-a705-4766-b3d3-9b5db266a6ef}
-
-
- {1fb6337f-a17f-46ea-9316-2d800a94b53d}
-
-
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
-
-
- Quelldateien
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/cluster/packages.config b/components/cluster/packages.config
deleted file mode 100644
index 63dced53b..000000000
--- a/components/cluster/packages.config
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/compat/.gitignore b/components/compat/.gitignore
deleted file mode 100644
index a3c158468..000000000
--- a/components/compat/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-compat-type.cpp
diff --git a/components/compat/Makefile.am b/components/compat/Makefile.am
deleted file mode 100644
index 9a0a781c4..000000000
--- a/components/compat/Makefile.am
+++ /dev/null
@@ -1,56 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-pkglib_LTLIBRARIES = \
- libcompat.la
-
-BUILT_SOURCES = \
- checkresultreader.th \
- externalcommandlistener.th \
- statusdatawriter.th \
- compatlogger.th
-
-nodist_libcompat_la_SOURCES = $(BUILT_SOURCES)
-
-CLEANFILES = \
- compat-type.cpp
-
-.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig
- $(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
-
-.ti.th: $(top_builddir)/tools/mkclass/mkclass
- $(top_builddir)/tools/mkclass/mkclass $< > $@.tmp && mv $@.tmp $@
-
-libcompat_la_SOURCES = \
- checkresultreader.cpp \
- checkresultreader.h \
- checkresultreader.ti \
- externalcommandlistener.cpp \
- externalcommandlistener.h \
- externalcommandlistener.ti \
- statusdatawriter.cpp \
- statusdatawriter.h \
- statusdatawriter.ti \
- compatlogger.cpp \
- compatlogger.h \
- compatlogger.ti \
- compat-type.conf
-
-libcompat_la_CPPFLAGS = \
- $(BOOST_CPPFLAGS) \
- -I${top_srcdir}/lib \
- -I${top_srcdir}/components
-
-libcompat_la_LDFLAGS = \
- $(BOOST_LDFLAGS) \
- -module \
- -no-undefined \
- @RELEASE_INFO@ \
- @VERSION_INFO@
-
-libcompat_la_LIBADD = \
- $(BOOST_SIGNALS_LIB) \
- $(BOOST_THREAD_LIB) \
- $(BOOST_SYSTEM_LIB) \
- ${top_builddir}/lib/base/libbase.la \
- ${top_builddir}/lib/config/libconfig.la \
- ${top_builddir}/lib/icinga/libicinga.la
diff --git a/components/compat/compat.vcxproj b/components/compat/compat.vcxproj
deleted file mode 100644
index 10e3cd000..000000000
--- a/components/compat/compat.vcxproj
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {2BD1C70C-43DB-4F44-B66B-67CF5C7044AA}
- Win32Proj
- compat
-
-
-
- DynamicLibrary
- true
- NotSet
- v110
-
-
- DynamicLibrary
- true
- NotSet
- v110
-
-
- DynamicLibrary
- false
- true
- NotSet
- v110
-
-
- DynamicLibrary
- false
- true
- NotSet
- v110
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
- Level3
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- true
- false
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- Level3
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;_WINDOWS;%(PreprocessorDefinitions)
- true
- false
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- Level3
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- Level3
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
-
-
-
-
-
-
-
- Document
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/compat/compat.vcxproj.filters b/components/compat/compat.vcxproj.filters
deleted file mode 100644
index 2f561cf1b..000000000
--- a/components/compat/compat.vcxproj.filters
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hpp;hxx;hm;inl;inc;xsd
-
-
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
-
-
- Quelldateien
-
-
-
-
-
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
-
\ No newline at end of file
diff --git a/components/compat/packages.config b/components/compat/packages.config
deleted file mode 100644
index 63dced53b..000000000
--- a/components/compat/packages.config
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/db_ido_mysql/.gitignore b/components/db_ido_mysql/.gitignore
deleted file mode 100644
index 3c3e338a2..000000000
--- a/components/db_ido_mysql/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-db_ido_mysql-type.cpp
diff --git a/components/db_ido_mysql/Makefile.am b/components/db_ido_mysql/Makefile.am
deleted file mode 100644
index 2eb9e2f76..000000000
--- a/components/db_ido_mysql/Makefile.am
+++ /dev/null
@@ -1,59 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-if MYSQL_USE
-
-SUBDIRS = \
- schema
-
-pkglib_LTLIBRARIES = \
- libdb_ido_mysql.la
-
-BUILT_SOURCES = \
- idomysqlconnection.th
-
-nodist_libdb_ido_mysql_la_SOURCES = $(BUILT_SOURCES)
-
-CLEANFILES = \
- db_ido_mysql-type.cpp
-
-.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig
- $(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
-
-.ti.th: $(top_builddir)/tools/mkclass/mkclass
- $(top_builddir)/tools/mkclass/mkclass $< > $@.tmp && mv $@.tmp $@
-
-libdb_ido_mysql_la_SOURCES = \
- db_ido_mysql-type.conf \
- idomysqlconnection.cpp \
- idomysqlconnection.h \
- idomysqlconnection.ti
-
-libdb_ido_mysql_la_CPPFLAGS = \
- $(BOOST_CPPFLAGS) \
- $(MYSQL_CFLAGS) \
- -I${top_srcdir}/lib \
- -I${top_srcdir}/components
-
-libdb_ido_mysql_la_LDFLAGS = \
- $(BOOST_LDFLAGS) \
- $(MYSQLR_LDFLAGS) \
- -module \
- -no-undefined \
- @RELEASE_INFO@ \
- @VERSION_INFO@
-
-libdb_ido_mysql_la_LIBADD = \
- $(BOOST_SIGNALS_LIB) \
- $(BOOST_THREAD_LIB) \
- $(BOOST_SYSTEM_LIB) \
- ${top_builddir}/lib/base/libbase.la \
- ${top_builddir}/lib/config/libconfig.la \
- ${top_builddir}/lib/icinga/libicinga.la \
- ${top_builddir}/lib/db_ido/libdb_ido.la
-
-else
-
-all-local:
- @echo 'MySQL not enabled. Install libs/headers and rerun configure/make.'
-
-endif
diff --git a/components/db_ido_mysql/db_ido_mysql.vcxproj b/components/db_ido_mysql/db_ido_mysql.vcxproj
deleted file mode 100644
index 7630e0157..000000000
--- a/components/db_ido_mysql/db_ido_mysql.vcxproj
+++ /dev/null
@@ -1,212 +0,0 @@
-
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {273A9D62-F556-4B5E-B235-B608106CB028}
- Win32Proj
- demo
-
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;remoting.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;_WINDOWS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;remoting.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;remoting.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;remoting.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
-
-
-
-
-
-
-
- Document
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/db_ido_mysql/db_ido_mysql.vcxproj.filters b/components/db_ido_mysql/db_ido_mysql.vcxproj.filters
deleted file mode 100644
index 3619115b1..000000000
--- a/components/db_ido_mysql/db_ido_mysql.vcxproj.filters
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
- Headerdateien
-
-
-
-
- {11a495bf-a705-4766-b3d3-9b5db266a6ef}
-
-
- {1fb6337f-a17f-46ea-9316-2d800a94b53d}
-
-
-
-
- Quelldateien
-
-
- Quelldateien
-
-
-
-
-
-
-
- Quelldateien
-
-
-
\ No newline at end of file
diff --git a/components/db_ido_mysql/packages.config b/components/db_ido_mysql/packages.config
deleted file mode 100644
index 63dced53b..000000000
--- a/components/db_ido_mysql/packages.config
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/db_ido_mysql/schema/Makefile.am b/components/db_ido_mysql/schema/Makefile.am
deleted file mode 100644
index c98aaa3d3..000000000
--- a/components/db_ido_mysql/schema/Makefile.am
+++ /dev/null
@@ -1,7 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-SUBDIRS = \
- upgrade
-
-EXTRA_DIST = \
- mysql.sql
diff --git a/components/db_ido_mysql/schema/upgrade/.gitignore b/components/db_ido_mysql/schema/upgrade/.gitignore
deleted file mode 100644
index e69de29bb..000000000
diff --git a/components/db_ido_mysql/schema/upgrade/Makefile.am b/components/db_ido_mysql/schema/upgrade/Makefile.am
deleted file mode 100644
index 5a8f6346d..000000000
--- a/components/db_ido_mysql/schema/upgrade/Makefile.am
+++ /dev/null
@@ -1,3 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-EXTRA_DIST =
diff --git a/components/demo/.gitignore b/components/demo/.gitignore
deleted file mode 100644
index a8e7da8c7..000000000
--- a/components/demo/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-demo-type.cpp
diff --git a/components/demo/Makefile.am b/components/demo/Makefile.am
deleted file mode 100644
index 9e99c4b9e..000000000
--- a/components/demo/Makefile.am
+++ /dev/null
@@ -1,44 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-pkglib_LTLIBRARIES = \
- libdemo.la
-
-BUILT_SOURCES = \
- demo.th
-
-nodist_libdemo_la_SOURCES = $(BUILT_SOURCES)
-
-CLEANFILES = \
- demo-type.cpp
-
-.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig
- $(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
-
-.ti.th: $(top_builddir)/tools/mkclass/mkclass
- $(top_builddir)/tools/mkclass/mkclass $< > $@.tmp && mv $@.tmp $@
-
-libdemo_la_SOURCES = \
- demo.cpp \
- demo.h \
- demo.ti \
- demo-type.conf
-
-libdemo_la_CPPFLAGS = \
- $(BOOST_CPPFLAGS) \
- -I${top_srcdir}/lib \
- -I${top_srcdir}/components
-
-libdemo_la_LDFLAGS = \
- $(BOOST_LDFLAGS) \
- -module \
- -no-undefined \
- @RELEASE_INFO@ \
- @VERSION_INFO@
-
-libdemo_la_LIBADD = \
- $(BOOST_SIGNALS_LIB) \
- $(BOOST_THREAD_LIB) \
- $(BOOST_SYSTEM_LIB) \
- ${top_builddir}/lib/base/libbase.la \
- ${top_builddir}/lib/config/libconfig.la \
- ${top_builddir}/lib/icinga/libicinga.la
diff --git a/components/demo/demo.vcxproj b/components/demo/demo.vcxproj
deleted file mode 100644
index 6aca3d0fe..000000000
--- a/components/demo/demo.vcxproj
+++ /dev/null
@@ -1,212 +0,0 @@
-
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {2E6C1133-730F-4875-A72C-B455B1DD4C5C}
- Win32Proj
- demo
-
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;_WINDOWS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
-
-
-
-
- Document
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/demo/demo.vcxproj.filters b/components/demo/demo.vcxproj.filters
deleted file mode 100644
index f7e1bf626..000000000
--- a/components/demo/demo.vcxproj.filters
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
- {11a495bf-a705-4766-b3d3-9b5db266a6ef}
-
-
- {1fb6337f-a17f-46ea-9316-2d800a94b53d}
-
-
-
-
- Quelldateien
-
-
- Quelldateien
-
-
-
-
- Quelldateien
-
-
-
-
-
-
-
- Headerdateien
-
-
-
\ No newline at end of file
diff --git a/components/demo/packages.config b/components/demo/packages.config
deleted file mode 100644
index 63dced53b..000000000
--- a/components/demo/packages.config
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/livestatus/.gitignore b/components/livestatus/.gitignore
deleted file mode 100644
index 80684567b..000000000
--- a/components/livestatus/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-livestatus-type.cpp
diff --git a/components/livestatus/Makefile.am b/components/livestatus/Makefile.am
deleted file mode 100644
index 8defcd04d..000000000
--- a/components/livestatus/Makefile.am
+++ /dev/null
@@ -1,104 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-pkglib_LTLIBRARIES = \
- liblivestatus.la
-
-BUILT_SOURCES = \
- listener.th
-
-nodist_liblivestatus_la_SOURCES = $(BUILT_SOURCES)
-
-CLEANFILES = \
- livestatus-type.cpp
-
-.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig
- $(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
-
-.ti.th: $(top_builddir)/tools/mkclass/mkclass
- $(top_builddir)/tools/mkclass/mkclass $< > $@.tmp && mv $@.tmp $@
-
-liblivestatus_la_SOURCES = \
- aggregator.cpp \
- aggregator.h \
- attributefilter.cpp \
- attributefilter.h \
- andfilter.cpp \
- andfilter.h \
- avgaggregator.cpp \
- avgaggregator.h \
- column.cpp \
- column.h \
- combinerfilter.cpp \
- combinerfilter.h \
- commandstable.cpp \
- commandstable.h \
- commentstable.cpp \
- commentstable.h \
- contactgroupstable.cpp \
- contactgroupstable.h \
- contactstable.cpp \
- contactstable.h \
- countaggregator.cpp \
- countaggregator.h \
- downtimestable.cpp \
- downtimestable.h \
- filter.cpp \
- filter.h \
- hostgroupstable.cpp \
- hostgroupstable.h \
- hoststable.cpp \
- hoststable.h \
- invavgaggregator.cpp \
- invavgaggregator.h \
- invsumaggregator.cpp \
- invsumaggregator.h \
- listener.cpp \
- listener.h \
- listener.ti \
- livestatus-type.conf \
- logtable.cpp \
- logtable.h \
- maxaggregator.cpp \
- maxaggregator.h \
- minaggregator.cpp \
- minaggregator.h \
- negatefilter.cpp \
- negatefilter.h \
- orfilter.cpp \
- orfilter.h \
- query.cpp \
- query.h \
- servicegroupstable.cpp \
- servicegroupstable.h \
- servicestable.cpp \
- servicestable.h \
- statustable.cpp \
- statustable.h \
- stdaggregator.cpp \
- stdaggregator.h \
- sumaggregator.cpp \
- sumaggregator.h \
- timeperiodstable.cpp \
- timeperiodstable.h \
- table.cpp \
- table.h
-
-liblivestatus_la_CPPFLAGS = \
- $(BOOST_CPPFLAGS) \
- -I${top_srcdir}/lib \
- -I${top_srcdir}/components
-
-liblivestatus_la_LDFLAGS = \
- $(BOOST_LDFLAGS) \
- -module \
- -no-undefined \
- @RELEASE_INFO@ \
- @VERSION_INFO@
-
-liblivestatus_la_LIBADD = \
- $(BOOST_SIGNALS_LIB) \
- $(BOOST_THREAD_LIB) \
- $(BOOST_SYSTEM_LIB) \
- ${top_builddir}/lib/base/libbase.la \
- ${top_builddir}/lib/config/libconfig.la \
- ${top_builddir}/lib/icinga/libicinga.la
diff --git a/components/livestatus/livestatus.vcxproj b/components/livestatus/livestatus.vcxproj
deleted file mode 100644
index 2cf7c1afd..000000000
--- a/components/livestatus/livestatus.vcxproj
+++ /dev/null
@@ -1,272 +0,0 @@
-
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Document
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
-
-
-
-
-
-
- {950E8743-BB34-4F8A-99EC-C87E8FC0EB3F}
- Win32Proj
- livestatus
-
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;_WINDOWS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/livestatus/livestatus.vcxproj.filters b/components/livestatus/livestatus.vcxproj.filters
deleted file mode 100644
index 13389a512..000000000
--- a/components/livestatus/livestatus.vcxproj.filters
+++ /dev/null
@@ -1,215 +0,0 @@
-
-
-
-
- {11a495bf-a705-4766-b3d3-9b5db266a6ef}
-
-
- {1fb6337f-a17f-46ea-9316-2d800a94b53d}
-
-
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
- Headerdateien
-
-
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
- Quelldateien
-
-
-
-
- Quelldateien
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/livestatus/packages.config b/components/livestatus/packages.config
deleted file mode 100644
index 63dced53b..000000000
--- a/components/livestatus/packages.config
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/notification/.gitignore b/components/notification/.gitignore
deleted file mode 100644
index bfe7cd007..000000000
--- a/components/notification/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-notification-type.cpp
diff --git a/components/notification/Makefile.am b/components/notification/Makefile.am
deleted file mode 100644
index 223b1ecb6..000000000
--- a/components/notification/Makefile.am
+++ /dev/null
@@ -1,44 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-pkglib_LTLIBRARIES = \
- libnotification.la
-
-BUILT_SOURCES = \
- notificationcomponent.th
-
-nodist_libnotification_la_SOURCES = $(BUILT_SOURCES)
-
-CLEANFILES = \
- notification-type.cpp
-
-.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig
- $(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
-
-.ti.th: $(top_builddir)/tools/mkclass/mkclass
- $(top_builddir)/tools/mkclass/mkclass $< > $@.tmp && mv $@.tmp $@
-
-libnotification_la_SOURCES = \
- notificationcomponent.cpp \
- notificationcomponent.h \
- notificationcomponent.ti \
- notification-type.conf
-
-libnotification_la_CPPFLAGS = \
- $(BOOST_CPPFLAGS) \
- -I${top_srcdir}/lib \
- -I${top_srcdir}/components
-
-libnotification_la_LDFLAGS = \
- $(BOOST_LDFLAGS) \
- -module \
- -no-undefined \
- @RELEASE_INFO@ \
- @VERSION_INFO@
-
-libnotification_la_LIBADD = \
- $(BOOST_SIGNALS_LIB) \
- $(BOOST_THREAD_LIB) \
- $(BOOST_SYSTEM_LIB) \
- ${top_builddir}/lib/base/libbase.la \
- ${top_builddir}/lib/config/libconfig.la \
- ${top_builddir}/lib/icinga/libicinga.la
diff --git a/components/notification/notification.vcxproj b/components/notification/notification.vcxproj
deleted file mode 100644
index 3afe88784..000000000
--- a/components/notification/notification.vcxproj
+++ /dev/null
@@ -1,212 +0,0 @@
-
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {ebea7d10-66fb-4760-8aa8-81cd500d899e}
- Win32Proj
- notification
-
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;_WINDOWS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- true
- NotUsing
-
-
- Windows
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
-
-
-
-
-
-
-
- Document
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/notification/notification.vcxproj.filters b/components/notification/notification.vcxproj.filters
deleted file mode 100644
index 1ffc78356..000000000
--- a/components/notification/notification.vcxproj.filters
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
- Headerdateien
-
-
-
-
- {11a495bf-a705-4766-b3d3-9b5db266a6ef}
-
-
- {1fb6337f-a17f-46ea-9316-2d800a94b53d}
-
-
-
-
- Quelldateien
-
-
- Quelldateien
-
-
-
-
- Quelldateien
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/notification/packages.config b/components/notification/packages.config
deleted file mode 100644
index 63dced53b..000000000
--- a/components/notification/packages.config
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/perfdata/.gitignore b/components/perfdata/.gitignore
deleted file mode 100644
index 80a2bcc22..000000000
--- a/components/perfdata/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-perfdata-type.cpp
diff --git a/components/perfdata/Makefile.am b/components/perfdata/Makefile.am
deleted file mode 100644
index 5f4a4da05..000000000
--- a/components/perfdata/Makefile.am
+++ /dev/null
@@ -1,47 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-
-pkglib_LTLIBRARIES = \
- libperfdata.la
-
-BUILT_SOURCES = \
- graphitewriter.th \
- perfdatawriter.th
-
-nodist_libperfdata_la_SOURCES = $(BUILT_SOURCES)
-
-CLEANFILES = \
- perfdata-type.cpp
-
-.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig
- $(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
-
-.ti.th: $(top_builddir)/tools/mkclass/mkclass
- $(top_builddir)/tools/mkclass/mkclass $< > $@.tmp && mv $@.tmp $@
-
-libperfdata_la_SOURCES = \
- graphitewriter.cpp \
- graphitewriter.h \
- graphitewriter.ti \
- perfdatawriter.cpp \
- perfdatawriter.h \
- perfdatawriter.ti \
- perfdata-type.conf
-
-libperfdata_la_CPPFLAGS = \
- $(BOOST_CPPFLAGS) \
- -I${top_srcdir}/lib \
- -I${top_srcdir}/components
-
-libperfdata_la_LDFLAGS = \
- $(BOOST_LDFLAGS) \
- -no-undefined \
- @RELEASE_INFO@ \
- @VERSION_INFO@
-
-libperfdata_la_LIBADD = \
- $(BOOST_THREAD_LIB) \
- $(BOOST_SYSTEM_LIB) \
- ${top_builddir}/lib/base/libbase.la \
- ${top_builddir}/lib/config/libconfig.la \
- ${top_builddir}/lib/icinga/libicinga.la
diff --git a/components/perfdata/perfdata.vcxproj b/components/perfdata/perfdata.vcxproj
deleted file mode 100644
index 7195791d0..000000000
--- a/components/perfdata/perfdata.vcxproj
+++ /dev/null
@@ -1,226 +0,0 @@
-
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
-
-
- NotUsing
- NotUsing
- NotUsing
- NotUsing
-
-
-
-
-
-
-
-
-
- Document
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- "$(SolutionDir)$(Platform)\$(Configuration)\mkembedconfig.exe" "%(Identity)" "%(Filename).cpp"
- Preparing config fragment for embedding
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- %(Filename).cpp;%(Outputs)
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
- $(SolutionDir)\tools\mkembedconfig\mkembedconfig.c
-
-
-
-
-
-
- {E08A9B69-97E2-4203-B4D7-501DFF020CCF}
- Win32Proj
- perfdata
- perfdata
-
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
- DynamicLibrary
- false
- true
- MultiByte
- v110
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- true
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
- false
- $(SolutionDir)\lib;$(SolutionDir)\components;$(IncludePath)
- $(SolutionDir)$(Platform)\$(Configuration)\;$(LibraryPath)
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
- NotUsing
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Level3
- false
- i2-icinga.h
- true
-
-
- Console
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- NotUsing
- Disabled
- _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;_WINDOWS;%(PreprocessorDefinitions)
- Level3
- false
- i2-icinga.h
- true
-
-
- Console
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- NotUsing
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Speed
- Level3
- false
- i2-icinga.h
- true
-
-
- Console
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
- NotUsing
- MaxSpeed
- true
- true
- NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- Speed
- Level3
- false
- i2-icinga.h
- true
-
-
- Console
- true
- true
- true
- base.lib;config.lib;icinga.lib;%(AdditionalDependencies)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/components/perfdata/perfdata.vcxproj.filters b/components/perfdata/perfdata.vcxproj.filters
deleted file mode 100644
index a3e56fad3..000000000
--- a/components/perfdata/perfdata.vcxproj.filters
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
- Quelldateien
-
-
-
- Quelldateien
-
-
-
-
- Headerdateien
-
-
- Headerdateien
-
-
-
-
- {2c1a73da-f333-42fc-8809-0569990567e0}
-
-
- {f206b9b0-3aa5-4a62-b844-3228f4ff4baf}
-
-
-
-
- Quelldateien
-
-
-
-
-
-
\ No newline at end of file
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index 718faa5d0..000000000
--- a/configure.ac
+++ /dev/null
@@ -1,249 +0,0 @@
-/******************************************************************************
- * Icinga 2 *
- * Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
- * *
- * This program is free software; you can redistribute it and/or *
- * modify it under the terms of the GNU General Public License *
- * as published by the Free Software Foundation; either version 2 *
- * of the License, or (at your option) any later version. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * You should have received a copy of the GNU General Public License *
- * along with this program; if not, write to the Free Software Foundation *
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
- ******************************************************************************/
-
-AC_INIT([icinga2], [0.0.3])
-AC_CONFIG_AUX_DIR([m4])
-AC_CONFIG_MACRO_DIR([m4])
-AC_CONFIG_HEADERS([config.h])
-AM_INIT_AUTOMAKE([subdir-objects])
-AX_SET_VERSION_INFO
-m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
-
-AC_PROG_CXX
-AC_LANG_CPLUSPLUS
-AC_PROG_CC
-AC_LANG_C
-AC_PROG_MKDIR_P
-
-AC_FUNC_VFORK
-
-AC_ARG_WITH([icinga_user],
- AC_HELP_STRING([--with-icinga-user=],[sets user name to run icinga2]),
- icinga_user=$withval,
- icinga_user=icinga
-)
-ACICINGA_CHECK_USER([$icinga_user], run)
-AC_SUBST(icinga_user)
-
-AC_ARG_WITH(icinga_group,
- AC_HELP_STRING([--with-icinga-group=],[sets group name to run icinga2]),
- icinga_group=$withval,
- icinga_group=icinga
-)
-ACICINGA_CHECK_GROUP([$icinga_group], run)
-AC_SUBST(icinga_group)
-
-INSTALL_OPTS="-o $icinga_user -g $icinga_group"
-AC_SUBST(INSTALL_OPTS)
-
-AC_ARG_WITH(icingacmd_user,
- AC_HELP_STRING([--with-icingacmd-user=],[sets user name for icinga2 command access]),
- icingacmd_user=$withval,
- icingacmd_user=icinga
-)
-ACICINGA_CHECK_USER([$icingacmd_user], cmd)
-AC_SUBST(icingacmd_user)
-
-AC_ARG_WITH(icingacmd_group,
- AC_HELP_STRING([--with-icingacmd-group=] ,[sets group name for icinga2 command access]),
- icingacmd_group=$withval,
- icingacmd_group=icingacmd
-)
-ACICINGA_CHECK_GROUP([$icingacmd_group], cmd)
-AC_SUBST(icingacmd_group)
-
-COMMAND_OPTS="-o $icingacmd_user -g $icingacmd_group"
-AC_SUBST(COMMAND_OPTS)
-
-
-CFLAGS="$CFLAGS -D_GNU_SOURCE -pthread"
-CXXFLAGS="$CXXFLAGS -D_GNU_SOURCE -pthread"
-
-CFLAGS="$CFLAGS -I/opt/local/include"
-CXXFLAGS="$CXXFLAGS -I/opt/local/include"
-LDFLAGS="$LDFLAGS -L/opt/local/lib"
-
-LT_INIT([dlopen disable-static win32-dll])
-
-DX_HTML_FEATURE(ON)
-DX_CHM_FEATURE(OFF)
-DX_CHI_FEATURE(OFF)
-DX_MAN_FEATURE(OFF)
-DX_RTF_FEATURE(OFF)
-DX_XML_FEATURE(OFF)
-DX_PDF_FEATURE(OFF)
-DX_PS_FEATURE(OFF)
-DX_INIT_DOXYGEN([icinga], [doc/Doxyfile], [doc/dev])
-
-AC_PROG_INSTALL
-AC_PROG_LEX
-AC_PROG_YACC
-AC_PROG_LIBTOOL
-AX_CXX_GCC_ABI_DEMANGLE
-AX_BOOST_BASE([1.41], [], [AC_MSG_ERROR([You need the Boost headers and libraries in order to build this application])])
-AX_BOOST_SIGNALS
-AX_BOOST_THREAD
-AX_BOOST_SYSTEM
-AX_BOOST_UNIT_TEST_FRAMEWORK
-AX_BOOST_PROGRAM_OPTIONS
-AX_CHECK_OPENSSL([], [AC_MSG_ERROR([You need the OpenSSL headers and libraries in order to build this application])])
-AC_CHECK_LIB(ssl, SSL_new)
-AC_CHECK_LIB(crypto, X509_NAME_oneline)
-AC_CHECK_LIB(eay32, X509_NAME_oneline)
-AC_CHECK_LIB(m, floor)
-AC_CHECK_LIB(socket, getsockname)
-AC_CHECK_LIB(ws2_32, getsockname)
-AC_CHECK_LIB(shlwapi, PathRemoveFileSpecA)
-AC_CHECK_FUNCS([backtrace_symbols execvpe pipe2 pthread_set_name_np pthread_setname_np])
-
-AC_CHECK_LIB(c, dlopen, LIBDL="", [AC_CHECK_LIB(dl, dlopen, LIBDL="-ldl")])
-AC_SUBST([LIBDL])
-
-AC_TRY_LINK([#include
-#include
-#include ], [BIO_f_zlib();], ac_cv_lib_biozlib="yes")
-if test "$ac_cv_lib_biozlib" = "yes"; then
- AC_DEFINE(HAVE_BIOZLIB, 1,
- [Define if BIO_f_zlib is available])
-fi
-
-CFLAGS="$CFLAGS -Wall -Wextra"
-CXXFLAGS="$CXXFLAGS -Wall -Wextra"
-
-AC_MSG_CHECKING(whether to enable debugging)
-AC_ARG_ENABLE(debug, [ --enable-debug=[no/yes] turn on debugging (default=no)],, enable_debug=no)
-if test "x$enable_debug" = "xyes"; then
- CFLAGS="$CFLAGS -g -O0 -D_DEBUG"
- CXXFLAGS="$CXXFLAGS -g -O0 -D_DEBUG"
-else
- CFLAGS="$CFLAGS -DNDEBUG"
- CXXFLAGS="$CXXFLAGS -DNDEBUG"
-fi
-AC_MSG_RESULT($enable_debug)
-
-AC_MSG_CHECKING(whether to enable coverage)
-AC_ARG_ENABLE(coverage, [ --enable-coverage=[no/yes] turn on profiling (default=no)],, enable_coverage=no)
-if test "x$enable_coverage" = "xyes"; then
- CFLAGS="$CFLAGS -g -O0 -DNDEBUG -fprofile-arcs -ftest-coverage -lgcov"
- CXXFLAGS="$CXXFLAGS -g -O0 -DNDEBUG -fprofile-arcs -ftest-coverage -lgcov"
-fi
-AC_MSG_RESULT($enable_coverage)
-
-AX_LIB_MYSQL([5.0])
-AC_CHECK_HEADERS([mysql/mysql.h], [mysql_use=true], [AC_MSG_WARN([mysql.h not found. Will not build mysql related libs/components.])])
-AM_CONDITIONAL(MYSQL_USE, test x"$mysql_use" = x"true")
-
-AX_PYTHON_DEFAULT
-AX_PYTHON_ENABLE
-AX_PYTHON_VERSION_ENSURE([2.5])
-AX_PYTHON_CSPEC
-AX_PYTHON_LSPEC
-
-AM_COND_IF([PYTHON_USE], [AX_PYTHON_DEVEL([>= 2.5])])
-
-AS_AC_EXPAND([ICINGA_PREFIX], $prefix)
-AC_DEFINE_UNQUOTED([ICINGA_PREFIX], "$ICINGA_PREFIX", [The installation prefix.])
-
-AS_AC_EXPAND([ICINGA_LOCALSTATEDIR], $localstatedir)
-AC_DEFINE_UNQUOTED([ICINGA_LOCALSTATEDIR], "$ICINGA_LOCALSTATEDIR", [The local state dir.])
-
-AS_AC_EXPAND([ICINGA_PKGLIBDIR], $libdir/$PACKAGE)
-AC_DEFINE_UNQUOTED([ICINGA_PKGLIBDIR], "$ICINGA_PKGLIBDIR", [The package lib dir.])
-
-AS_AC_EXPAND([ICINGA_PKGDATADIR], $datadir/$PACKAGE)
-AC_DEFINE_UNQUOTED([ICINGA_PKGDATADIR], "$ICINGA_PKGDATADIR", [The package data dir.])
-
-AC_CONFIG_FILES([
-icinga2.spec
-Makefile
-components/Makefile
-components/checker/Makefile
-components/cluster/Makefile
-components/compat/Makefile
-components/demo/Makefile
-components/db_ido_mysql/Makefile
-components/db_ido_mysql/schema/Makefile
-components/db_ido_mysql/schema/upgrade/Makefile
-components/livestatus/Makefile
-components/notification/Makefile
-components/perfdata/Makefile
-doc/Doxyfile
-doc/Makefile
-doc/strapdownjs/Makefile
-doc/strapdownjs/themes/Makefile
-etc/Makefile
-etc/icinga/Makefile
-etc/icinga2/Makefile
-etc/icinga2/conf.d/Makefile
-etc/icinga2/features-available/Makefile
-etc/init.d/Makefile
-icinga-app/Makefile
-itl/Makefile
-lib/Makefile
-lib/base/Makefile
-lib/config/Makefile
-lib/icinga/Makefile
-lib/db_ido/Makefile
-lib/python/Makefile
-pki/Makefile
-pki/icinga2-build-ca
-pki/icinga2-build-key
-test/Makefile
-third-party/Makefile
-third-party/cJSON/Makefile
-third-party/execvpe/Makefile
-third-party/mmatch/Makefile
-tools/Makefile
-tools/migration/Makefile
-tools/icinga2-enable-feature
-tools/mkclass/Makefile
-tools/mkembedconfig/Makefile
-])
-
-AC_OUTPUT([
-etc/init.d/icinga2
-])
-
-# Fix -rpath problem (https://wiki.debian.org/RpathIssue)
-case ${host} in
- *-linux-gnu)
- sed 's|^sys_lib_dlsearch_path_spec=.*|sys_lib_dlsearch_path_spec="/lib64 /lib /usr/lib64 /usr/lib /usr/lib/x86_64-linux-gnu /usr/lib/i686-linux-gnu /usr/local/lib64 /usr/local/lib"|g' libtool >libtool.new
- mv libtool.new libtool
- ;;
-esac
-
-AM_COND_IF([MYSQL_USE], [mysql_msg="enabled"], [mysql_msg="disabled"])
-AM_COND_IF([PYTHON_USE], [python_msg="enabled"], [python_msg="disabled"])
-
-echo "
-Features:
- MySQL: $mysql_msg
- Python: $python_msg
-
-Users:
- User: $icinga_user
- Group: $icinga_group
- Command User: $icingacmd_user
- Command Group: $icingacmd_group
-
-*** Please note that at this point Icinga 2 is highly experimental software
-*** and is missing a significant portion of the planned features. This
-*** is merely a technology preview and if you're planning to set up
-*** a production environment for Icinga you should use Icinga 1.x instead.
-"
diff --git a/contrib/.gitignore b/contrib/.gitignore
deleted file mode 100644
index 7697c4b81..000000000
--- a/contrib/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-check_random
diff --git a/doc/.gitignore b/doc/.gitignore
index 55924dadc..0434ecc75 100644
--- a/doc/.gitignore
+++ b/doc/.gitignore
@@ -1,4 +1,3 @@
Doxyfile
-icinga2.8
.directory
index.html
diff --git a/etc/Makefile.am b/etc/Makefile.am
deleted file mode 100644
index 58424c992..000000000
--- a/etc/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-SUBDIRS = \
- icinga \
- icinga2 \
- init.d
diff --git a/etc/icinga/Makefile.am b/etc/icinga/Makefile.am
deleted file mode 100644
index a08490f03..000000000
--- a/etc/icinga/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-CONFIG_FILES = \
- cgi.cfg \
- icinga-classic-apache.conf \
- icinga-classic.htpasswd \
- README
-
-EXTRA_DIST = $(CONFIG_FILES)
diff --git a/etc/icinga2/Makefile.am b/etc/icinga2/Makefile.am
deleted file mode 100644
index c98bc4a33..000000000
--- a/etc/icinga2/Makefile.am
+++ /dev/null
@@ -1,37 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-SUBDIRS = \
- conf.d \
- features-available
-
-icinga2confdir = $(DESTDIR)${sysconfdir}/icinga2
-
-CONFIG_FILES = \
- icinga2.conf
-
-install-data-local:
- @for file in $(CONFIG_FILES); do \
- if [ ! -e $(icinga2confdir)/$$file ]; then \
- $(INSTALL_DATA) $(INSTALL_OPTS) -m 0640 $(srcdir)/$$file $(icinga2confdir)/$$file; \
- fi; \
- done
-
-EXTRA_DIST = $(CONFIG_FILES)
-
-install-exec-hook:
- @if [ ! -e $(icinga2confdir)/features-enabled ]; then \
- $(MKDIR_P) $(icinga2confdir)/features-enabled && \
- $(LN_S) ../features-available/checker.conf $(icinga2confdir)/features-enabled/; \
- $(LN_S) ../features-available/notification.conf $(icinga2confdir)/features-enabled/; \
- $(LN_S) ../features-available/syslog.conf $(icinga2confdir)/features-enabled/; \
- fi
-
-uninstall-hook:
- rm -f $(icinga2confdir)/features-enabled/checker.conf
- rm -f $(icinga2confdir)/features-enabled/notification.conf
- rm -f $(icinga2confdir)/features-enabled/syslog.conf
- rmdir $(icinga2confdir)/features-enabled
- @for file in $(CONFIG_FILES); do \
- rm -f $(icinga2confdir)/$$file; \
- done; \
- rmdir $(icinga2confdir)
diff --git a/etc/icinga2/conf.d/Makefile.am b/etc/icinga2/conf.d/Makefile.am
deleted file mode 100644
index 4eee019f0..000000000
--- a/etc/icinga2/conf.d/Makefile.am
+++ /dev/null
@@ -1,29 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-icinga2confdir = $(DESTDIR)${sysconfdir}/icinga2/conf.d
-
-CONFIG_FILES = \
- generic-host.conf \
- generic-service.conf \
- groups.conf \
- localhost.conf \
- macros.conf \
- notifications.conf \
- timeperiods.conf \
- users.conf
-
-install-data-local:
- @if [ ! -e $(icinga2confdir) ]; then \
- $(MKDIR_P) $(icinga2confdir); \
- for file in $(CONFIG_FILES); do \
- $(INSTALL_DATA) $(INSTALL_OPTS) -m 0640 $(srcdir)/$$file $(icinga2confdir)/$$file; \
- done; \
- fi
-
-uninstall-hook:
- @for file in $(CONFIG_FILES); do \
- rm -f $(icinga2confdir)/$$file; \
- done; \
- rmdir $(icinga2confdir)
-
-EXTRA_DIST = $(CONFIG_FILES)
diff --git a/etc/icinga2/features-available/Makefile.am b/etc/icinga2/features-available/Makefile.am
deleted file mode 100644
index f888d57e4..000000000
--- a/etc/icinga2/features-available/Makefile.am
+++ /dev/null
@@ -1,32 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-icinga2confdir = $(DESTDIR)${sysconfdir}/icinga2/features-available
-
-CONFIG_FILES = \
- checker.conf \
- command.conf \
- compatlog.conf \
- debuglog.conf \
- graphite.conf \
- ido-mysql.conf \
- livestatus.conf \
- notification.conf \
- perfdata.conf \
- syslog.conf \
- statusdata.conf
-
-install-data-local:
- @$(MKDIR_P) $(icinga2confdir); \
- for file in $(CONFIG_FILES); do \
- if [ ! -e $(icinga2confdir)/$$file ]; then \
- $(INSTALL_DATA) $(INSTALL_OPTS) -m 0640 $(srcdir)/$$file $(icinga2confdir)/$$file; \
- fi; \
- done
-
-uninstall-hook:
- for file in $(CONFIG_FILES); do \
- rm -f $(icinga2confdir)/$$file; \
- done; \
- rmdir $(icinga2confdir)
-
-EXTRA_DIST = $(CONFIG_FILES)
diff --git a/etc/init.d/.gitignore b/etc/init.d/.gitignore
deleted file mode 100644
index 62e2ddbf6..000000000
--- a/etc/init.d/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-icinga2
diff --git a/etc/init.d/Makefile.am b/etc/init.d/Makefile.am
deleted file mode 100644
index b6e62c210..000000000
--- a/etc/init.d/Makefile.am
+++ /dev/null
@@ -1,8 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-initdir = ${sysconfdir}/init.d
-init_SCRIPTS = \
- icinga2
-
-EXTRA_DIST = \
- icinga2.in
diff --git a/git_version.sh b/git_version.sh
deleted file mode 100644
index bea316d2f..000000000
--- a/git_version.sh
+++ /dev/null
@@ -1,358 +0,0 @@
-#!/bin/sh
-#
-# Generate some basic versioning information which can be piped to a header.
-#
-# Copyright (c) 2006-2007 Luc Verhaegen
-# Copyright (C) 2007-2008 Hans Ulrich Niedermann
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included in
-# all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
-# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
-# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-# OTHER DEALINGS IN THE SOFTWARE.
-#
-# This script is based on the one written for xf86-video-unichrome by
-# Luc Verhaegen, but was rewritten almost completely by Hans Ulrich
-# Niedermann. The script contains a few bug fixes from Egbert Eich,
-# Matthias Hopf, Joerg Sonnenberger, and possibly others.
-#
-# The author thanks the nice people on #git for the assistance.
-#
-# Simple testing of this script:
-# /sbin/busybox sh git_version.sh --example > moo.c \
-# && gcc -Wall -Wextra -Wno-unused -o moo moo.c \
-# && ./moo
-# (bash should also do)
-#
-# For how to hook this up to your automake- and/or imake-based build
-# system, best take a look at how the RadeonHD.am and/or RadeonHD.tmpl
-# work in the xf86-video-radeonhd build system. For non-recursive make,
-# you can probably make things a little bit simpler.
-#
-# Requires git >= 1.3.0 for the 'git foo' (with space) syntax,
-# and git >= 1.4 for some specific commands.
-
-# Help messages
-USAGE="[