tor-browser

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

prcpucfg.h (956B)


      1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      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 #ifndef NSPR_PRCPUCFG_H_
      7 #define NSPR_PRCPUCFG_H_
      8 
      9 /*
     10 * Need to support conditionals that are defined in both the top-level build
     11 * system as well as NSS' build system for now.
     12 */
     13 #if defined(XP_DARWIN) || defined(DARWIN)
     14 #  include "md/_darwin.cfg"
     15 #elif defined(XP_WIN) || defined(_WINDOWS)
     16 #  include "md/_win95.cfg"
     17 #elif defined(__FreeBSD__)
     18 #  include "md/_freebsd.cfg"
     19 #elif defined(__NetBSD__)
     20 #  include "md/_netbsd.cfg"
     21 #elif defined(__OpenBSD__)
     22 #  include "md/_openbsd.cfg"
     23 #elif defined(__linux__)
     24 #  include "md/_linux.cfg"
     25 #elif defined(__sun__)
     26 #  include "md/_solaris.cfg"
     27 #else
     28 #  error "Unsupported platform!"
     29 #endif
     30 
     31 #endif /* NSPR_PRCPUCFG_H_ */