Page 1 of 1

How to compile h323plus source code?

Posted: Sat Aug 09, 2014 4:37 pm
by siguadao
I have downloaded h323plus-v1_26_0 source code and ptlib-2.12.8 source code from http://www.h323plus.org.
Then I compiled them in linux as what saied in 'Simple H323Plus/OpenH323 Tutorial' (http://www.toncar.cz/openh323/tut/).
It's ok when compiling ptlib, but some errors occured when compiling h323plus source code then. These errors are like this:

[root@root h323plus]$ make bothdepend
make: *** No rule to make target `bothdepend'. Stop.
[root@root h323plus]$ make bothnoshared
make: *** No rule to make target `bothnoshared'. Stop.

Besides, I checked all files in ~/h323plus directory, I can't find 'Makefile', only 'Makefile.in'. I tried 'make -f Makefile.in', it's failed again.

How to compile h323plus source code ? I certainly would appreciate some helps here. Thank you.

Re: How to compile h323plus source code?

Posted: Sun Aug 10, 2014 6:53 am
by shorne
try make optnoshared

Re: How to compile h323plus source code?

Posted: Sun Aug 10, 2014 7:04 am
by willamowius
You probably forgot to run "./configure" before make or something went wrong with it.

"make bothdepend" and "make bothnoshared" should work.

Re: How to compile h323plus source code?

Posted: Fri Aug 29, 2014 3:33 pm
by siguadao
willamowius wrote:You probably forgot to run "./configure" before make or something went wrong with it.

"make bothdepend" and "make bothnoshared" should work.
You're right. I had run "./configure", but it failed. I paied no attention to it so compilation process is nok.

I modified some files then it worked. I'm trying to solve the other compile errors now.

Thank you very much.