Hello, is there a chance to get app_transcode updated for asterisk 1.8?
I would also like to see some makefiles for the apps. I have attached a Makefile for app_rtsp. Thanks, Artem
PROJ = app_rtsp
OBJ = app_rtsp.o
CC = gcc
LD = gcc
STRIP = strip
RM = rm -f
CHMOD = chmod
INSTALL = install
DESTDIR =
CFLAGS += -Wextra -fPIC -DAST_MODULE=\"$(PROJ)\" -D_THREAD_SAFE -I.
-I/usr/include -O2 -DICONV_CONST="" -D__DEBUG__ -D__MANAGER__ -D__APP__
LDFLAGS +=
LIBS =
SOLINK = -shared -Xlinker -x
all : clean $(PROJ).so
install : all
$(INSTALL) -d $(DESTDIR)/usr/lib/asterisk/modules/
$(INSTALL) -m 755 $(PROJ).so $(DESTDIR)/usr/lib/asterisk/modules/
$(PROJ).so: $(OBJ)
$(LD) $(LDFLAGS) $(SOLINK) $(OBJ) $(LIBS) -o $@
$(CHMOD) 755 $@
.c.o :
$(CC) $(CFLAGS) -c $<
clean :
@$(RM) $(PROJ).so *.o *.core
smime.p7s
Description: Kryptographische S/MIME-Signatur
-- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-video mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-video
