summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/orbsvcs/IFR_Service/Makefile9
-rw-r--r--TAO/orbsvcs/tests/Makefile5
2 files changed, 9 insertions, 5 deletions
diff --git a/TAO/orbsvcs/IFR_Service/Makefile b/TAO/orbsvcs/IFR_Service/Makefile
index 83b40bfa21f..5ae839d65f8 100644
--- a/TAO/orbsvcs/IFR_Service/Makefile
+++ b/TAO/orbsvcs/IFR_Service/Makefile
@@ -21,10 +21,11 @@ include $(TAO_ROOT)/rules.tao.GNU
#----------------------------------------------------------------------------
# Define local rules and targets
#---------------------------------------------------------------------------
-MKLIST = \
- Makefile.TypeCodeFactory \
- Makefile.IFR_Service \
- Makefile.tao_ifr
+MKLIST = Makefile.TypeCodeFactory
+
+ifneq ($(ACE_HAS_GNUG_PRE_2_8),1)
+ MKLIST += Makefile.IFR_Service Makefile.tao_ifr
+endif # ACE_HAS_GNUG_PRE_2_8
all debug profile optimize install deinstall clean realclean clobber depend:
ifeq (Windows,$(findstring Windows,$(OS)))
diff --git a/TAO/orbsvcs/tests/Makefile b/TAO/orbsvcs/tests/Makefile
index 2d9e16ca3be..db0927be28c 100644
--- a/TAO/orbsvcs/tests/Makefile
+++ b/TAO/orbsvcs/tests/Makefile
@@ -24,7 +24,6 @@ DIRS = Simple_Naming \
Concurrency \
FaultTolerance \
ImplRepo \
- InterfaceRepo \
Trading \
AVStreams \
Notify \
@@ -33,6 +32,10 @@ DIRS = Simple_Naming \
ior_corbaname \
tests_svc_loader
+ifneq ($(ACE_HAS_GNUG_PRE_2_8),1)
+ DIRS += InterfaceRepo
+endif # ACE_HAS_GNUG_PRE_2_8
+
ifndef TAO_ROOT
TAO_ROOT = $(ACE_ROOT)/TAO
endif