aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-04-22 22:10:17 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-04-22 22:10:17 +0000
commit9dae2747e3a106ee65219006fb4ac49a6a78ee98 (patch)
tree418099c092e1ba33e43402d57d956b49041f7fe3 /utils
parent3e8040b6c69bcc1cd5f9b9dd7193088f3255a6a7 (diff)
Make utils/ stuff *actually* compile this time.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@258674 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile2
-rw-r--r--utils/extconf.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/utils/Makefile b/utils/Makefile
index 24fb97403..1981fb2e2 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -147,7 +147,7 @@ aelparse.c: $(ASTTOPDIR)/res/ael/ael_lex.c
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)/,,$<) -> $@"
diff --git a/utils/extconf.c b/utils/extconf.c
index f1f92fdd4..826d22ca4 100644
--- a/utils/extconf.c
+++ b/utils/extconf.c
@@ -2821,6 +2821,7 @@ static struct timeval tvfix(struct timeval a)
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 @@ struct timeval ast_tvadd(struct timeval a, struct timeval b)
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 */