[asterisk-commits] seanbright: branch group/asterisk-cpp r167250 - /team/group/asterisk-cpp/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Jan 6 12:15:50 CST 2009
Author: seanbright
Date: Tue Jan 6 12:15:49 2009
New Revision: 167250
URL: http://svn.digium.com/view/asterisk?view=rev&rev=167250
Log:
Just compile everything with g++
Modified:
team/group/asterisk-cpp/Makefile.rules
Modified: team/group/asterisk-cpp/Makefile.rules
URL: http://svn.digium.com/view/asterisk/team/group/asterisk-cpp/Makefile.rules?view=diff&rev=167250&r1=167249&r2=167250
==============================================================================
--- team/group/asterisk-cpp/Makefile.rules (original)
+++ team/group/asterisk-cpp/Makefile.rules Tue Jan 6 12:15:49 2009
@@ -82,12 +82,12 @@
ifneq ($(COMPILE_DOUBLE),yes)
%.o: %.c
$(ECHO_PREFIX) echo " [CC] $< -> $@"
- $(CMD_PREFIX) $(CC) -o $@ -c $< $(CC_CFLAGS) $(MAKE_DEPS)
+ $(CMD_PREFIX) $(CXX) -o $@ -c $< $(CXX_CFLAGS) $(MAKE_DEPS)
endif
%.i: %.c
$(ECHO_PREFIX) echo " [CPP] $< -> $@"
- $(CMD_PREFIX) $(CC) -o $@ -E $< $(CC_CFLAGS) $(MAKE_DEPS)
+ $(CMD_PREFIX) $(CXX) -o $@ -E $< $(CXX_CFLAGS) $(MAKE_DEPS)
%.oo: %.ii
$(ECHO_PREFIX) echo " [CXXi] $< -> $@"
More information about the asterisk-commits
mailing list