I found a solution I had to modify the makefile in {PATH}/asterisk-1.2.22/channels/h323 to appear like the makefile in the earlier versions (eg. asterisk 1.2.13). I ran a make opt and then went to the aterisk directory and ran a make install and it installed the h323 channel. I however had to manually copy the h323.conf file out of the {PATH}/asterisk-1.2.22/channels/h323 directory and add it to my /etc/asterisk directory new config show below.
Please note the changes only occurred in the highlighted areas
Old Config [note make opt failed to run]
Makefile
Make file for OpenH323 support layer
Verify those options with main Makefile
STDCCFLAGS += -DNDEBUG
STDCCFLAGS += $(shell grep ^DEBUG_THREADS …/…/Makefile | sed -e “s/^DEBUG_THREADS[ ]=//" -e "s/([^#])#.*/\1/”)
STDCCFLAGS += -I…/…/include
STDCCFLAGS += -Wmissing-prototypes
STDCCFLAGS += -fPIC
#OPTCCFLAGS +=
CFLAGS += -pipe
TARGET += libchanh323.a
TARGET += Makefile.ast
SOURCES = ast_h323.cxx
OBJDIR = .
[color=darkblue]ifndef OPENH323DIR
OPENH323DIR=$(HOME)/openh323
endif
clean:
rm -f *.so *.o .depend
$(SOURCES):: $(SOURCES:.cxx=.cpp)
ln -f $< $@
$(SOURCES):: Makefile …/…/Makefile
touch $(SOURCES)
libchanh323.a: $(OBJS)
include $(OPENH323DIR)/openh323u.mak
ar crv $@ $(OBJS)
[/color]
Makefile.ast: FORCE
@echo H323CFLAGS = $(STDCCFLAGS) $(OPTCCFLAGS) $(CFLAGS) >$@.tmp
@echo H323LDFLAGS = $(CFLAGS) $(LDFLAGS) >>$@.tmp
@echo H323LDLIBS = $(LDLIBS) $(ENDLDLIBS) $(ENDLDFLAGS) >>$@.tmp
@if [ -r $@ ] && cmp -s $@ $@.tmp; then rm -f $@.tmp; else mv -f $@.tmp $@; fi
FORCE:
New Config (Makefile) [working make opt]
Makefile
Make file for OpenH323 support layer
Verify those options with main Makefile
STDCCFLAGS += -DNDEBUG
STDCCFLAGS += $(shell grep ^DEBUG_THREADS …/…/Makefile | sed -e “s/^DEBUG_THREADS[ ]=//" -e "s/([^#])#.*/\1/”)
STDCCFLAGS += -I…/…/include
STDCCFLAGS += -Wmissing-prototypes
STDCCFLAGS += -fPIC
#OPTCCFLAGS +=
CFLAGS += -pipe
TARGET += libchanh323.a
TARGET += Makefile.ast
SOURCES = ast_h323.cxx
OBJDIR = .
[color=darkred]ifndef OPENH323DIR
OPENH323DIR=$(HOME)/openh323
endif
include $(OPENH323DIR)/openh323u.mak
$(SOURCES):: $(SOURCES:.cxx=.cpp)
ln -f $< $@
$(SOURCES):: Makefile …/…/Makefile
touch $(SOURCES)
libchanh323.a: $(OBJS)
ar crv $@ $(OBJS)[/color]
Makefile.ast: FORCE
@echo H323CFLAGS = $(STDCCFLAGS) $(OPTCCFLAGS) $(CFLAGS) >$@.tmp
@echo H323LDFLAGS = $(CFLAGS) $(LDFLAGS) >>$@.tmp
@echo H323LDLIBS = $(LDLIBS) $(ENDLDLIBS) $(ENDLDFLAGS) >>$@.tmp
@if [ -r $@ ] && cmp -s $@ $@.tmp; then rm -f $@.tmp; else mv -f $@.tmp $@; fi
FORCE: