From 74cd27348ebdbd67f7c82c22fee6e43fc2bc4bbb Mon Sep 17 00:00:00 2001 From: "dbaron%fas.harvard.edu" Date: Wed, 30 Aug 2000 12:29:39 +0000 Subject: [PATCH] Copy cls's hack to another makefile to fix nebiros bustage. This prevents time.h from being included on Sun's WorkShop compiler. r=scc git-svn-id: svn://10.0.0.236/trunk@77615 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/embedding/browser/gtk/tests/Makefile.in | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/mozilla/embedding/browser/gtk/tests/Makefile.in b/mozilla/embedding/browser/gtk/tests/Makefile.in index 85e226281a3..a11a1e03c53 100644 --- a/mozilla/embedding/browser/gtk/tests/Makefile.in +++ b/mozilla/embedding/browser/gtk/tests/Makefile.in @@ -67,3 +67,14 @@ else CXXFLAGS += $(MOZ_GTK_CFLAGS) endif + +ifeq ($(OS_ARCH), SunOS) +ifndef GNU_CC +# When using Sun's WorkShop compiler, including +# /wherever/workshop-5.0/SC5.0/include/CC/std/time.h +# causes most of these compiles to fail with: +# line 29: Error: Multiple declaration for std::tm. +# So, this gets around the problem. +DEFINES += -D_TIME_H=1 +endif +endif