Disenchant Imp Mac OS

broken image


  1. Disenchant Imp Mac Os Downloads
  2. Disenchant Imp Mac Os Sierra
  3. Mac Os Versions

Mac OS X specific services. Ic — Access to the Mac OS X Internet Config; 36.2. MacOS — Access to Mac OS interpreter features; 36.3. Macostools — Convenience routines for file manipulation; 36.4. Findertools — The finder‘s Apple Events interface; 36.5. EasyDialogs — Basic Macintosh dialogs; 36.6. FrameWork — Interactive.

This is new wiki software and old wiki content. It's a work in progress!
Here's the explanation.
Be gentle,report bugs,leave feedback on pages,or just edit them yourself! Thanks!

How to install SDL varies depending on your platform. You will need to download the source code first for most of them, unless prebuilt binaries are available.

SDL 1.2 isn't covered here. It can be installed on legacy platforms that SDL2 doesn't support, such as Mac OS 9 or OS/2, but settling for 1.2 would not be a drop-in replacement for 2.0. Some of these installation instructions happen to work with 1.2, however, on the platforms we cover.

Static linking

SDL 2.0, unlike 1.2, uses [FAQLicensing|the zlib license]], which means you can build a static library linked directly to your program, or just compile SDL's C code directly as part of your project. You are completely allowed to do that. However, we encourage you to not do this for various technical and moral reasons (see [docs/README-dynapi.md), and won't cover the details of how to in this document. You may not statically link SDL 1.2 in most cases due to its LGPL licensing, but you should really stop using SDL 1.2 anyhow.

Supported platforms

Linux/Unix

  • To see the size of a specific file or folder, click it once and then press Command-I. To see storage information about your Mac, click the Apple menu in the top-left of your screen. Choose About This Mac and click the Storage tab. For Time Machine backups, it's good to use a drive that has at least twice the storage capacity of your Mac.
  • Disenchant Area and Disenchant True are a pair of similar spells performing the same function. They are intended to allow removing ('dispelling') enemy spells currently affecting any asset within a specific, targeted map tile. Both spells may be cast on the overland map as well as during combat, for a base Casting Cost of 50.
  • This plugin will disenchant a held item and code it into a spare book in your inventory. Conditions will need to be met to perform such an arcane and forbidden ritual. Usage /disenchant Use while holding the item you wish to disenchant. /whatname Originally a debugging command to test for locations of items and the assigned metadata.

Several other platforms will be built 'the Unix way,' so we'll describe this platform first.

SDL supports most popular flavors of Unix: Linux 2.6+, the various BSDs (FreeBSD, NetBSD, OpenBSD), Solaris, and other things like them.

First! Do you need to compile SDL yourself? It's possible your distribution's package manager already did it for you!

Debian-based systems (including Ubuntu) can simply do 'sudo apt-get install libsdl2-2.0' to get the library installed system-wide, and all sorts of other useful dependencies, too. 'sudo apt-get install libsdl2-dev' will install everything necessary to build programs that use SDL. Please see docs/README-linux.md for a more complete discussion of packages involved.

Red Hat-based systems (including Fedora) can simply do 'sudo yum install SDL2' to get the library installed system-wide, or 'sudo yum install SDL2-devel' to get headers and other build requirements ready for compiling your own SDL programs.

Gentoo users can 'sudo emerge libsdl2' to get everything they need.

If you're compiling SDL yourself, here's what we refer to as 'the Unix way' of building:

  • Get a copy of the source code, either from Mercurial or an official tarball or whatever.
  • Make a separate build directory (SDL will refuse to build in the base of the source tree).
  • Run the configure script to set things up.
  • Run 'make' to compile SDL.
  • Run 'make install' to install your new SDL build on the system.

This looks something like this:

``` hg clone https://hg.libsdl.org/SDL SDL cd SDL mkdir build cd build ./configure make sudo make install ```

The last command says 'sudo' so we can write it to /usr/local (by default). You can change this to a different location with the --prefix option to the configure script. In fact, there are a LOT of good options you can use with configure! Be sure to check out its --help option for details. SDL tries to do the right thing by default, though, so you can usually get away with no options at all. 'make' could be 'make -j4' or whatever if you have more than one CPU; SDL can safely be built in parallel across all the CPU cores you have available to you. A good rule of thumb for Linux is the number of cores plus two, so you use all the processing resources possible, and if a process or two is competing for the disk, those two extra jobs might be able to put the otherwise-idle CPU cores to work in the meantime (so on a four-core system? Try 'make -j6'.)

An (experimental!) alternative to the configure script is the CMake project file. It works on similar principles to the configure script, but you might find that you enjoy it more, if this is the sort of thing you generally enjoy in the first place. Driving that is left as an exercise for the reader.

Once you have the library installed, you can use the sdl2-config program to help you compile your own code:

```gcc -o myprogram myprogram.c sdl2-config --cflags --libs```

SDL on Unix should only link against the C runtime (glibc). Every thing else it needs will be dynamically loaded at runtime: X11, ALSA, d-bus, etc. This means it is possible to build an SDL that has support for all sorts of targets built in, and it will examine the system at runtime to decide what should be used (for example, if Xlib isn't available, it might try to load Wayland support, etc). In that respect, if you plan to ship the SDL binary that you build, it is to your benefit to make sure your system has development headers for as many targets as possible, regardless of what you plan to personally use, so your final library is as robust as possible. See docs/README-linux.md for more details.

SteamOS

SteamOS is literally a Linux system, and uses the same binaries you distribute to generic Linux Steam users, so generally speaking, all the other Linux advice applies.

If you are shipping a Linux game on Steam, or explicitly targeting SteamOS, the system is guaranteed to provide SDL. The Steam Client will set up the dynamic loader path so that a known-good copy of SDL is available to any program that needs it before launching a game. Steam provides both SDL 1.2 and 2.0 in this manner, for both x86 and amd64, in addition to several add-on libraries like SDL_mixer. When shipping a Linux game on Steam, do not ship a build of SDL with your game. Link against SDL as normal, and expect it to be available on the player's system. This allows Valve to make fixes and improvements to their SDL and those fixes to flow on to your game.

We are obsessive about SDL2 having a backwards-compatible ABI. Whether you build your game using the Steam Runtime SDK or just about any old copy of SDL2, it should work with the one that ships with Steam.

In fact, it's not a bad idea to just copy the SDL build out of the Steam Runtime if you plan to ship a Linux game for non-Steam platforms, too, since you know it's definitely built sanely.

Windows XP/Vista/7/8/10

SDL currently provides Visual Studio project files for Visual Studio 2008, 2010, 2012, and 2013 in various flavors, and the CMake files can often generate project files for other Windows compilers. Win32 and Win64 are both supported, and we support any Windows version back to Windows XP.

As of SDL 2.0.3, the codebase still compiles on Cygwin and MingW32, but we expect these to stop working in the future. MingW64 is still supported (and despite the name, can also build 32-bit binaries). Note that the Visual Studio builds produce standard Windows .DLLs, which are usable with any compiler that can link to them, and we care about making sure the public SDL headers work with any compiler, but making sure SDL itself builds with some of these compilers has become time-consuming and messy for diminishing returns. For simple fixes, we will always accept patches, though!

On Windows, SDL does not depend on a C runtime at all, not even for malloc(). This means it's possible to build SDL with almost any Windows compiler and have it work with a program built with any other. Furthermore, it means that SDLmain (the small static .lib file that optionally provides WinMain()) does not force you to deal with Debug vs Release builds in your app, since it doesn't need either a Debug or Release C runtime. One .lib should work everywhere.

Our buildbot tries to build for Win32 for each commit, and uploads successful Visual Studio 2010 builds to a public webserver. If you want to grab these, it can save you time, if you just want to use a bleeding-edge SDL2.dll without compiling one yourself. You can grab the prebuilt library here .. the number represents the Buildbot build number; the bigger the number, the newer the build. These builds should work with just about any Windows compiler. We don't promise anything about the quality of these builds, though, and welcome feedback to improve them. Unzip the archive, point your project at its 'include' directory for headers, and link against SDL2.lib (and optionally, SDLmain.lib if you want SDL to provide a WinMain() that calls your standard Unix-like main() function). Distribute the SDL2.dll with your app's .exe file, and you're good to go!

Mac OS X

You can build for Mac OS X 'the Unix way' with the configure or CMake scripts, and Xcode projects are also provided. You can ship an SDL.framework, or just build the .dylib file and ship it with an appropriate install_name to ship beside your program's binary.

If you are building 'the Unix way,' we encourage you to use build-scripts/gcc-fat.sh in the SDL source tree for your compiler:

Imp

```mkdir build ; cd build ; CC=/where/i/cloned/SDL/build-scripts/gcc-fat.sh ./configure ; make```

This will accomplish two important things. First, it will build an x86/x86-64 'universal' version of the library. Second, it will make sure the library is compiled and linked with -mmacosx-version-min=10.5, so that the library will work on any Mac OS X version back to 10.5.0, regardless of what version of Xcode you compiled on and what platform SDK. Without this, you are likely to build something that only works on the latest version of Mac OS X!

SDL2 has dropped support for PowerPC Macs and OS X versions older than 10.5 (SDL 1.2 still supports PPC and 10.0, though). That being said, some small changes can make it work, but they make the codebase uglier for small gains, and it's getting hard to find older macs to test on, so we probably will not be restoring official support.

Haiku

Build SDL 'the Unix way' with the configure or CMake scripts. SDL2 can be built with either Haiku's gcc4 compiler or their legacy, BeOS-compatible gcc 2.95.

To build and install SDL locally, run:

```mkdir build ; cd build ; ./configure --prefix=$HOME/config/non-packaged; make install```

iOS

SDL supports iOS 5.1.1+ and ships with iOS project files (in the Xcode-iOS directory) which will produce a static library. This library should be usable across all supported iOS devices (including iPhones, iPods, and iPads), and the emulator. Just load the Xcode project and click 'Build.'

Android

SDL supports Android 2.3.3+.

See Building SDL2 for Android.

Raspberry Pi

If you want to build SDL on your Raspberry Pi directly, just build it 'the Unix way,' as the RPi is, more or less, a standard Linux system. It can be built with X11 support, and also can do OpenGL ES rendering directly to the screen without an X server, to save resources. In theory, Wayland could also be supported, but at the time of this writing it doesn't configure/compile correctly (send patches!).

Our buildbot tries to build for Raspberry Pi for each commit, and uploads successful builds to a public webserver. If you want to grab these, it can save you time, especially if you're building on the RPi itself. You can grab the prebuilt library here .. the number represents the Buildbot build number; the bigger the number, the newer the build. These are built with a cross-compiler, with some version of Raspbian in mind, but should work with almost any RPi distro and in a cross-compiler environment, too. We don't promise anything about the quality of these builds, though, and welcome feedback to improve them. Unpack the tarball in the root of your filesystem and it'll install headers, libraries, and sdl2-config in /usr/local (or install wherever).

The actual shell script our buildbot uses to run the Raspberry Pi build is build-scripts/raspberrypi-buildbot.sh in the SDL source tree. It expects a cross-compiler in /opt/rpi-tools and a copy of the root filesystem from a RPi in /opt/rpi-sysroot. You can see some current quirks we work around in there (send patches!).

NaCL

SDL can target Google Chrome's Native Client, aka 'NaCL', which is, more or less, native binaries as web apps. We've tested with 'PNaCL' specifically, but you can probably make this work with other compilers too.

Please see docs/README-nacl.md for more details, including how to use our build scripts to generate an SDL build.

Our buildbot tries to build for Native Client for each commit, and uploads successful builds to a public webserver. If you want to grab these, it can save you some hassle. You can grab the prebuilt library here .. the number represents the Buildbot build number; the bigger the number, the newer the build. We don't promise anything about the quality of these builds, and welcome feedback to improve them. Unpack the tarball in the root of your filesystem and it'll install headers, libraries, and sdl2-config in /usr/local (or install wherever).

Emscripten

SDL, as of 2.0.4, can be built with Emscripten, so you can compile your SDL2-based C/C++ application to JavaScript/asm.js/WebAssembly, and render with OpenGL ES 2 (which becomes WebGL calls in the end). This port is currently considered experimental, but is already very promising; Humble Bundle is shipping several games as web apps that use it.

This port is generally built 'the Unix way,' but with a little wrapper script over the configure script or CMake to smooth out some quirks. At the end, you should have a libSDL2.a static library to link against your Emscripten-compiled app.

Please see docs/README-emscripten.md for more details.

Also note that Emscripten has a simple implementation of SDL 1.2's API built in. This is written by hand in JavaScript and is unrelated to the SDL codebase. The SDL2 port literally uses Emscripten to compile SDL's C code and link it to your app.

Our buildbot tries to build with Emscripten for each commit, and uploads successful builds to a public webserver. If you want to grab these, it can save you some hassle. You can grab the prebuilt library here .. the number represents the Buildbot build number; the bigger the number, the newer the build. Textless adventure mac os. We don't promise anything about the quality of these builds, and welcome feedback to improve them. Unpack the tarball in the root of your filesystem and it'll install headers, libraries, and sdl2-config in /usr/local (or install wherever).

Nintendo Switch

SDL2 runs on the Nintendo Switch! There are commercial games shipping with this port. This port is kept in a separate repository, but is available for free, under the zlib license, to anyone that is under NDA for Switch development with Nintendo. Please contact Ryan (icculus at icculus dot org) for details.

WinRT/UWP/Windows 8/Windows 10/WinPhone

There are Visual Studio project files for Windows Phone, WinRT version 8.1 (using Visual Studio 2013) and UWP (using Visual Studio 2015). These are in the 'VisualC-WinRT' directory.

WinRT isn't hooked up to our buildbot yet (soon!), but the .bat file we intend to use with it is build-scripts/winrtbuild.bat in the SDL source tree. This will use PowerShell to do some magic, which you can see in build-scripts/winrtbuild.ps1. At least in theory, this should Just Work if you have Windows 8.1, Visual C++ 2013, and the Win8/WinPhone/etc SDKs installed. The script will try to build all reasonable variants (ARM, x86, etc).

QNX

QNX is supported. Our buildbot compiles for QNX on ARM, ARM64, x86, and x86_64 on each commit. You can build for this platform 'the unix way.'

Ouya

SDL apps work on the Ouya! Just build like a standard Android application and side-load it on the device to test.

Not supported or abandoned

If your favorite system is listed below, we aren't working on it. If you send reasonable patches, we are happy to take a look, though! SDL 1.2's API and feature set is different than SDL 2 (dramatically different in some cases), but it's possible that 1.2 still supports some of these systems.

Consoles (PlayStation, XBox, Wii, etc)

SDL2 does not currently support (most of) these platforms, but we'd really like to! If you work for Sony, Microsoft, or Nintendo, we would like to port SDL2 to these platforms and provide support to registered developers in a separate repository. Please get in touch with us!

BeOS

This probably works, or could be made to work, using the Haiku target, but there are no plans to do so. SDL 1.2 still supports BeOS.

Nintendo DS

This worked at some point using a homebrew toolkit, but we removed it due to bitrot. There's some rudimentary support in SDL 1.2.

Pandora

This worked at some point.

Sony PSP

This worked at some point using a homebrew toolkit, and while it is currently still in the source tree, no one is working on it. 1.2 did not support the PSP either. We will likely remove this from SDL2 sooner than later, unless a maintainer steps up to improve support.

Mac OS 9 ('Mac OS Classic')

Support was removed in SDL 2.0. SDL 1.2 still supports Mac OS Classic.

IBM OS/2 and eComStation and ArcaOS

Support was removed in SDL 2.0. SDL 1.2 still supports OS/2. Our buildbot still builds SDL2 for OS/2 on every commit, but it's just compiling the core source files; we don't have video, audio, etc backends for the platform. Send patches, please!

Windows 95/98/ME

Support was removed in SDL 2.0 (Windows XP and later are supported). SDL 1.2 still supports Win9x.

AmigaOS and MorphOS

Support was removed in SDL 2.0 (and later versions of 1.2, too). There are forks of SDL 1.2 that support them, though.

Dreamcast

Support was removed in SDL 2.0. SDL 1.2 had limited homebrew support for the Dreamcast.

Atari MiNT

Disenchant Imp Mac OS

```mkdir build ; cd build ; CC=/where/i/cloned/SDL/build-scripts/gcc-fat.sh ./configure ; make```

This will accomplish two important things. First, it will build an x86/x86-64 'universal' version of the library. Second, it will make sure the library is compiled and linked with -mmacosx-version-min=10.5, so that the library will work on any Mac OS X version back to 10.5.0, regardless of what version of Xcode you compiled on and what platform SDK. Without this, you are likely to build something that only works on the latest version of Mac OS X!

SDL2 has dropped support for PowerPC Macs and OS X versions older than 10.5 (SDL 1.2 still supports PPC and 10.0, though). That being said, some small changes can make it work, but they make the codebase uglier for small gains, and it's getting hard to find older macs to test on, so we probably will not be restoring official support.

Haiku

Build SDL 'the Unix way' with the configure or CMake scripts. SDL2 can be built with either Haiku's gcc4 compiler or their legacy, BeOS-compatible gcc 2.95.

To build and install SDL locally, run:

```mkdir build ; cd build ; ./configure --prefix=$HOME/config/non-packaged; make install```

iOS

SDL supports iOS 5.1.1+ and ships with iOS project files (in the Xcode-iOS directory) which will produce a static library. This library should be usable across all supported iOS devices (including iPhones, iPods, and iPads), and the emulator. Just load the Xcode project and click 'Build.'

Android

SDL supports Android 2.3.3+.

See Building SDL2 for Android.

Raspberry Pi

If you want to build SDL on your Raspberry Pi directly, just build it 'the Unix way,' as the RPi is, more or less, a standard Linux system. It can be built with X11 support, and also can do OpenGL ES rendering directly to the screen without an X server, to save resources. In theory, Wayland could also be supported, but at the time of this writing it doesn't configure/compile correctly (send patches!).

Our buildbot tries to build for Raspberry Pi for each commit, and uploads successful builds to a public webserver. If you want to grab these, it can save you time, especially if you're building on the RPi itself. You can grab the prebuilt library here .. the number represents the Buildbot build number; the bigger the number, the newer the build. These are built with a cross-compiler, with some version of Raspbian in mind, but should work with almost any RPi distro and in a cross-compiler environment, too. We don't promise anything about the quality of these builds, though, and welcome feedback to improve them. Unpack the tarball in the root of your filesystem and it'll install headers, libraries, and sdl2-config in /usr/local (or install wherever).

The actual shell script our buildbot uses to run the Raspberry Pi build is build-scripts/raspberrypi-buildbot.sh in the SDL source tree. It expects a cross-compiler in /opt/rpi-tools and a copy of the root filesystem from a RPi in /opt/rpi-sysroot. You can see some current quirks we work around in there (send patches!).

NaCL

SDL can target Google Chrome's Native Client, aka 'NaCL', which is, more or less, native binaries as web apps. We've tested with 'PNaCL' specifically, but you can probably make this work with other compilers too.

Please see docs/README-nacl.md for more details, including how to use our build scripts to generate an SDL build.

Our buildbot tries to build for Native Client for each commit, and uploads successful builds to a public webserver. If you want to grab these, it can save you some hassle. You can grab the prebuilt library here .. the number represents the Buildbot build number; the bigger the number, the newer the build. We don't promise anything about the quality of these builds, and welcome feedback to improve them. Unpack the tarball in the root of your filesystem and it'll install headers, libraries, and sdl2-config in /usr/local (or install wherever).

Emscripten

SDL, as of 2.0.4, can be built with Emscripten, so you can compile your SDL2-based C/C++ application to JavaScript/asm.js/WebAssembly, and render with OpenGL ES 2 (which becomes WebGL calls in the end). This port is currently considered experimental, but is already very promising; Humble Bundle is shipping several games as web apps that use it.

This port is generally built 'the Unix way,' but with a little wrapper script over the configure script or CMake to smooth out some quirks. At the end, you should have a libSDL2.a static library to link against your Emscripten-compiled app.

Please see docs/README-emscripten.md for more details.

Also note that Emscripten has a simple implementation of SDL 1.2's API built in. This is written by hand in JavaScript and is unrelated to the SDL codebase. The SDL2 port literally uses Emscripten to compile SDL's C code and link it to your app.

Our buildbot tries to build with Emscripten for each commit, and uploads successful builds to a public webserver. If you want to grab these, it can save you some hassle. You can grab the prebuilt library here .. the number represents the Buildbot build number; the bigger the number, the newer the build. Textless adventure mac os. We don't promise anything about the quality of these builds, and welcome feedback to improve them. Unpack the tarball in the root of your filesystem and it'll install headers, libraries, and sdl2-config in /usr/local (or install wherever).

Nintendo Switch

SDL2 runs on the Nintendo Switch! There are commercial games shipping with this port. This port is kept in a separate repository, but is available for free, under the zlib license, to anyone that is under NDA for Switch development with Nintendo. Please contact Ryan (icculus at icculus dot org) for details.

WinRT/UWP/Windows 8/Windows 10/WinPhone

There are Visual Studio project files for Windows Phone, WinRT version 8.1 (using Visual Studio 2013) and UWP (using Visual Studio 2015). These are in the 'VisualC-WinRT' directory.

WinRT isn't hooked up to our buildbot yet (soon!), but the .bat file we intend to use with it is build-scripts/winrtbuild.bat in the SDL source tree. This will use PowerShell to do some magic, which you can see in build-scripts/winrtbuild.ps1. At least in theory, this should Just Work if you have Windows 8.1, Visual C++ 2013, and the Win8/WinPhone/etc SDKs installed. The script will try to build all reasonable variants (ARM, x86, etc).

QNX

QNX is supported. Our buildbot compiles for QNX on ARM, ARM64, x86, and x86_64 on each commit. You can build for this platform 'the unix way.'

Ouya

SDL apps work on the Ouya! Just build like a standard Android application and side-load it on the device to test.

Not supported or abandoned

If your favorite system is listed below, we aren't working on it. If you send reasonable patches, we are happy to take a look, though! SDL 1.2's API and feature set is different than SDL 2 (dramatically different in some cases), but it's possible that 1.2 still supports some of these systems.

Consoles (PlayStation, XBox, Wii, etc)

SDL2 does not currently support (most of) these platforms, but we'd really like to! If you work for Sony, Microsoft, or Nintendo, we would like to port SDL2 to these platforms and provide support to registered developers in a separate repository. Please get in touch with us!

BeOS

This probably works, or could be made to work, using the Haiku target, but there are no plans to do so. SDL 1.2 still supports BeOS.

Nintendo DS

This worked at some point using a homebrew toolkit, but we removed it due to bitrot. There's some rudimentary support in SDL 1.2.

Pandora

This worked at some point.

Sony PSP

This worked at some point using a homebrew toolkit, and while it is currently still in the source tree, no one is working on it. 1.2 did not support the PSP either. We will likely remove this from SDL2 sooner than later, unless a maintainer steps up to improve support.

Mac OS 9 ('Mac OS Classic')

Support was removed in SDL 2.0. SDL 1.2 still supports Mac OS Classic.

IBM OS/2 and eComStation and ArcaOS

Support was removed in SDL 2.0. SDL 1.2 still supports OS/2. Our buildbot still builds SDL2 for OS/2 on every commit, but it's just compiling the core source files; we don't have video, audio, etc backends for the platform. Send patches, please!

Windows 95/98/ME

Support was removed in SDL 2.0 (Windows XP and later are supported). SDL 1.2 still supports Win9x.

AmigaOS and MorphOS

Support was removed in SDL 2.0 (and later versions of 1.2, too). There are forks of SDL 1.2 that support them, though.

Dreamcast

Support was removed in SDL 2.0. SDL 1.2 had limited homebrew support for the Dreamcast.

Atari MiNT

Support was removed in SDL 2.0. SDL 1.2 still supports it.

Symbian

Support was removed in SDL 2.0. SDL 1.2 still supports it.

[edit|delete|history|feedback|raw]

[front page|index|search|recent changes|git repo|offline html]

All wiki content is licensed under Creative Commons Attribution 4.0 International (CC BY 4.0).
Wiki powered by ghwikipp.

Transferring Mac 10.9 Certificate Files

This page provides the following Mac 10.9 instructions:

For instructions about transferring Mac 10.7 certificate files, see How to Import and Export SSL Certificates in Mac 10.7.

How to Export Your SSL Certificates

  1. Open Keychain Access.

    In the Finder window, under Favorites, click Applications, click Utilities and then double-click Keychain Access.

  2. In the Keychain Access window, under Keychains, click System and then under Category, click Certificates.

  3. Hold down the command key and then select your SSL Certificate (e.g. yourdomain.com) and the corresponding Intermediate Certificate (e.g. DigiCert Secure Server CA).

  4. In the Keychain Access toolbar, click File > Export Items.

  5. In the 'Export' window, do the following:

    1. In the File Format drop-down list select Personal information Exchange (.p12).

      Note: A .p12 file uses the same format as a .pfx file.

    2. Click the up-arrow next to the Save As box and navigate to where you want to save the SSL Certificate .p12 file. Brave paradise mac os.

      Make sure to save the .p12 file in a location that you will remember.

    3. In the Save As box, name the certificate .p12 file (e.g. yourdomain.com) and click Save.

  6. In the 'Password' window, in the Password and Verify boxes, create and verify your password and then, click OK.

  7. Your SSL Certificate (with private key and corresponding Intermediate Certificate) has now been exported as a .p12 file.

How to Import Your SSL Certificate File (.p12 and .pfx)

  1. Open Keychain Access.

    In the Finder window, under Favorites, click Applications, click Utilities and then double-click Keychain Access.

  2. In the Keychain Access toolbar, click File > Import Items.

  3. In the Keychain Access window, in the Destination Keychain drop-down list, select System.

  4. Navigate to and select your SSL Certificate .p12 file (e.g. yourdomain.com.p12) and then, click Open.

  5. In the Keychain Access.. window, enter your admin Name and Password and then, click Modify Keychain.

  6. In the Enter the password.. window, in the Password box, type the password that you created when you exported your SSL Certificate (with private key and corresponding Intermediate Certificate) and then click OK.

  7. Your SSL Certificate (with private key and corresponding Intermediate Certificate) is now imported into your System keychain.

    Next, use the steps below to assign the new certificate to Services.

Disenchant Imp Mac Os Downloads

How to Assign a New SSL Certificate to Website Services

Disenchant Imp Mac Os Sierra

  1. Open the Server App.

    In the Finder window, under Favorites, click Applications and then double-click Server.

  2. In the Server window, do one of the following actions to select the server to which you imported your SSL Certificate.

    • To assign the certificate to Services on this server

      1. Select This Mac – YourServerName and then click Continue.

      2. Enter your Administrator Name and Administrator Password and then click Connect.

    • To assign the certificate to Services on another server

      1. Select Other Mac and then click Continue.

      2. Enter your Host Name or IP Address, your Administrator Name and Administrator Password, and then click Connect.

  3. In the Server window, under Server, click Certificates.

  4. On the Certificates page, in the Secure services using drop-down list, select Custom.

  5. In the Service Certificates window, in the Certificate drop-down list, select your imported SSL Certificate for each Service to which you want to assign it.

    For example, in the Certificate drop-down list for Websites (Server Website – SSL) select your imported SSL Certificate.

  6. Bahamian rhapsody mac os. When you are finished, click OK.

  7. Your SSL Certificate should now be assigned to your respective Services.

Test Your Installation

If your website is publicly accessible, our DigiCert® SSL Installation Diagnostics Tool can help you diagnose common problems.

Ready to Order Your Mac OS X Mavericks SSL Certificate

Buy NowLearn More

Mac Os Versions






broken image