[libxml++] Remove MSVC 2005 and 2008 projects



commit f014f5ee8281a83eae8680fe84d5acfcfc5f30bd
Author: Kjell Ahlstedt <kjell ahlstedt bredband net>
Date:   Wed Sep 9 16:59:46 2015 +0200

    Remove MSVC 2005 and 2008 projects
    
    MSVC_Net2005/*:
    MSVC_Net2008/*: Remove the whole directories.
    configure.ac:
    Makefile.am:
    .gitignore: Remove MSVC_Net2005 and 2008 files.
    
    It's no longer possible to build libxml++ with MSVC 2005 or 2008, when C++11
    features are used. MSVC 2010 is not useful either, but its project files
    are kept for now. They can perhaps be useful as a starting point when building
    with later MSVC versions. See also libsigc++ bug 754082.

 .gitignore                                         |    4 +-
 MSVC_Net2005/README                                |   14 -
 MSVC_Net2005/blank.cpp                             |   11 -
 MSVC_Net2005/examples/dom_build/dom_build.vcproj   |  380 -----
 .../dom_parse_entities/dom_parse_entities.vcproj   |  380 -----
 MSVC_Net2005/examples/dom_parser/dom_parser.vcproj |  380 -----
 .../examples/dom_parser_raw/dom_parser_raw.vcproj  |  380 -----
 .../examples/dom_read_write/dom_read_write.vcproj  |  380 -----
 MSVC_Net2005/examples/dom_xpath/dom_xpath.vcproj   |  380 -----
 .../examples/dtdvalidation/dtdvalidation.vcproj    |  380 -----
 .../examples/import_node/import_node.vcproj        |  380 -----
 .../examples/sax_exception/sax_exception.vcproj    |  388 -----
 MSVC_Net2005/examples/sax_parser/sax_parser.vcproj |  388 -----
 .../sax_parser_build_dom.vcproj                    |  408 -----
 .../sax_parser_entities/sax_parser_entities.vcproj |  388 -----
 .../schemavalidation/schemavalidation.vcproj       |  380 -----
 MSVC_Net2005/examples/textreader/textreader.vcproj |  380 -----
 MSVC_Net2005/gendef/gendef.cc                      |   94 --
 MSVC_Net2005/gendef/gendef.vcproj                  |  363 -----
 MSVC_Net2005/libxml++.sln                          |  220 ---
 MSVC_Net2005/libxml++/libxml++.rc.in               |   71 -
 MSVC_Net2005/libxml++/libxml++.vcproj              | 1554 --------------------
 MSVC_Net2008/README                                |   14 -
 MSVC_Net2008/blank.cpp                             |   11 -
 MSVC_Net2008/examples/dom_build/dom_build.vcproj   |  377 -----
 .../dom_parse_entities/dom_parse_entities.vcproj   |  377 -----
 MSVC_Net2008/examples/dom_parser/dom_parser.vcproj |  377 -----
 .../examples/dom_parser_raw/dom_parser_raw.vcproj  |  377 -----
 .../examples/dom_read_write/dom_read_write.vcproj  |  377 -----
 MSVC_Net2008/examples/dom_xpath/dom_xpath.vcproj   |  377 -----
 .../examples/dtdvalidation/dtdvalidation.vcproj    |  377 -----
 .../examples/import_node/import_node.vcproj        |  377 -----
 .../examples/sax_exception/sax_exception.vcproj    |  385 -----
 MSVC_Net2008/examples/sax_parser/sax_parser.vcproj |  385 -----
 .../sax_parser_build_dom.vcproj                    |  405 -----
 .../sax_parser_entities/sax_parser_entities.vcproj |  385 -----
 .../schemavalidation/schemavalidation.vcproj       |  377 -----
 MSVC_Net2008/examples/textreader/textreader.vcproj |  377 -----
 MSVC_Net2008/gendef/gendef.cc                      |   94 --
 MSVC_Net2008/gendef/gendef.vcproj                  |  360 -----
 MSVC_Net2008/libxml++.sln                          |  220 ---
 MSVC_Net2008/libxml++/libxml++.rc.in               |   71 -
 MSVC_Net2008/libxml++/libxml++.vcproj              | 1551 -------------------
 Makefile.am                                        |   48 +-
 configure.ac                                       |    6 -
 45 files changed, 2 insertions(+), 15406 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index b12c415..2c27b84 100644
--- a/.gitignore
+++ b/.gitignore
@@ -26,9 +26,7 @@ stamp-h?
 /libtool
 
 # MSVC
-/MSVC_Net2005/libxml++/libxml++.rc
-/MSVC_Net2008/libxml++/libxml++.rc
-/MSVC_Net2010/libxml++/libxml++.rc
+/MSVC_Net201?/libxml++/libxml++.rc
 
 # docs
 /docs/doc-install.pl
diff --git a/Makefile.am b/Makefile.am
index a0088d7..154e416 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -166,50 +166,6 @@ dist_noinst_DATA += libxml++config.h.in \
        $(manual_html_files) \
        docs/manual/libxml++.xml \
        docs/manual/libxml++_without_code.xml \
-       MSVC_Net2005/blank.cpp \
-       MSVC_Net2005/libxml++.sln \
-       MSVC_Net2005/README \
-       MSVC_Net2005/gendef/gendef.cc \
-       MSVC_Net2005/gendef/gendef.vcproj \
-       MSVC_Net2005/libxml++/libxml++.rc \
-       MSVC_Net2005/libxml++/libxml++.vcproj \
-       MSVC_Net2005/libxml++/libxml++config.h \
-       MSVC_Net2005/examples/dom_build/dom_build.vcproj \
-       MSVC_Net2005/examples/dom_parse_entities/dom_parse_entities.vcproj \
-       MSVC_Net2005/examples/dom_parser/dom_parser.vcproj \
-       MSVC_Net2005/examples/dom_parser_raw/dom_parser_raw.vcproj \
-       MSVC_Net2005/examples/dom_read_write/dom_read_write.vcproj \
-       MSVC_Net2005/examples/dom_xpath/dom_xpath.vcproj \
-       MSVC_Net2005/examples/dtdvalidation/dtdvalidation.vcproj \
-       MSVC_Net2005/examples/import_node/import_node.vcproj \
-       MSVC_Net2005/examples/sax_exception/sax_exception.vcproj \
-       MSVC_Net2005/examples/sax_parser/sax_parser.vcproj \
-       MSVC_Net2005/examples/sax_parser_build_dom/sax_parser_build_dom.vcproj \
-       MSVC_Net2005/examples/sax_parser_entities/sax_parser_entities.vcproj \
-       MSVC_Net2005/examples/schemavalidation/schemavalidation.vcproj \
-       MSVC_Net2005/examples/textreader/textreader.vcproj \
-       MSVC_Net2008/blank.cpp \
-       MSVC_Net2008/libxml++.sln \
-       MSVC_Net2008/README \
-       MSVC_Net2008/gendef/gendef.cc \
-       MSVC_Net2008/gendef/gendef.vcproj \
-       MSVC_Net2008/libxml++/libxml++.rc \
-       MSVC_Net2008/libxml++/libxml++.vcproj \
-       MSVC_Net2008/libxml++/libxml++config.h \
-       MSVC_Net2008/examples/dom_build/dom_build.vcproj \
-       MSVC_Net2008/examples/dom_parse_entities/dom_parse_entities.vcproj \
-       MSVC_Net2008/examples/dom_parser/dom_parser.vcproj \
-       MSVC_Net2008/examples/dom_parser_raw/dom_parser_raw.vcproj \
-       MSVC_Net2008/examples/dom_read_write/dom_read_write.vcproj \
-       MSVC_Net2008/examples/dom_xpath/dom_xpath.vcproj \
-       MSVC_Net2008/examples/dtdvalidation/dtdvalidation.vcproj \
-       MSVC_Net2008/examples/import_node/import_node.vcproj \
-       MSVC_Net2008/examples/sax_exception/sax_exception.vcproj \
-       MSVC_Net2008/examples/sax_parser/sax_parser.vcproj \
-       MSVC_Net2008/examples/sax_parser_build_dom/sax_parser_build_dom.vcproj \
-       MSVC_Net2008/examples/sax_parser_entities/sax_parser_entities.vcproj \
-       MSVC_Net2008/examples/schemavalidation/schemavalidation.vcproj \
-       MSVC_Net2008/examples/textreader/textreader.vcproj \
        MSVC_Net2010/libxml++.sln \
        MSVC_Net2010/README \
        MSVC_Net2010/gendef/gendef.cc \
@@ -251,9 +207,7 @@ dist_noinst_DATA += libxml++config.h.in \
 dist_noinst_SCRIPTS = autogen.sh \
        docs/manual/insert_example_code.pl
 
-DISTCLEANFILES += MSVC_Net2005/libxml++/libxml++config.h \
-       MSVC_Net2008/libxml++/libxml++config.h \
-       MSVC_Net2010/libxml++/libxml++config.h
+DISTCLEANFILES += MSVC_Net2010/libxml++/libxml++config.h
 
 MAINTAINERCLEANFILES += docs/manual/html/*.html
 
diff --git a/configure.ac b/configure.ac
index 2db69af..4ac98d8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -63,16 +63,10 @@ AC_CONFIG_FILES([Makefile
         examples/Makefile
         tests/Makefile
         docs/reference/Doxyfile
-        MSVC_Net2005/libxml++/libxml++.rc
-        MSVC_Net2008/libxml++/libxml++.rc
         MSVC_Net2010/libxml++/libxml++.rc
         libxml++-2.6.pc])
 
 # Copy the generated configuration headers into the MSVC project directories.
-AC_CONFIG_COMMANDS([MSVC_Net2005/libxml++/libxml++config.h],
-        [cp -f libxml++config.h MSVC_Net2005/libxml++/libxml++config.h])
-AC_CONFIG_COMMANDS([MSVC_Net2008/libxml++/libxml++config.h],
-        [cp -f libxml++config.h MSVC_Net2008/libxml++/libxml++config.h])
 AC_CONFIG_COMMANDS([MSVC_Net2010/libxml++/libxml++config.h],
         [cp -f libxml++config.h MSVC_Net2010/libxml++/libxml++config.h])
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]