Changes between Version 3 and Version 4 of Getting_Started_Using


Ignore:
Timestamp:
Mar 12, 2007 9:38:25 PM (17 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting_Started_Using

    v3 v4  
    8383    1. If you notice there are spaces towards the bottom of the file (before {{{$(CC)}}} and {{{rm}}}, these are a single tab, not spaces. '''This is important''', or otherwise '''make''' command will fail with "'''missing separator'''" error. 
    8484    1. Change {{{myapp.cpp}}} to your source filename. 
     85    1. If you're using version 0.5.10.1 or older, then you may encounter link error with '''-lasound''' or '''-lssl'''. You may remove this from your Makefile (this is the limitation of 0.5.10.1 build system, which has been fixed in 0.5.10.2). 
    8586 1. Create {{{myapp.cpp}}} in the same directory as your {{{Makefile}}}. At minimum, it may look like this: 
    8687{{{ 
     
    106107If you're having any problems or encounter some errors with above instructions, first please watch carefully the error messages that are printed to the screen. The error messages printed by the gcc or '''make''' normally should contain useful information about the error and how to fix it. 
    107108 
    108 If you like more help, you can report it to PJSIP mailing list. Don't forget to include the details of the error (such as copy/paste the compiler command and error output), because without this we simply wouldn't know how to help! 
     109If you like more help, you can report the error to PJSIP mailing list. Don't forget to include the details of the error (such as copy/paste the compiler command and error output), because without this we simply wouldn't know how to help! 
    109110 
    110111 
    111112== Credits == 
    112113 
    113 Thanks Binu KS <binuks -at- gmail dot com> for the initial tutorial. 
     114Thanks Binu KS <binuks -at- gmail dot com> for the initial tutorial in the PJSIP mailing list.