summaryrefslogtreecommitdiff
path: root/include/makeinclude/make_flags.bor
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/make_flags.bor')
-rw-r--r--include/makeinclude/make_flags.bor26
1 files changed, 1 insertions, 25 deletions
diff --git a/include/makeinclude/make_flags.bor b/include/makeinclude/make_flags.bor
index c3beb76356f..87a35ae6725 100644
--- a/include/makeinclude/make_flags.bor
+++ b/include/makeinclude/make_flags.bor
@@ -12,30 +12,6 @@ DEBUG_FLAG = -DDEBUG
STATIC_FLAG = -DSTATIC
!endif
-!ifdef PASCAL
-PASCAL_FLAG = -DPASCAL
-!if $(BCBVER) != 4
-!ifndef FORCE_PASCAL
-!message
-!message -------------------------------------------------------------
-!message The PASCAL build configuration is *not* required for use with
-!message Borland C++Builder 5 or 6.
-!message
-!message Since both VCL and non-VCL applications share a common run-
-!message time library (i.e. cc3250mt.dll), you can simply link your
-!message VCL code with a non-PASCAL build of the ACE+TAO libraries.
-!message
-!message If you still really want to build a PASCAL configuration, add
-!message -DFORCE_PASCAL to your make command.
-!message -------------------------------------------------------------
-!message
-!error Aborting build
-!else
-PASCAL_FLAG = -DPASCAL -DFORCE_PASCAL
-!endif
-!endif
-!endif
-
!ifdef CODEGUARD
CODEGUARD_FLAG = -DCODEGUARD
!endif
@@ -52,5 +28,5 @@ UNICODE_FLAG = -DUNICODE
NO_FULL_PATH_FLAG = -DNO_FULL_PATH
!endif
-MAKE_FLAGS = $(DEBUG_FLAG) $(STATIC_FLAG) $(PASCAL_FLAG) $(UNICODE_FLAG) \
+MAKE_FLAGS = $(DEBUG_FLAG) $(STATIC_FLAG) $(UNICODE_FLAG) \
$(CODEGUARD_FLAG) $(INSTALL_DIR_FLAG) $(NO_FULL_PATH_FLAG)