[asterisk-commits] branch mogorman/asterisk-xmpp r23986 -
/team/mogorman/asterisk-xmpp/Makefile
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Mon May 1 12:30:51 MST 2006
Author: mogorman
Date: Mon May 1 14:30:50 2006
New Revision: 23986
URL: http://svn.digium.com/view/asterisk?rev=23986&view=rev
Log:
bring to normal makefile
Modified:
team/mogorman/asterisk-xmpp/Makefile
Modified: team/mogorman/asterisk-xmpp/Makefile
URL: http://svn.digium.com/view/asterisk/team/mogorman/asterisk-xmpp/Makefile?rev=23986&r1=23985&r2=23986&view=diff
==============================================================================
--- team/mogorman/asterisk-xmpp/Makefile (original)
+++ team/mogorman/asterisk-xmpp/Makefile Mon May 1 14:30:50 2006
@@ -57,7 +57,7 @@
#K6OPT = -DK6OPT
# Tell gcc to optimize the code
-OPTIMIZE+=#-O6
+OPTIMIZE+=-O6
else
# Stack backtraces, while useful for debugging, are incompatible with optimizations
ifeq (${OSARCH},Linux)
@@ -69,7 +69,7 @@
OVERWRITE=y
# Include debug and macro symbols in the executables (-g) and profiling info (-pg)
-DEBUG=-g3 -pg
+DEBUG=-g3 #-pg
# Set NOCRYPTO to yes if you do not want to have crypto support or dependencies
#NOCRYPTO=yes
@@ -88,7 +88,7 @@
WITH_SMDI = 1
# Optional debugging parameters
-DEBUG_THREADS = -DDEBUG_THREADS #-DDUMP_SCHEDULER #-DDEBUG_SCHEDULER #-DDEBUG_THREADS #-DDO_CRASH #-DDETECT_DEADLOCKS
+DEBUG_THREADS = #-DDUMP_SCHEDULER #-DDEBUG_SCHEDULER #-DDEBUG_THREADS #-DDO_CRASH #-DDETECT_DEADLOCKS
# If you want to debug channel locking, try this (depends on code using
# ast_channel_lock and companions to work)
@@ -225,7 +225,7 @@
PROC=ultrasparc
OPTIONS+=$(shell if $(CC) -mtune=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mtune=$(PROC)"; fi)
OPTIONS+=$(shell if $(CC) -mcpu=v8 -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mcpu=v8"; fi)
- OPTIONS+=#-fomit-frame-pointer
+ OPTIONS+=-fomit-frame-pointer
endif
ifeq ($(PROC),arm)
@@ -329,7 +329,7 @@
ASTCFLAGS+= $(BUSYDETECT)
ASTCFLAGS+= $(OPTIONS)
ifeq ($(findstring dont-optimize,$(MAKECMDGOALS)),)
-ASTCFLAGS+= #-fomit-frame-pointer
+ASTCFLAGS+= -fomit-frame-pointer
endif
MOD_SUBDIRS=res channels pbx apps codecs formats cdr funcs
More information about the asterisk-commits
mailing list