mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-27 20:59:50 +00:00
cleanup
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@207 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
b4845b9ff1
commit
c394ef828c
@ -17,7 +17,7 @@ endif
|
|||||||
|
|
||||||
if ISMAC
|
if ISMAC
|
||||||
SOLINK=-dynamic -bundle -undefined suppress -force_flat_namespace
|
SOLINK=-dynamic -bundle -undefined suppress -force_flat_namespace
|
||||||
AM_CFLAGS += -DMACOSX -DBIGENDIAN
|
AM_CFLAGS += -DMACOSX -DSWAP_LINEAR
|
||||||
else
|
else
|
||||||
SOLINK=-shared -Xlinker -x
|
SOLINK=-shared -Xlinker -x
|
||||||
endif
|
endif
|
||||||
|
@ -39,7 +39,7 @@ POST_UNINSTALL = :
|
|||||||
build_triplet = @build@
|
build_triplet = @build@
|
||||||
host_triplet = @host@
|
host_triplet = @host@
|
||||||
@ISLINUX_TRUE@am__append_1 = -Wl,-E
|
@ISLINUX_TRUE@am__append_1 = -Wl,-E
|
||||||
@ISMAC_TRUE@am__append_2 = -DMACOSX -DBIGENDIAN
|
@ISMAC_TRUE@am__append_2 = -DMACOSX -DSWAP_LINEAR
|
||||||
bin_PROGRAMS = freeswitch$(EXEEXT)
|
bin_PROGRAMS = freeswitch$(EXEEXT)
|
||||||
DIST_COMMON = README $(am__configure_deps) $(library_include_HEADERS) \
|
DIST_COMMON = README $(am__configure_deps) $(library_include_HEADERS) \
|
||||||
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
||||||
|
@ -296,7 +296,7 @@ static switch_status channel_outgoing_channel(switch_core_session *session, swit
|
|||||||
{
|
{
|
||||||
if ((*new_session = switch_core_session_request(&channel_endpoint_interface, NULL))) {
|
if ((*new_session = switch_core_session_request(&channel_endpoint_interface, NULL))) {
|
||||||
struct private_object *tech_pvt;
|
struct private_object *tech_pvt;
|
||||||
switch_channel *channel, *orig_channel;
|
switch_channel *channel;
|
||||||
switch_caller_profile *caller_profile;
|
switch_caller_profile *caller_profile;
|
||||||
|
|
||||||
if ((tech_pvt = (struct private_object *) switch_core_session_alloc(*new_session, sizeof(struct private_object)))) {
|
if ((tech_pvt = (struct private_object *) switch_core_session_alloc(*new_session, sizeof(struct private_object)))) {
|
||||||
|
@ -343,7 +343,7 @@ SWITCH_DECLARE(switch_status) switch_event_add_header(switch_event *event, switc
|
|||||||
|
|
||||||
header->name = DUP(header_name);
|
header->name = DUP(header_name);
|
||||||
header->value = DUP(data);
|
header->value = DUP(data);
|
||||||
if (stack = SWITCH_STACK_TOP) {
|
if ((stack = SWITCH_STACK_TOP)) {
|
||||||
header->next = event->headers;
|
header->next = event->headers;
|
||||||
event->headers = header;
|
event->headers = header;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user