aboutsummaryrefslogtreecommitdiffstats
path: root/agi
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-15 17:16:00 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-15 17:16:00 +0000
commitfe9ed45b0562df0437454ec3ddd2132ba9fc4c07 (patch)
tree3f107f0203614eab20317d4d725f6b03f760b37a /agi
parent8d0211a11ec86c3df71f18606e2865d353209753 (diff)
Many Solaris fixes - this moves some of the stuff from utils.c to strcompat.c
Every OS uses strcompat now - this was done on purpose. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@42982 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'agi')
-rw-r--r--agi/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/agi/Makefile b/agi/Makefile
index c2e1c200c..08de2f751 100644
--- a/agi/Makefile
+++ b/agi/Makefile
@@ -16,17 +16,19 @@
AGIS=agi-test.agi eagi-test eagi-sphinx-test jukebox.agi
ifeq ($(OSARCH),SunOS)
- LIBS+=-lsocket -lnsl ../main/strcompat.o
+ LIBS+=-lsocket -lnsl
endif
include $(ASTTOPDIR)/Makefile.rules
all: $(AGIS)
-eagi-test: eagi-test.o
+eagi-test: eagi-test.o strcompat.o
eagi-sphinx-test: eagi-sphinx-test.o
+$(eval $(call ast_make_o_c,strcompat.o,../main/strcompat.c))
+
install: all
mkdir -p $(DESTDIR)$(AGI_DIR)
for x in $(AGIS); do $(INSTALL) -m 755 $$x $(DESTDIR)$(AGI_DIR) ; done