tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

pkixlibs.mk (502B)


      1 # 
      2 # This Source Code Form is subject to the terms of the Mozilla Public
      3 # License, v. 2.0. If a copy of the MPL was not distributed with this
      4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      5 
      6 ifeq (,$(filter-out WIN%,$(OS_TARGET)))
      7 
      8 ifdef NS_USE_GCC
      9 EXTRA_SHARED_LIBS += \
     10 -L$(DIST)/lib \
     11 -lpkixutil \
     12 $(NULL)
     13 else # ! NS_USE_GCC
     14 EXTRA_SHARED_LIBS += \
     15 $(DIST)/lib/pkixutil.lib \
     16 $(NULL)
     17 endif # NS_USE_GCC
     18 
     19 else
     20 
     21 EXTRA_SHARED_LIBS += \
     22 -L$(DIST)/lib/ \
     23 -lpkixutil \
     24 $(NULL)
     25 
     26 endif