diff --git a/mozilla/netwerk/base/src/Makefile.in b/mozilla/netwerk/base/src/Makefile.in index 9443c0c938c..740f9c0768b 100644 --- a/mozilla/netwerk/base/src/Makefile.in +++ b/mozilla/netwerk/base/src/Makefile.in @@ -35,6 +35,13 @@ CPPSRCS = \ nsStandardUrl.cpp \ $(NULL) +EXPORTS = \ + nsIOService.h \ + nsFileTransportService.h \ + nsSocketTransportService.h \ + nsStandardUrl.h \ + $(NULL) + EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS)) MODULE = netwerk @@ -51,3 +58,7 @@ override NO_STATIC_LIB= include $(DEPTH)/config/rules.mk + + + + diff --git a/mozilla/netwerk/protocol/ftp/public/Makefile.in b/mozilla/netwerk/protocol/ftp/public/Makefile.in index b12d498b495..e4a97616acc 100644 --- a/mozilla/netwerk/protocol/ftp/public/Makefile.in +++ b/mozilla/netwerk/protocol/ftp/public/Makefile.in @@ -22,8 +22,11 @@ topsrcdir = @top_srcdir@ srcdir = @srcdir@ VPATH = @srcdir@ +XPIDLSRCS = \ + nsIFTPChannel.idl \ + $(NULL) + EXPORTS = \ - nsIFTPChannel.h \ ftpCore.h \ $(NULL) diff --git a/mozilla/netwerk/protocol/http/public/Makefile.in b/mozilla/netwerk/protocol/http/public/Makefile.in index 747e36422c4..c96ca88acf5 100644 --- a/mozilla/netwerk/protocol/http/public/Makefile.in +++ b/mozilla/netwerk/protocol/http/public/Makefile.in @@ -22,9 +22,12 @@ topsrcdir = @top_srcdir@ srcdir = @srcdir@ VPATH = @srcdir@ +XPIDLSRCS = \ + nsIHTTPChannel.idl \ + $(NULL) + EXPORTS = \ nsIHttpEventSink.h \ - nsIHTTPConnection.h \ nsIHTTPHandler.h \ nsHTTPEnums.h \ nsIHTTPCommonHeaders.h \ diff --git a/mozilla/netwerk/protocol/http/src/Makefile.in b/mozilla/netwerk/protocol/http/src/Makefile.in index 196100f66b6..09a6dec8b7f 100644 --- a/mozilla/netwerk/protocol/http/src/Makefile.in +++ b/mozilla/netwerk/protocol/http/src/Makefile.in @@ -30,9 +30,9 @@ CPPSRCS = \ nsHTTPHandlerFactory.cpp \ nsHTTPChannel.cpp \ nsHTTPRequest.cpp \ - nsHTTPRequestObserver.cpp \ nsHTTPResponseListener.cpp \ nsHTTPResponse.cpp \ + nsHTTPRequestObserver.cpp \ $(NULL) REQUIRES = xpcom netwerk raptor