This is the main page describing the process of installing and performing basic testing of FreeSWITCH™ and its prerequisites on OS X.
---
If you have not read the Mac OS X page please view it now. Installation instructions are provided for OS X 10.11, 10.10 and 10.9, instructions for older releases are no longer maintained and can be found at the Mac OS X Archive.
For purposes of this these instructions, each OS X release was built clean, not upgraded from a prior OS X release.
|
Systems that were upgraded from older software may have issues due to old parts of a prior OS X or Xcode still intact. In these cases a fresh OS X and Xcode install may required.
Upgraded OS X? Upgraded Xcode? Prerequisites Previously Installed Differently? If there are problems installing FreeSWITCH™, check if OS X or Xcode was upgraded from a very old release. The older the original system the more likely problems will occur, you may need to build OS X from scratch. |
This procedure installs a significant amount of software, all of it can be removed using the procedures at the bottom of this page. However, there may be times when parts of the Apple Command Line Tools, part of Xcode may remain. Although there is no problem leaving the CLT installed, If you want to remove them it's best to backup before starting this procedure.
We'll use the Terminal application extensively during installation and to start FreeSWITCH™ initially. You should make the following changes to save time during this procedure:
Installation of FreeSWITCH™ on OS X can be performed using the AppleScript installer, or manually.
The OS X FreeSWITCH™ Installer simplifies installation of FreeSWITCH™ on OS X by automating all of the manual steps, except for prompting for an administrator password. It creates logs that are useful in case of problems. The installer can be downloaded at Installation on OS X Using AppleScript.
Even if you use the OS X FreeSWITCH™ Installer it's a good idea to read the manual instructions so you know what the installer will add to the system.- |
A manual installation involves downloading and installing the following groups of software:
Simply Follow the steps below to perform an manual installation. There is some extra information for people who want it. If you're not too technical don't let the explanations intimidate you. Just follow the steps and FreeSWITCH™ should be installed in about an hour or two.
The OS X Developer Tools are composed of two parts, the Xcode OS X Software Developer Kit used to develop and test OS X GUI applications, and the Command Line Tools that provide LLVM, Clang, Git and other tools required to generate non-GUI applications such as FreeSWITCH™ and its prerequisites.
Click a link below for instructions on installing Xcode. The pages link back here to continue.
|
This section is used to allow the previous pages to return to this location. Do not remove this section.
OS X provides the /usr directory which contains subdirectories. This procedure adds the directory local to /usr as /usr/local where FreeSWITCH™ and its prerequisite source and runtime files are placed. These files are kept out of OS X supplied directories to allow easy removal of FreeSWITCH™ and its prerequisites.
OS X hides many Unix directories and files from the Finder including the directories created by this procedure. These files and directories can be unhidden so they appear on the desktop, Finder windows and file dialogs. Additional information and scripts for showing invisible files are in the Customization on OS X guide. View hidden files by running the lines below in Terminal:
defaults write com.apple.finder AppleShowAllFiles YES killall Finder |
The user name (owner) and group name of /usr/local and it's subdirectories must match the user and group FreeSWITCH™ will run under. This is typically the main user name of the Mac. View this information (yourname and yourgroup) by running the following command in Terminal:
ls -l ~/ |
The user name and group appear in the third and fourth columns. Now create the /usr/local and /usr/local/src directories, replace yourname and yourgroup with the ones obtained from the previous command:
cd /usr # Change to the /usr directory sudo mkdir local # Create the /usr/local directory sudo chown -R yourname:yourgroup local # Modify the owner of the /usr/local directory to yours mkdir local/src # Create the /usr/local/src directory FreeSWITCH™ source will be downloaded into |
You will access /usr/local often so it should be placed in the Finder "FAVORITES" sidebar for quick access. Navigate to the /usr/local folder in the Finder, then drag the local folder under "FAVORITES". Extra info: Even though OS X did not contain the /usr/local directory, /usr/local/bin is defined at the end of the default OS X path. The path is viewed by running "echo $PATH" in Terminal. If you don't understand this, don't worry, it doesn't affect anything. |
--
If OS X is 10.11 El Capitan or later: NEVER delete the local directory in /usr after it's created! It's very difficult to recreate, it must be restored from a backup. This is due to the "rootless" security starting with OS X 10.11. |
Additional programs are required to generate and run FreeSWITCH™. Most are installed using Homebrew, a package manager and its repository of products for OS X. Homebrew saves time since there is no need to locate packages and determine the version required for each OS X release. Homebrew's Git repository is maintained by volunteers.
Using the commands below the package manager and prerequisites install in under 10 minutes.
Homebrew installation is simple, the install command is found at the Homebrew home page and is listed below.
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" brew doctor |
The basic FreeSWITCH™ prerequisite packages are installed by running the following command in Terminal from any directory:
brew install autoconf automake curl jpeg ldns libsndfile libtool lua openssl pcre pkg-config speex sqlite |
Some packages produce keg-only messages which can be ignored. It means an alias (link) for the package was not placed into /usr/local/bin because brew found that OS X has another version installed. This is not a problem because the FreeSWITCH™ installation process searches Homebrew directories to find package. |
There are 4 additional FreeSWITCH™ required support packages not available from homebrew. There script below will install them into /usr/local for easy removal. Copy the text below, paste it into Textedit, and follow the instructions at the top of the text. Alternatively, the individual lines can be copied into Terminal and run one at a time, be sure to copy them exactly as they appear.
#!/bin/sh # This script can be run asis or separated into multiple scripts, and/or edited for different directories, or run one line at a time. # Example of how to use this script: # 1. Create /usr/local and /usr/local/src as documented in the OS X install wiki page # 2. Save this text on the Desktop as fssupport.command # 3. chmod +x ~/Desktop/fssupport.command # 4. Run command in terminal: . ~/Desktop/fssupport.command # # Prompts: None # OS_Version=$(sw_vers -productVersion | sed "s:.[[:digit:]]*.$::g") if [[ ${OS_Version} == 10.9 ]] | [[ ${OS_Version} == 10.10 ]] ; then # need extra homebrew package brew install nasm fi # cd /usr/local/src git clone https://freeswitch.org/stash/scm/sd/libflite.git cd libflite ./configure --prefix=/usr/local make make install # cd /usr/local/src git clone https://freeswitch.org/stash/scm/sd/libvpx.git cd libvpx ./configure --prefix=/usr/local make make install # cd /usr/local/src git clone https://freeswitch.org/stash/scm/sd/libyuv.git cd libyuv perl -pi -e s{PREFIX:=/usr}{PREFIX:=/usr/local} /usr/local/src/libyuvx/makefile perl -pi -e s{" -m 755 "}{" "} /usr/local/src/libyuvx/makefile perl -pi -e s{" -m 644 "}{" "} /usr/local/src/libyuvx/makefile make make install # cd /usr/local/src git clone https://freeswitch.org/stash/scm/sd/opus.git cd opus ./autogen.sh ./configure --prefix=/usr/local make make install exit 0 |
OS X is now ready to download and install FreeSWITCH™.
There are two versions of FreeSWITCH™ to choose from: the current release version recommended for production systems, and master containing the latest fixes and features used during development. The current release version is recommended unless you need newer features or patches added since the current release of FreeSWITCH™. Additional Information is located at Source Options.
This documentation is tested with the master version to keep it as recent as possible and to provide feedback to the developers. If there are problems the developers may request that you install the master version for diagnosis.
Download FreeSWITCH™ by switching to the src directory and invoking one of the "git clone" commands below. The git command will create the freeswitch directory in src (/usr/local/src/freeswitch) and download the FreeSWITCH™ source files.
cd /usr/local/src git clone -b v1.6 https://stash.freeswitch.org/scm/fs/freeswitch.git # The current production release version or git clone https://stash.freeswitch.org/scm/fs/freeswitch.git # The master/development version |
This step creates installation files based on the operating system and installed packages. ./bootstrap.sh creates many files such as modules.conf used to add optional functionality to FreeSWITCH™, while ./configure sets compilation options. Enter the following commands (each will run several minutes):
cd freeswitch # <- the new freeswitch directory created by the git clone process ./bootstrap.sh ./configure |
Optional functions are added to FreeSWITCH™ by editing the modules.conf file, this may be required as your FreeSWITCH™ configuration becomes more complex. Although not required, adding FLITE Text To Speech functionality is recommended. The easiest way to add the FLITE module is to paste and run the following line into Terminal:
perl -pi -e 's{#asr_tts/mod_flite}{asr_tts/mod_flite}' /usr/local/src/freeswitch/modules.conf |
If you prefer to manually edit the modules.conf file use this procedure:
If this is your first FreeSWITCH™ don't add more than the FLITE module. Some modules may have prerequisites in addition to what is listed in this procedure. |
This step compiles the programs and creates additional directories and files based on modules.conf. It can run longer than 10 minutes. While still in /usr/local/src/freeswitch compile FreeSWITCH™ with the following command:
make |
If there are no errors proceed, otherwise seek assistance from the FreeSWITCH-users mailing list
This creates the /usr/local/freeswitch runtime library and executable programs.
make install |
There are mandatory sound prompts and optional music on hold files. All must be downloaded to run the sample IVR. There are four versions available:
The cd sounds are recommended since all the sampling rates are provided resulting in fewer problems. Invoke the following command:
make cd-sounds-install cd-moh-install |
This optional step can be performed to save space by removing the temporary files created by make:
make clean |
The time has come to start FreeSWITCH™ in a Terminal window:
cd /usr/local/freeswitch/bin ./freeswitch |
There are many startup messages ending with some text boxes containing the names of the developers.
After all startup messages are displayed a command prompt appears, messages may continue as the prompt remains. Try a few FreeSWITCH™ commands:
version status sofia status |
If the commands return responses FreeSWITCH™ is working and you can continue with the next step.
Test using a physical SIP phone or soft phone such as Bria, or search the OS X App Store for "SIP" for a free download of Telephone. Setup the phone using the IP address of the Mac FreeSWITCH™ is running on. The port is 5060, user IDs 1000-1019 with a password of 1234 are pre-configured. Additional information is at Test Calls. Test as many functions as you can to experience the potential of FreeSWITCH™.
Issue the following command in the FreeSWITCH™ Terminal window:
shutdown |
FreeSWITCH™ may occasionally require updating due to new features, fixes, etc. To download the latest updates, compile FreeSWITCH™ and create updated runtime binaries, run the following two commands:
cd /usr/local/src/freeswitch git pull && make current |
To update Homebrew and its formulas run "brew update" in Terminal, this should be run prior to upgrading packages. To upgrade all packages, run "brew upgrade", or to upgrade a single package run "brew upgrade package-name" command.
Consider backing up modified or new configuration files you created! FreeSWITCH™ is completely removed by deleting the /usr/local/freeswitch and /usr/local/src/freeswitch directories using the Finder (drag to trash) or in Terminal:
rm -r /usr/local/freeswitch rm -r /usr/local/src/freeswitch |
Packages installed by Homebrew are listed using the "brew list" command. They are removed using the "brew uninstall package-name" command. To remove packages and Homebrew run the following in Terminal:
rm -rf /usr/local/Cellar /usr/local/.git && brew cleanup sudo rm -r /Library/Caches/Homebrew # (OS X prompts for the administrator password) |
Xcode is installed as an OS X package (directory) that looks like a single application file. To remove Xcode drag the application to the trash, empty it and restart OS X.
If the /usr/local directory existed prior to using this procedure it has to be examined to determine if the contents are deletable. If the instructions on this page were followed, and the /usr/local directory was created during this procedure, everything can be removed to roll back the system prior to using this procedure by performing these steps:
sudo rm -r /usr/local/* |
If OS X is 10.11 El Capitan or later: NEVER delete the local directory in /usr after it's created! It's very difficult to recreate, it must be restored from a backup. This is due to the "rootless" security starting with OS X 10.11. |
To reverse the show hidden files step, open the Terminal application and run each line below. All hidden files will disappear from the desktop, Finder and file dialogs.
defaults write com.apple.finder AppleShowAllFiles NO killall Finder |