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
|
||||
SOLINK=-dynamic -bundle -undefined suppress -force_flat_namespace
|
||||
AM_CFLAGS += -DMACOSX -DBIGENDIAN
|
||||
AM_CFLAGS += -DMACOSX -DSWAP_LINEAR
|
||||
else
|
||||
SOLINK=-shared -Xlinker -x
|
||||
endif
|
||||
|
|
|
@ -39,7 +39,7 @@ POST_UNINSTALL = :
|
|||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
@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)
|
||||
DIST_COMMON = README $(am__configure_deps) $(library_include_HEADERS) \
|
||||
$(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))) {
|
||||
struct private_object *tech_pvt;
|
||||
switch_channel *channel, *orig_channel;
|
||||
switch_channel *channel;
|
||||
switch_caller_profile *caller_profile;
|
||||
|
||||
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->value = DUP(data);
|
||||
if (stack = SWITCH_STACK_TOP) {
|
||||
if ((stack = SWITCH_STACK_TOP)) {
|
||||
header->next = event->headers;
|
||||
event->headers = header;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue