VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
astmac at stillnewt.org Guest
|
Posted: Thu Jan 15, 2009 5:03 pm Post subject: [Freeswitch-users] Starting FS on OSX |
|
|
Hello again FreeSwitchers,
I have built the 1.02 on 10.4.11(OSX) and had no problems with that.
I have never been able to build from the SVN, but that is another story.
Now that I have migrated to 1.02 I was wondering if I can get some
help on a long standing issue I have with starting FS at boot.
I am hoping to use Launchd which is the standard on OSX 10.4 and I
attempted to cobble together a script, but haven't had great results.
I did search for wiki entries on this, but haven't found any help with
it.
Ideas?
Thanks,
Marty
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
krice at suspicious.org Guest
|
Posted: Thu Jan 15, 2009 6:07 pm Post subject: [Freeswitch-users] Starting FS on OSX |
|
|
Have you looked at creating a system level startup item in
/Library/StartupItems ?
Also, to build from source you need the latest DevTools Kit from apple
installed. (I don't know if the latest will work w/ 10.4)
Ken
On 1/15/09 3:54 PM, "Martin Joseph" <astmac@stillnewt.org> wrote:
Quote: | Hello again FreeSwitchers,
I have built the 1.02 on 10.4.11(OSX) and had no problems with that.
I have never been able to build from the SVN, but that is another story.
Now that I have migrated to 1.02 I was wondering if I can get some
help on a long standing issue I have with starting FS at boot.
I am hoping to use Launchd which is the standard on OSX 10.4 and I
attempted to cobble together a script, but haven't had great results.
I did search for wiki entries on this, but haven't found any help with
it.
Ideas?
Thanks,
Marty
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
mike at jerris.com Guest
|
Posted: Thu Jan 15, 2009 6:11 pm Post subject: [Freeswitch-users] Starting FS on OSX |
|
|
Your build issue is with your autotools install, I have seen issues if
you have ever installed any of the autotools from macports or fink.
If you want to build from svn you can run bootstrap on another box (a
linux box perhaps) and then tar up that dir and move it to your mac.
We pre-bootstrap the release tarballs which is why that is building
fine for you.
MIke
On Jan 15, 2009, at 4:54 PM, Martin Joseph wrote:
Quote: | Hello again FreeSwitchers,
I have built the 1.02 on 10.4.11(OSX) and had no problems with that.
I have never been able to build from the SVN, but that is another
story.
Now that I have migrated to 1.02 I was wondering if I can get some
help on a long standing issue I have with starting FS at boot.
I am hoping to use Launchd which is the standard on OSX 10.4 and I
attempted to cobble together a script, but haven't had great results.
I did search for wiki entries on this, but haven't found any help with
it.
Ideas?
Thanks,
Marty
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
astmac at stillnewt.org Guest
|
Posted: Fri Jan 16, 2009 1:32 am Post subject: [Freeswitch-users] Starting FS on OSX |
|
|
On Jan 15, 2009, at 3:10 PM, Michael Jerris wrote:
Quote: | Your build issue is with your autotools install, I have seen issues if
you have ever installed any of the autotools from macports or fink.
| I have never used Fink or Macports so that isn't it. In fact the
supposed statements made to the effect that FS will build from SVN
fine on 10.4 with the latest available apple dev tools is quite wrong
in my experience. I setup a virgin 10.4 and updated everything and had
many complaints from FS about tool versions.
Quote: |
If you want to build from svn you can run bootstrap on another box (a
linux box perhaps) and then tar up that dir and move it to your mac.
| Huh, interesting.
Quote: |
We pre-bootstrap the release tarballs which is why that is building
fine for you.
| Right, Thanks for all your efforts and an outstanding platform!
Marty
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
ivan at myrvold.org Guest
|
Posted: Fri Jan 16, 2009 11:14 am Post subject: [Freeswitch-users] Starting FS on OSX |
|
|
I haven't tried using launchctl for FreeSWITCH. But when I saw your
post, I tried it out. I have no problem getting it to work:
I make a file "org.freeswitch.freeswitch.plist" and save it to ~/
Library/LaunchAgents with the following content:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd
">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>org.freeswitch.freeswitch</string>
<key>Program</key>
<string>/usr/local/freeswitch/bin/freeswitch</string>
<key>RunAtLoad</key>
<true/>
<key>ServiceIPC</key>
<true/>
</dict>
</plist>
Then in Terminal.app, I do a "launchctl load ~/Library/LaunchAgents/
org.freeswitch.freeswitch.plist"
If you do the same command, but unload instead of load, it should stop
freeswitch.
Does this work for you?
Ivan
Den 15. jan.. 2009 kl. 22:54 skrev Martin Joseph:
Quote: | Hello again FreeSwitchers,
I have built the 1.02 on 10.4.11(OSX) and had no problems with that.
I have never been able to build from the SVN, but that is another
story.
Now that I have migrated to 1.02 I was wondering if I can get some
help on a long standing issue I have with starting FS at boot.
I am hoping to use Launchd which is the standard on OSX 10.4 and I
attempted to cobble together a script, but haven't had great results.
I did search for wiki entries on this, but haven't found any help with
it.
Ideas?
Thanks,
Marty
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
shido6 at gmail.com Guest
|
Posted: Fri Jan 16, 2009 12:01 pm Post subject: [Freeswitch-users] Starting FS on OSX |
|
|
Please specify Intel or PPC.
-Greg M.
On Fri, Jan 16, 2009 at 1:29 AM, Martin Joseph <astmac@stillnewt.org> wrote:
Quote: |
On Jan 15, 2009, at 3:10 PM, Michael Jerris wrote:
Quote: | Your build issue is with your autotools install, I have seen issues if
you have ever installed any of the autotools from macports or fink.
| I have never used Fink or Macports so that isn't it. In fact the
supposed statements made to the effect that FS will build from SVN
fine on 10.4 with the latest available apple dev tools is quite wrong
in my experience. I setup a virgin 10.4 and updated everything and had
many complaints from FS about tool versions.
Quote: |
If you want to build from svn you can run bootstrap on another box (a
linux box perhaps) and then tar up that dir and move it to your mac.
| Huh, interesting.
Quote: |
We pre-bootstrap the release tarballs which is why that is building
fine for you.
| Right, Thanks for all your efforts and an outstanding platform!
Marty
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
astmac at stillnewt.org Guest
|
Posted: Fri Jan 16, 2009 2:22 pm Post subject: [Freeswitch-users] Starting FS on OSX |
|
|
On Jan 16, 2009, at 5:45 AM, Shido Xavier wrote:
Quote: | Please specify Intel or PPC.
|
Very good point and I had had that thought as well.
I am on PPC 10.4.11.
Thanks for any help or ideas.
Marty
Quote: |
-Greg M.
On Fri, Jan 16, 2009 at 1:29 AM, Martin Joseph
<astmac@stillnewt.org> wrote:
Quote: |
On Jan 15, 2009, at 3:10 PM, Michael Jerris wrote:
Quote: | Your build issue is with your autotools install, I have seen
issues if
you have ever installed any of the autotools from macports or fink.
| I have never used Fink or Macports so that isn't it. In fact the
supposed statements made to the effect that FS will build from SVN
fine on 10.4 with the latest available apple dev tools is quite wrong
in my experience. I setup a virgin 10.4 and updated everything and
had
many complaints from FS about tool versions.
Quote: |
If you want to build from svn you can run bootstrap on another box
(a
linux box perhaps) and then tar up that dir and move it to your mac.
| Huh, interesting.
Quote: |
We pre-bootstrap the release tarballs which is why that is building
fine for you.
| Right, Thanks for all your efforts and an outstanding platform!
Marty
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|