Fix up the unix makefiles so it actually builds

This commit is contained in:
tonyr%fbdesigns.com 2000-04-15 16:51:51 +00:00
Родитель a753f15877
Коммит a142e4be22
5 изменённых файлов: 21 добавлений и 81 удалений

Просмотреть файл

@ -1,32 +0,0 @@
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = public unix base
include $(topsrcdir)/config/rules.mk

Просмотреть файл

@ -41,9 +41,6 @@ SHARED_LIBRARY_LIBS = \
$(NULL)
EXTRA_DSO_LDOPTS = \
$(MKSHLIB_FORCE_ALL) \
$(SHARED_LIBRARY_LIBS) \
$(MKSHLIB_UNFORCE_ALL) \
-L$(DIST)/lib \
-L$(DIST)/bin \
$(MOZ_COMPONENT_LIBS) \
@ -51,5 +48,5 @@ EXTRA_DSO_LDOPTS = \
include $(topsrcdir)/config/rules.mk
$(LIBRARY) $(SHARED_LIBRARY): $(SHARED_LIBRARY_LIBS) Makefile
# $(LIBRARY) $(SHARED_LIBRARY): $(SHARED_LIBRARY_LIBS) Makefile

Просмотреть файл

@ -133,3 +133,20 @@ nsresult nsExternalProtocol::LaunchViaHelper( nsIURI *pUri)
return( NS_ERROR_FAILURE);
}
#ifdef XP_UNIX
// For some reason I cannot get the makefile for building the unix
// static lib to work properly. Rather than wastew many many hours
// on it, just include the source here. If anyone can figure out how
// to get the makefile in extprotocol/unix to work then remove this
// and add that library to the makefile in extprotocol/base - that is
// how the windows build works
#define UNIX_MAKEFILE_NO_WORKY 1
#include "../unix/nsExternalProtocolUnix.cpp"
#endif

Просмотреть файл

@ -1,44 +0,0 @@
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1999 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
DEPTH = ../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = extprotocol
LIBRARY_NAME = extprotocolunix_s
CPPSRCS = nsExternalProcotolUnix.cpp \
$(NULL)
XPIDLSRCS = $(NULL)
EXPORTS = $(NULL)
# we don't want the shared lib, but we want to force the creation of a static lib.
override NO_SHARED_LIB=1
override NO_STATIC_LIB=
include $(topsrcdir)/config/rules.mk

Просмотреть файл

@ -19,6 +19,7 @@
*
*/
#ifndef UNIX_MAKEFILE_NO_WORKY
#include "nscore.h"
#include "nsCRT.h"
@ -36,13 +37,14 @@
#define DEBUG_LOG1( x, y)
#endif
#endif
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
nsresult nsExternalProtocol::DefaultLaunch( nsIURI *pUri)
{
nsresult rv = NS_ERROR_FAILURE;
nsresult rv = NS_ERROR_FAILURE;
return( rv);
}