mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
fee8cf3706
1. Ports to older revisions of some Unix variants, e.g., BSD/OS 1.1, OSF1 V2.0, etc., contributed by Brian Ostrom <briano@netscape.com>. 2. QNX port, also contributed by Brian Ostrom. 3. New macro USE_MACH_DYLD to represent the dynamic library loading API of NEXTSTEP and Rhapsody. 4. On platforms whose socket address has the sa_len field, make a copy of the PRNetAddr argument for PR_Bind, PR_Connect, and PR_SendTo and set its sa_len before passing it to the system calls. This fix is suggested by Bert Driehuis <driehuis@playbeing.org>. 5. Removed the unused field _lockf64 of struct _MD_IOVector. Not every Unix platform has lockf, and the POSIX file locking API uses fcntl.
36 lines
1.0 KiB
Makefile
36 lines
1.0 KiB
Makefile
#
|
|
# 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
|
|
# compliance with the NPL. You may obtain a copy of the NPL at
|
|
# http://www.mozilla.org/NPL/
|
|
#
|
|
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
# for the specific language governing rights and limitations under the
|
|
# NPL.
|
|
#
|
|
# The Initial Developer of this code under the NPL is Netscape
|
|
# Communications Corporation. Portions created by Netscape are
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
# Reserved.
|
|
#
|
|
|
|
#! gmake
|
|
|
|
MOD_DEPTH = ../../..
|
|
|
|
include $(MOD_DEPTH)/config/config.mk
|
|
|
|
HEADERS = $(wildcard *.h)
|
|
|
|
RELEASE_HEADERS = $(HEADERS)
|
|
RELEASE_HEADERS_DEST = $(RELEASE_INCLUDE_DIR)/obsolete
|
|
|
|
include $(MOD_DEPTH)/config/rules.mk
|
|
|
|
export:: $(HEADERS)
|
|
$(INSTALL) -m 444 $(HEADERS) $(DIST)/include/obsolete
|
|
ifeq ($(MOZ_BITS),16)
|
|
$(INSTALL) -m 444 $(HEADERS) $(MOZ_INCL)/obsolete
|
|
endif
|