mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
4abf6c629b
Added separate variables for jpeg, png & zlib CFLAGS & LIBS. Added --with-option=dir support for jpeg, png & zlib. Split X defines into XCFLAGS, XLDFLAGS & XLIBS. Will attempt to link nspr against the proper thread lib if the initial check fails. Removed last vestiges of NO_SECURITY. Modified cmd/{gnome,qt,x}fe/Makefile to only use autoconf defined variable for the final link. Changed ACCFLAGS to OS_CFLAGS. Changed ACLIBS to OS_LIBS. OPTIMIZER (config.mk) is no longer set for autoconf. No longer includes platform specific .mk
210 lines
5.5 KiB
Makefile
210 lines
5.5 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.
|
|
#
|
|
|
|
##########################################################################
|
|
# #
|
|
# STOP THE INSANITY #
|
|
# #
|
|
##########################################################################
|
|
|
|
|
|
##########################################################################
|
|
#
|
|
# Name: unixfe.mk
|
|
#
|
|
# Description: Makefile hackery shared across unix and unik-like
|
|
# Mozilla front ends.
|
|
#
|
|
# The purpose of this file is to STOP THE INSANITY that
|
|
# has become the XFE Makefile and that will soon be the
|
|
# gnomefe, qtfe, ybfe and foofe Makfiles.
|
|
#
|
|
# Anything that can be shared between the unix fes, should
|
|
# be shared. Always look here first before adding anything
|
|
# to the toolkit specific Makefiles, or you will suffer
|
|
# dearly.
|
|
#
|
|
# Author: Ramiro Estrugo <ramiro@netscape.com>
|
|
#
|
|
##########################################################################
|
|
|
|
##########################################################################
|
|
#
|
|
# MOZ_NATIVE_JPEG
|
|
#
|
|
# The default usage for libjpeg is that its built as part of Mozilla.
|
|
#
|
|
# MOZ_NATIVE_JPEG can be set to make Mozilla build using a 'native' libjpeg
|
|
# as found in platforms such as Linux and IRIX.
|
|
#
|
|
# Only one of the following gets set for linking the xfe:
|
|
#
|
|
# XFE_JPEG_LIB
|
|
# XFE_JPEG_DSO
|
|
#
|
|
# Only one of the following gets set for linking mkicons.
|
|
#
|
|
# XFE_MKICONS_JPEG_LIB
|
|
# XFE_MKICONS_JPEG_DSO
|
|
#
|
|
# We dont want to link mkicons dynamically against jpeg if we dont have to.
|
|
# It breaks on many platforms.
|
|
#
|
|
##########################################################################
|
|
ifdef MOZ_NATIVE_JPEG
|
|
|
|
XFE_JPEG_LIB =
|
|
XFE_JPEG_DSO = -ljpeg
|
|
XFE_JPEG_REQUIRES =
|
|
XFE_MKICONS_JPEG_LIB =
|
|
XFE_MKICONS_JPEG_DSO = -ljpeg
|
|
|
|
ifdef USE_AUTOCONF
|
|
XFE_JPEG_DSO = $(JPEG_LIBS)
|
|
XFE_MKICONS_JPEG_DSO = $(JPEG_LIBS)
|
|
endif
|
|
|
|
else
|
|
|
|
XFE_JPEG_LIB = $(DIST)/lib/libjpeg.a
|
|
XFE_JPEG_DSO =
|
|
XFE_JPEG_REQUIRES = jpeg
|
|
XFE_MKICONS_JPEG_LIB = $(DIST)/lib/libjpeg.a
|
|
XFE_MKICONS_JPEG_DSO =
|
|
|
|
endif
|
|
##########################################################################
|
|
|
|
|
|
|
|
##########################################################################
|
|
#
|
|
# MOZ_NATIVE_PNG
|
|
#
|
|
# The default usage for libpng is that its built as part of Mozilla.
|
|
#
|
|
# MOZ_NATIVE_PNG can be set to make Mozilla build using a 'native' libpng
|
|
# as found in platforms such as Linux and IRIX.
|
|
#
|
|
# Only one of the following gets set for linking the xfe:
|
|
#
|
|
# XFE_PNG_LIB
|
|
# XFE_PNG_DSO
|
|
#
|
|
# Only one of the following gets set for linking mkicons.
|
|
#
|
|
# XFE_MKICONS_PNG_LIB
|
|
# XFE_MKICONS_PNG_DSO
|
|
#
|
|
# We dont want to link mkicons dynamically against png if we dont have to.
|
|
# It breaks on many platforms.
|
|
#
|
|
##########################################################################
|
|
ifdef MOZ_NATIVE_PNG
|
|
|
|
XFE_PNG_LIB =
|
|
XFE_PNG_DSO = -lpng
|
|
XFE_PNG_REQUIRES =
|
|
XFE_MKICONS_PNG_LIB =
|
|
XFE_MKICONS_PNG_DSO = -lpng
|
|
|
|
ifdef USE_AUTOCONF
|
|
XFE_PNG_DSO = $(PNG_LIBS)
|
|
XFE_MKICONS_PNG_DSO = $(PNG_LIBS)
|
|
endif
|
|
|
|
else
|
|
|
|
XFE_PNG_LIB = $(DIST)/lib/libpng.a
|
|
XFE_PNG_DSO =
|
|
XFE_PNG_REQUIRES = png
|
|
XFE_MKICONS_PNG_LIB = $(DIST)/lib/libpng.a
|
|
XFE_MKICONS_PNG_DSO =
|
|
|
|
endif
|
|
##########################################################################
|
|
|
|
|
|
|
|
##########################################################################
|
|
#
|
|
# MOZ_NATIVE_ZLIB
|
|
#
|
|
# The default usage for libzlib is that its built as part of Mozilla.
|
|
#
|
|
# MOZ_NATIVE_ZLIB can be set to make Mozilla build using a 'native' libzlib
|
|
# as found in platforms such as Linux and IRIX.
|
|
#
|
|
# When built as part of Mozilla, it takes the name 'libzlib'
|
|
#
|
|
# The native zlib libs seem to be named 'libz' - at least on Linux.
|
|
#
|
|
# The FULL_STATIC_BUILD force the final Mozilla binary to be as fully
|
|
# staitc as possible - which includes zlib.
|
|
#
|
|
# Only one of the following gets set for linking the xfe:
|
|
#
|
|
# XFE_ZLIB_LIB
|
|
# XFE_ZLIB_DSO
|
|
#
|
|
# Only one of the following gets set for linking mkicons.
|
|
#
|
|
# XFE_MKICONS_ZLIB_LIB
|
|
# XFE_MKICONS_ZLIB_DSO
|
|
#
|
|
# We dont want to link mkicons dynamically against zlib if we dont have to.
|
|
# It breaks on many platforms.
|
|
#
|
|
#
|
|
##########################################################################
|
|
ifdef MOZ_NATIVE_ZLIB
|
|
|
|
XFE_ZLIB_LIB =
|
|
XFE_ZLIB_DSO = -lz
|
|
XFE_ZLIB_REQUIRES =
|
|
XFE_MKICONS_ZLIB_LIB =
|
|
XFE_MKICONS_ZLIB_DSO = -lz
|
|
|
|
ifdef USE_AUTOCONF
|
|
XFE_ZLIB_DSO = $(ZLIB_LIBS)
|
|
XFE_MKICONS_ZLIB_DSO = $(ZLIB_LIBS)
|
|
endif
|
|
|
|
else
|
|
|
|
ifdef FULL_STATIC_BUILD
|
|
|
|
XFE_ZLIB_LIB = $(DIST)/lib/libzlib.a
|
|
XFE_ZLIB_DSO =
|
|
XFE_ZLIB_REQUIRES = zlib
|
|
|
|
else
|
|
|
|
XFE_ZLIB_LIB =
|
|
XFE_ZLIB_DSO = -lzlib
|
|
XFE_ZLIB_REQUIRES = zlib
|
|
|
|
endif
|
|
|
|
XFE_MKICONS_ZLIB_LIB = $(DIST)/lib/libzlib.a
|
|
XFE_MKICONS_ZLIB_DSO =
|
|
|
|
endif
|
|
##########################################################################
|
|
|
|
# eof
|