diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-01-09 15:58:23 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-01-09 15:58:23 +0000 |
commit | 4ba1e534cd256e3db901424e9214ee8cc3569955 (patch) | |
tree | 2f3297f3a87d30f18990b59fc1b9354a6f734c97 /cpp/demo/Ice/async | |
parent | fix exe/lib flag snafu (diff) | |
download | ice-4ba1e534cd256e3db901424e9214ee8cc3569955.tar.bz2 ice-4ba1e534cd256e3db901424e9214ee8cc3569955.tar.xz ice-4ba1e534cd256e3db901424e9214ee8cc3569955.zip |
Added CPP_COMPILER setting
Diffstat (limited to 'cpp/demo/Ice/async')
-rw-r--r-- | cpp/demo/Ice/async/Consumer.cpp | 2 | ||||
-rw-r--r-- | cpp/demo/Ice/async/Makefile.mak | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/cpp/demo/Ice/async/Consumer.cpp b/cpp/demo/Ice/async/Consumer.cpp index b49079207e7..d3dcf32c577 100644 --- a/cpp/demo/Ice/async/Consumer.cpp +++ b/cpp/demo/Ice/async/Consumer.cpp @@ -115,6 +115,7 @@ QueueConsumer::run(int argc, char* argv[]) // // Cancel any outstanding requests. // + /* IceUtil::StaticMutex::Lock lock(requestsMutex); if(requests.size() != 0) { @@ -132,6 +133,7 @@ QueueConsumer::run(int argc, char* argv[]) // Ignore } } + */ return EXIT_SUCCESS; } diff --git a/cpp/demo/Ice/async/Makefile.mak b/cpp/demo/Ice/async/Makefile.mak index 6143c7f914f..30bbbaccc2c 100644 --- a/cpp/demo/Ice/async/Makefile.mak +++ b/cpp/demo/Ice/async/Makefile.mak @@ -33,7 +33,7 @@ SRCS = $(OBJS:.obj=.cpp) \ CPPFLAGS = -I. $(CPPFLAGS) -DWIN32_LEAN_AND_MEAN -!if "$(BORLAND_HOME)" == "" & "$(OPTIMIZE)" != "yes" +!if "$(CPP_COMPILER)" != "BCC2006" & "$(OPTIMIZE)" != "yes" PPDBFLAGS = /pdb:$(PUBLISHER:.exe=.pdb) CPDBFLAGS = /pdb:$(CONSUMER:.exe=.pdb) SPDBFLAGS = /pdb:$(SERVER:.exe=.pdb) |