update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@346 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
484646d7a7
commit
5bb0fb601a
39
INSTALL
39
INSTALL
|
@ -1,18 +1,27 @@
|
||||||
|
UNIX:
|
||||||
|
|
||||||
|
1) Prepare Automake
|
||||||
|
./configure
|
||||||
|
|
||||||
|
2) Edit modules.conf and adjust to taste.
|
||||||
|
|
||||||
|
3) Choose one of the following:
|
||||||
|
|
||||||
|
Build The Entire Project (reccommended)
|
||||||
|
make everything
|
||||||
|
|
||||||
|
Build/Install All
|
||||||
|
make installall
|
||||||
|
|
||||||
|
Build Just The Core
|
||||||
|
make
|
||||||
|
|
||||||
|
Build Modules
|
||||||
|
make modules
|
||||||
|
|
||||||
|
Install Modiles
|
||||||
|
make install_mod
|
||||||
|
|
||||||
|
|
||||||
APR (> make apr)
|
Windows 32:
|
||||||
it will and download and build and install apr if needed but remember to make sure
|
|
||||||
/usr/local/apr/lib is in the LD_LIBRARY_PATH that's up to you
|
|
||||||
|
|
||||||
|
|
||||||
cp modules.conf.in modules.conf and edit to taste
|
|
||||||
|
|
||||||
if you want sip:
|
|
||||||
make sure mod_exosip is uncommeted in modules.conf
|
|
||||||
make common
|
|
||||||
make exosip
|
|
||||||
|
|
||||||
|
|
||||||
make; make install
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -93,7 +93,7 @@ freeswitch_SOURCES = src/switch.c
|
||||||
freeswitch_CFLAGS = $(AM_CFLAGS)
|
freeswitch_CFLAGS = $(AM_CFLAGS)
|
||||||
freeswitch_LDFLAGS = -lfreeswitch
|
freeswitch_LDFLAGS = -lfreeswitch
|
||||||
nodist_freeswitch_SOURCES = src/include/switch_version.h
|
nodist_freeswitch_SOURCES = src/include/switch_version.h
|
||||||
BUILT_SOURCES = version
|
BUILT_SOURCES = depends version
|
||||||
CLEANFILES = src/include/switch_version.h
|
CLEANFILES = src/include/switch_version.h
|
||||||
|
|
||||||
version: Makefile
|
version: Makefile
|
||||||
|
|
|
@ -300,7 +300,7 @@ freeswitch_SOURCES = src/switch.c
|
||||||
freeswitch_CFLAGS = $(AM_CFLAGS)
|
freeswitch_CFLAGS = $(AM_CFLAGS)
|
||||||
freeswitch_LDFLAGS = -lfreeswitch
|
freeswitch_LDFLAGS = -lfreeswitch
|
||||||
nodist_freeswitch_SOURCES = src/include/switch_version.h
|
nodist_freeswitch_SOURCES = src/include/switch_version.h
|
||||||
BUILT_SOURCES = version
|
BUILT_SOURCES = depends version
|
||||||
CLEANFILES = src/include/switch_version.h
|
CLEANFILES = src/include/switch_version.h
|
||||||
all: $(BUILT_SOURCES)
|
all: $(BUILT_SOURCES)
|
||||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||||
|
|
Loading…
Reference in New Issue