Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | # vim:set ts=8 sw=8 sts=8 noet: |
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 | # Portions created by the Initial Developer are Copyright (C) 2005 |
michael@0 | 7 | # the Initial Developer. All Rights Reserved. |
michael@0 | 8 | # |
michael@0 | 9 | # Contributor(s): |
michael@0 | 10 | # |
michael@0 | 11 | # Alternatively, the contents of this file may be used under the terms of |
michael@0 | 12 | # either the GNU General Public License Version 2 or later (the "GPL"), or |
michael@0 | 13 | # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), |
michael@0 | 14 | # in which case the provisions of the GPL or the LGPL are applicable instead |
michael@0 | 15 | # of those above. If you wish to allow use of your version of this file only |
michael@0 | 16 | # under the terms of either the GPL or the LGPL, and not to allow others to |
michael@0 | 17 | # use your version of this file under the terms of the MPL, indicate your |
michael@0 | 18 | # decision by deleting the provisions above and replace them with the notice |
michael@0 | 19 | # and other provisions required by the GPL or the LGPL. If you do not delete |
michael@0 | 20 | # the provisions above, a recipient may use your version of this file under |
michael@0 | 21 | # the terms of any one of the MPL, the GPL or the LGPL. |
michael@0 | 22 | # |
michael@0 | 23 | # ***** END LICENSE BLOCK ***** |
michael@0 | 24 | |
michael@0 | 25 | # This program is output to dist/host/bin because it is only needed by the |
michael@0 | 26 | # build system and is not intended to be included in Mozilla distributions. |
michael@0 | 27 | |
michael@0 | 28 | ifdef MOZ_NATIVE_BZ2 |
michael@0 | 29 | HOST_LIBS += $(MOZ_BZ2_LIBS) |
michael@0 | 30 | else |
michael@0 | 31 | HOST_LIBS += $(DIST)/host/lib/$(LIB_PREFIX)hostbz2.$(LIB_SUFFIX) |
michael@0 | 32 | endif |
michael@0 | 33 | |
michael@0 | 34 | ifeq ($(HOST_OS_ARCH),WINNT) |
michael@0 | 35 | HOST_EXTRA_LIBS += $(call EXPAND_LIBNAME,Ws2_32) |
michael@0 | 36 | endif |
michael@0 | 37 | |
michael@0 | 38 | include $(topsrcdir)/config/rules.mk |
michael@0 | 39 | |
michael@0 | 40 | HOST_CXXFLAGS += $(MOZ_BZ2_CFLAGS) |