[asterisk-commits] qwell: trunk r258674 - in /trunk/utils: Makefile extconf.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Apr 22 17:10:21 CDT 2010
Author: qwell
Date: Thu Apr 22 17:10:17 2010
New Revision: 258674
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=258674
Log:
Make utils/ stuff *actually* compile this time.
Modified:
trunk/utils/Makefile
trunk/utils/extconf.c
Modified: trunk/utils/Makefile
URL: http://svnview.digium.com/svn/asterisk/trunk/utils/Makefile?view=diff&rev=258674&r1=258673&r2=258674
==============================================================================
--- trunk/utils/Makefile (original)
+++ trunk/utils/Makefile Thu Apr 22 17:10:17 2010
@@ -147,7 +147,7 @@
aelparse.o: _ASTCFLAGS+=-I$(ASTTOPDIR)/res -Wno-unused
aelparse: LIBS+=-lm
-aelparse: aelparse.o aelbison.o pbx_ael.o hashtab.o lock.o utils.o ael_main.o ast_expr2f.o ast_expr2.o strcompat.o pval.o extconf.o
+aelparse: aelparse.o aelbison.o pbx_ael.o hashtab.o lock.o ael_main.o ast_expr2f.o ast_expr2.o strcompat.o pval.o extconf.o
astobj2.c: $(ASTTOPDIR)/main/astobj2.c
$(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
Modified: trunk/utils/extconf.c
URL: http://svnview.digium.com/svn/asterisk/trunk/utils/extconf.c?view=diff&rev=258674&r1=258673&r2=258674
==============================================================================
--- trunk/utils/extconf.c (original)
+++ trunk/utils/extconf.c Thu Apr 22 17:10:17 2010
@@ -2821,6 +2821,7 @@
return a;
}
+struct timeval ast_tvadd(struct timeval a, struct timeval b);
struct timeval ast_tvadd(struct timeval a, struct timeval b)
{
/* consistency checks to guarantee usec in 0..999999 */
@@ -2835,6 +2836,7 @@
return a;
}
+struct timeval ast_tvsub(struct timeval a, struct timeval b);
struct timeval ast_tvsub(struct timeval a, struct timeval b)
{
/* consistency checks to guarantee usec in 0..999999 */
More information about the asterisk-commits
mailing list