Created
May 15, 2012 17:17
-
-
Save cesare/2703414 to your computer and use it in GitHub Desktop.
Sample bash script to build PJSIP library for iphone SDK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
srcdir="${HOME}/src/pjproject-2.0-rc" | |
cd ${srcdir} | |
( | |
cat <<END | |
#define PJ_CONFIG_IPHONE 1 | |
#include <pj/config_site_sample.h> | |
END | |
) > pjlib/include/pj/config_site.h | |
./configure-iphone && make dep && make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment