<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE></TITLE>
<META http-equiv=Content-Type content=text/html;charset=ISO-8859-2>
<META content="MSHTML 6.00.2800.1170" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>what does RTFM mean? Now I'm a little lost, but 
I'll read more, and then I'll try to do what you say.</FONT></DIV>
<DIV><FONT face=Arial size=2>Thanks everybody!</FONT></DIV>
<BLOCKQUOTE 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV 
  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
  <A title=jj@indie.org href="mailto:jj@indie.org">Jeremy McNamara</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>To:</B> <A 
  title=asterisk-users@lists.digium.com 
  href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</A> 
  </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Tuesday, May 20, 2003 6:06 PM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> Re: [Asterisk-Users] H323</DIV>
  <DIV><BR></DIV>You CANNOT use distro specific installs of Open H.323 and 
  PWLib!!!!!!!!!!!! Distro specific installs change the names of the library 
  files and have even been known to change code (debian).<BR><BR>Do yourself a 
  favor and RTFM, especially the Common Errors <A class=moz-txt-link-freetext 
  href="section:&nbsp;">section:&nbsp;</A> <BR><BR><A 
  class=moz-txt-link-freetext 
  href="http://www.openh323.org/build.html#unix&nbsp;&nbsp;">http://www.openh323.org/build.html#unix&nbsp;&nbsp;</A> 
  <BR><BR><BR>Jeremy McNamara<BR><BR><BR><BR><BR>Paweł Gołaszewski wrote:<BR>
  <BLOCKQUOTE cite=midPine.LNX.4.51L.0305201738510.23548@piorun.ds.pg.gda.pl 
  type="cite"><PRE wrap="">On Tue, 20 May 2003, Jeremy McNamara wrote:
  </PRE>
    <BLOCKQUOTE type="cite"><PRE wrap="">First  cd asterisk/channels/h323 and eyeball the README. Then you need 
to spend some time reading:  <A class=moz-txt-link-freetext href="http://www.openh323.org">http://www.openh323.org</A>.

It all boils down to properly compiling PWLib, Open H.323 and compiling
and installing chan_h323
    </PRE></BLOCKQUOTE><PRE wrap=""><!---->
...and if you want to use openh323 and pwlib from your favourite distro - 
take this patch (made against latest cvs of asterisk) :)
I'm using it succesfully with:
# rpm -q openh323 pwlib
openh323-1.10.4-1
pwlib-1.4.4-1
from PLD Linux.

openh323-1.11.* does not work for me. asterisk build with that openh323 
makes sig11 on start (yes, I've tried to do everything like in README of 
chan_h323).

  </PRE><PRE wrap=""><HR width="90%" SIZE=4>
--- ./channels/h323/Makefile.org        Tue May 13 09:53:16 2003
+++ ./channels/h323/Makefile        Tue May 13 09:55:26 2003
@@ -61,13 +62,13 @@
         g++ -g -c -o $@ $(CFLAGS) $&lt;
 
 chan_h323.so:        chan_h323.o ast_h323.o
-        g++  -shared -Xlinker -x -o chan_h323.so chan_h323.o ast_h323.o -L$(PWLIBDIR)/lib  -lpt_linux_x86_r -L$(OPENH323DIR)/lib -lh323_linux_x86_r -L/usr/lib -lpthread -ldl -lcrypto -lssl -lexpat
+        g++  -shared -Xlinker -x -o chan_h323.so chan_h323.o ast_h323.o -L$(PWLIBDIR)/lib  -lpt -L$(OPENH323DIR)/lib -lopenh323 -L/usr/lib -lpthread -ldl -lcrypto -lssl -lexpat
 
 chan_h323_d.so:        chan_h323.o ast_h323.o
-        g++  -shared -Xlinker -x -o chan_h323.so chan_h323.o ast_h323.o -L$(PWLIBDIR)/lib  -lpt_linux_x86_d -L$(OPENH323DIR)/lib -lh323_linux_x86_d -L/usr/lib -lpthread -ldl -lcrypto -lssl -lexpat
+        g++  -shared -Xlinker -x -o chan_h323.so chan_h323.o ast_h323.o -L$(PWLIBDIR)/lib  -lpt -L$(OPENH323DIR)/lib -lopenh323 -L/usr/lib -lpthread -ldl -lcrypto -lssl -lexpat
 
 chan_h323_s.so:        chan_h323.o ast_h323.o
-        g++  -shared -Xlinker -x -o chan_h323.so chan_h323.o ast_h323.o -L$(PWLIBDIR)/lib  -lpt_linux_x86_r_s -L$(OPENH323DIR)/lib -lh323_linux_x86_r_s -L/usr/lib -lpthread -ldl -lcrypto -lssl -lexpat
+        g++  -shared -Xlinker -x -o chan_h323.so chan_h323.o ast_h323.o -L$(PWLIBDIR)/lib  -lpt -L$(OPENH323DIR)/lib -lopenh323 -L/usr/lib -lpthread -ldl -lcrypto -lssl -lexpat
 clean:
         rm -f *.o *.so core.*
 
  </PRE></BLOCKQUOTE><BR></BLOCKQUOTE></BODY></HTML>