From 56043225000df52cf530a85dc5f53ad06ba241cd Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 7 Oct 2009 08:52:20 +0200 Subject: Add support for STL-conforming iterators The new XSDE_STL_ITERATOR configuration variable is used to conditionally turn this on. --- dist/libxsde/xsde/makefile | 3 +++ dist/libxsde/xsde/nmakefile | 3 +++ 2 files changed, 6 insertions(+) (limited to 'dist/libxsde') diff --git a/dist/libxsde/xsde/makefile b/dist/libxsde/xsde/makefile index 142c269..90f2252 100644 --- a/dist/libxsde/xsde/makefile +++ b/dist/libxsde/xsde/makefile @@ -509,6 +509,9 @@ endif ifeq ($(XSDE_STL),y) @echo $(h)define XSDE_STL >>$@ endif +ifeq ($(XSDE_STL_ITERATOR),y) + @echo $(h)define XSDE_STL_ITERATOR >>$@ +endif ifeq ($(XSDE_IOSTREAM),y) @echo $(h)define XSDE_IOSTREAM >>$@ endif diff --git a/dist/libxsde/xsde/nmakefile b/dist/libxsde/xsde/nmakefile index 888ca15..8eac019 100644 --- a/dist/libxsde/xsde/nmakefile +++ b/dist/libxsde/xsde/nmakefile @@ -504,6 +504,9 @@ config.h: !if "$(XSDE_STL)" == "y" @echo #define XSDE_STL >>$@ !endif +!if "$(XSDE_STL_ITERATOR)" == "y" + @echo #define XSDE_STL_ITERATOR >>$@ +!endif !if "$(XSDE_IOSTREAM)" == "y" @echo #define XSDE_IOSTREAM >>$@ !endif -- cgit v1.1