Difference between revisions of "Freeswitch"
Jump to navigation
Jump to search
(deprecate old page -- replace with link to freeswitch wiki) |
(building FS on OpenBSD) |
||
Line 1: | Line 1: | ||
− | + | * Please see the official [http://wiki.freeswitch.org/ FreeSwitch wiki] | |
− | * | + | |
+ | == Building FreeSWITCH on OpenBSD 4.5/i386 == | ||
+ | Build not yet completed, but this is the current process: | ||
+ | |||
+ | * You '''MUST''' use autoconf 2.59 (untested: 2.60, 2.61; confirmed not working: 2.62) | ||
+ | * You '''MUST''' patch sqlite like this: | ||
+ | |||
+ | Index: libs/sqlite/src/sqliteInt.h | ||
+ | =================================================================== | ||
+ | --- libs/sqlite/src/sqliteInt.h (revision 14389) | ||
+ | +++ libs/sqlite/src/sqliteInt.h (working copy) | ||
+ | @@ -61,6 +61,7 @@ | ||
+ | #include "hash.h" | ||
+ | #include "parse.h" | ||
+ | #include <stdio.h> | ||
+ | +#include <stdint.h> | ||
+ | #include <stdlib.h> | ||
+ | #include <string.h> | ||
+ | #include <assert.h> |
Revision as of 15:42, 27 July 2009
- Please see the official FreeSwitch wiki
Building FreeSWITCH on OpenBSD 4.5/i386
Build not yet completed, but this is the current process:
- You MUST use autoconf 2.59 (untested: 2.60, 2.61; confirmed not working: 2.62)
- You MUST patch sqlite like this:
Index: libs/sqlite/src/sqliteInt.h =================================================================== --- libs/sqlite/src/sqliteInt.h (revision 14389) +++ libs/sqlite/src/sqliteInt.h (working copy) @@ -61,6 +61,7 @@ #include "hash.h" #include "parse.h" #include <stdio.h> +#include <stdint.h> #include <stdlib.h> #include <string.h> #include <assert.h>