From e0fb855b828af4459dbd2dc87da11dab54598b82 Mon Sep 17 00:00:00 2001 From: "briano%netscape.com" Date: Tue, 24 Aug 1999 00:36:32 +0000 Subject: [PATCH] Other files use nsIUnixToolkitService.h, so this now gets built on all Unix platforms. git-svn-id: svn://10.0.0.236/trunk@44188 18797224-902f-48f8-a5cc-f745e15eee43 --- .../unix_services/toolkit_service/Makefile.in | 31 +++++++++---------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/mozilla/widget/src/unix_services/toolkit_service/Makefile.in b/mozilla/widget/src/unix_services/toolkit_service/Makefile.in index 59bedf84f89..677a46a0eb1 100644 --- a/mozilla/widget/src/unix_services/toolkit_service/Makefile.in +++ b/mozilla/widget/src/unix_services/toolkit_service/Makefile.in @@ -1,4 +1,3 @@ -#!gmake # # The contents of this file are subject to the Netscape Public License # Version 1.0 (the "NPL"); you may not use this file except in @@ -14,34 +13,32 @@ # Communications Corporation. Portions created by Netscape are # Copyright (C) 1998 Netscape Communications Corporation. All Rights # Reserved. +# -DEPTH = ../../../.. +DEPTH = ../../../.. topsrcdir = @top_srcdir@ srcdir = @srcdir@ VPATH = @srcdir@ include $(DEPTH)/config/autoconf.mk -include $(topsrcdir)/config/config.mk +LIBRARY_NAME = toolkit_service +IS_COMPONENT = 1 -LIBRARY_NAME = toolkit_service -IS_COMPONENT=1 +REQUIRES = xpcom -REQUIRES=xpcom +CPPSRCS = \ + nsUnixToolkitService.cpp \ + nsUnixToolkitServiceFactory.cpp \ + $(NULL) -DEFINES += -D_IMPL_NS_TIMER -CXXFLAGS += $(TK_CFLAGS) -INCLUDES += $(TK_CFLAGS) -I$(srcdir)/.. -I$(srcdir)/../../xpwidgets +EXPORTS = nsIUnixToolkitService.h -CPPSRCS = \ - nsUnixToolkitService.cpp \ - nsUnixToolkitServiceFactory.cpp \ - $(NULL) +include $(topsrcdir)/config/rules.mk -EXPORTS = nsIUnixToolkitService.h - -CXXFLAGS += $(TK_CFLAGS) +DEFINES += -D_IMPL_NS_TIMER +CXXFLAGS += $(TK_CFLAGS) +INCLUDES += $(TK_CFLAGS) -I$(srcdir)/.. -I$(srcdir)/../../xpwidgets EXTRA_DSO_LDOPTS += $(TOOLKIT_TK_LIBS) -include $(topsrcdir)/config/rules.mk