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/Database | |
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/Database')
-rwxr-xr-x | cpp/demo/Database/Oracle/occi/Makefile.mak | 2 | ||||
-rwxr-xr-x | cpp/demo/Database/Oracle/proc/Makefile.mak | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/Database/Oracle/occi/Makefile.mak b/cpp/demo/Database/Oracle/occi/Makefile.mak index 2a34d7e0c37..0e40a4f5fb0 100755 --- a/cpp/demo/Database/Oracle/occi/Makefile.mak +++ b/cpp/demo/Database/Oracle/occi/Makefile.mak @@ -36,7 +36,7 @@ SRCS = $(OBJS:.obj=.cpp) \ CPPFLAGS = -I. -I$(ORACLE_HOME)\precomp\public $(CPPFLAGS) -DWIN32_LEAN_AND_MEAN -!if "$(BORLAND_HOME)" == "" & "$(OPTIMIZE)" != "yes" +!if "$(CPP_COMPILER)" != "BCC2006" & "$(OPTIMIZE)" != "yes" CPDBFLAGS = /pdb:$(CLIENT:.exe=.pdb) SPDBFLAGS = /pdb:$(SERVER:.exe=.pdb) !endif diff --git a/cpp/demo/Database/Oracle/proc/Makefile.mak b/cpp/demo/Database/Oracle/proc/Makefile.mak index 9a61c1b1630..e42c3eb6902 100755 --- a/cpp/demo/Database/Oracle/proc/Makefile.mak +++ b/cpp/demo/Database/Oracle/proc/Makefile.mak @@ -49,7 +49,7 @@ ORACLE_LIBS = -L$(ORACLE_HOME)\precomp\lib orasql10$(LIBSUFFIX).lib proc threads=yes parse=none lines=yes code=cpp cpp_suffix=cpp close_on_commit=yes $< del /q tp* $*.lis -!if "$(BORLAND_HOME)" == "" & "$(OPTIMIZE)" != "yes" +!if "$(CPP_COMPILER)" != "BCC2006" & "$(OPTIMIZE)" != "yes" CPDBFLAGS = /pdb:$(CLIENT:.exe=.pdb) SPDBFLAGS = /pdb:$(SERVER:.exe=.pdb) !endif |