nsprpub/config/autoconf.mk.in

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 # -*- Mode: Makefile -*-
michael@0 2 # This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 # License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
michael@0 5
michael@0 6
michael@0 7 INCLUDED_AUTOCONF_MK = 1
michael@0 8 USE_AUTOCONF = 1
michael@0 9 @SHELL_OVERRIDE@
michael@0 10 MOZILLA_CLIENT = @MOZILLA_CLIENT@
michael@0 11
michael@0 12 prefix = @prefix@
michael@0 13 exec_prefix = @exec_prefix@
michael@0 14 bindir = @bindir@
michael@0 15 includedir = @includedir@
michael@0 16 libdir = @libdir@
michael@0 17 datarootdir = @datarootdir@
michael@0 18 datadir = @datadir@
michael@0 19
michael@0 20 dist_prefix = @dist_prefix@
michael@0 21 dist_bindir = @dist_bindir@
michael@0 22 dist_includedir = @dist_includedir@
michael@0 23 dist_libdir = @dist_libdir@
michael@0 24
michael@0 25 DIST = $(dist_prefix)
michael@0 26
michael@0 27 RELEASE_OBJDIR_NAME = @RELEASE_OBJDIR_NAME@
michael@0 28 OBJDIR_NAME = @OBJDIR_NAME@
michael@0 29 OBJDIR = @OBJDIR@
michael@0 30 # We do magic with OBJ_SUFFIX in config.mk, the following ensures we don't
michael@0 31 # manually use it before config.mk inclusion
michael@0 32 OBJ_SUFFIX = $(error config/config.mk needs to be included before using OBJ_SUFFIX)
michael@0 33 _OBJ_SUFFIX = @OBJ_SUFFIX@
michael@0 34 LIB_SUFFIX = @LIB_SUFFIX@
michael@0 35 DLL_SUFFIX = @DLL_SUFFIX@
michael@0 36 ASM_SUFFIX = @ASM_SUFFIX@
michael@0 37 MOD_NAME = @NSPR_MODNAME@
michael@0 38
michael@0 39 MOD_MAJOR_VERSION = @MOD_MAJOR_VERSION@
michael@0 40 MOD_MINOR_VERSION = @MOD_MINOR_VERSION@
michael@0 41 MOD_PATCH_VERSION = @MOD_PATCH_VERSION@
michael@0 42
michael@0 43 LIBNSPR = @LIBNSPR@
michael@0 44 LIBPLC = @LIBPLC@
michael@0 45
michael@0 46 CROSS_COMPILE = @CROSS_COMPILE@
michael@0 47 MOZ_OPTIMIZE = @MOZ_OPTIMIZE@
michael@0 48 MOZ_DEBUG = @MOZ_DEBUG@
michael@0 49 MOZ_DEBUG_SYMBOLS = @MOZ_DEBUG_SYMBOLS@
michael@0 50
michael@0 51 USE_CPLUS = @USE_CPLUS@
michael@0 52 USE_IPV6 = @USE_IPV6@
michael@0 53 USE_N32 = @USE_N32@
michael@0 54 USE_X32 = @USE_X32@
michael@0 55 USE_64 = @USE_64@
michael@0 56 ENABLE_STRIP = @ENABLE_STRIP@
michael@0 57
michael@0 58 USE_PTHREADS = @USE_PTHREADS@
michael@0 59 USE_BTHREADS = @USE_BTHREADS@
michael@0 60 PTHREADS_USER = @USE_USER_PTHREADS@
michael@0 61 CLASSIC_NSPR = @USE_NSPR_THREADS@
michael@0 62
michael@0 63 AS = @AS@
michael@0 64 ASFLAGS = @ASFLAGS@
michael@0 65 CC = @CC@
michael@0 66 CCC = @CXX@
michael@0 67 NS_USE_GCC = @GNU_CC@
michael@0 68 GCC_USE_GNU_LD = @GCC_USE_GNU_LD@
michael@0 69 MSC_VER = @MSC_VER@
michael@0 70 AR = @AR@
michael@0 71 AR_FLAGS = @AR_FLAGS@
michael@0 72 LD = @LD@
michael@0 73 RANLIB = @RANLIB@
michael@0 74 PERL = @PERL@
michael@0 75 RC = @RC@
michael@0 76 RCFLAGS = @RCFLAGS@
michael@0 77 STRIP = @STRIP@
michael@0 78 NSINSTALL = @NSINSTALL@
michael@0 79 FILTER = @FILTER@
michael@0 80 IMPLIB = @IMPLIB@
michael@0 81 CYGWIN_WRAPPER = @CYGWIN_WRAPPER@
michael@0 82 MT = @MT@
michael@0 83
michael@0 84 OS_CPPFLAGS = @CPPFLAGS@
michael@0 85 OS_CFLAGS = $(OS_CPPFLAGS) @CFLAGS@ $(DSO_CFLAGS)
michael@0 86 OS_CXXFLAGS = $(OS_CPPFLAGS) @CXXFLAGS@ $(DSO_CFLAGS)
michael@0 87 OS_LIBS = @OS_LIBS@
michael@0 88 OS_LDFLAGS = @LDFLAGS@
michael@0 89 OS_DLLFLAGS = @OS_DLLFLAGS@
michael@0 90 DLLFLAGS = @DLLFLAGS@
michael@0 91 EXEFLAGS = @EXEFLAGS@
michael@0 92 OPTIMIZER = @OPTIMIZER@
michael@0 93
michael@0 94 PROFILE_GEN_CFLAGS = @PROFILE_GEN_CFLAGS@
michael@0 95 PROFILE_GEN_LDFLAGS = @PROFILE_GEN_LDFLAGS@
michael@0 96 PROFILE_USE_CFLAGS = @PROFILE_USE_CFLAGS@
michael@0 97 PROFILE_USE_LDFLAGS = @PROFILE_USE_LDFLAGS@
michael@0 98
michael@0 99 MKSHLIB = @MKSHLIB@
michael@0 100 WRAP_LDFLAGS = @WRAP_LDFLAGS@
michael@0 101 DSO_CFLAGS = @DSO_CFLAGS@
michael@0 102 DSO_LDOPTS = @DSO_LDOPTS@
michael@0 103
michael@0 104 RESOLVE_LINK_SYMBOLS = @RESOLVE_LINK_SYMBOLS@
michael@0 105
michael@0 106 HOST_CC = @HOST_CC@
michael@0 107 HOST_CFLAGS = @HOST_CFLAGS@
michael@0 108 HOST_LDFLAGS = @HOST_LDFLAGS@
michael@0 109
michael@0 110 DEFINES = @DEFINES@ @DEFS@
michael@0 111
michael@0 112 MDCPUCFG_H = @MDCPUCFG_H@
michael@0 113 PR_MD_CSRCS = @PR_MD_CSRCS@
michael@0 114 PR_MD_ASFILES = @PR_MD_ASFILES@
michael@0 115 PR_MD_ARCH_DIR = @PR_MD_ARCH_DIR@
michael@0 116 CPU_ARCH = @CPU_ARCH@
michael@0 117
michael@0 118 OS_TARGET = @OS_TARGET@
michael@0 119 OS_ARCH = @OS_ARCH@
michael@0 120 OS_RELEASE = @OS_RELEASE@
michael@0 121 OS_TEST = @OS_TEST@
michael@0 122
michael@0 123 NOSUCHFILE = @NOSUCHFILE@
michael@0 124 AIX_LINK_OPTS = @AIX_LINK_OPTS@
michael@0 125 MOZ_OBJFORMAT = @MOZ_OBJFORMAT@
michael@0 126 ULTRASPARC_LIBRARY = @ULTRASPARC_LIBRARY@
michael@0 127
michael@0 128 OBJECT_MODE = @OBJECT_MODE@
michael@0 129 ifdef OBJECT_MODE
michael@0 130 export OBJECT_MODE
michael@0 131 endif
michael@0 132
michael@0 133 VISIBILITY_FLAGS = @VISIBILITY_FLAGS@
michael@0 134 WRAP_SYSTEM_INCLUDES = @WRAP_SYSTEM_INCLUDES@
michael@0 135
michael@0 136 MACOSX_DEPLOYMENT_TARGET = @MACOSX_DEPLOYMENT_TARGET@
michael@0 137 ifdef MACOSX_DEPLOYMENT_TARGET
michael@0 138 export MACOSX_DEPLOYMENT_TARGET
michael@0 139 endif
michael@0 140
michael@0 141 MACOS_SDK_DIR = @MACOS_SDK_DIR@
michael@0 142
michael@0 143 SYMBIAN_SDK_DIR = @SYMBIAN_SDK_DIR@
michael@0 144
michael@0 145 NEXT_ROOT = @NEXT_ROOT@
michael@0 146 ifdef NEXT_ROOT
michael@0 147 export NEXT_ROOT
michael@0 148 endif

mercurial