Bill Wrote: > On Wed, 25 Apr 2007 12:18:10 -0500, The Asterisk Development Team wrote >> The Asterisk.org development team has released Asterisk-addons version >> 1.4.1. >
> When I run make install I get: > [EMAIL PROTECTED] asterisk-ooh323c]# make install > cp .libs/libchan_h323.so.1.0.1 /usr/lib/asterisk/modules/chan_ooh323.so > cp: cannot stat `.libs/libchan_h323.so.1.0.1': No such file or directory > make: *** [install] Error 1 > [EMAIL PROTECTED] asterisk-ooh323c]# ls -la .libs/ > total 4164 > drwxr-xr-x 2 root root 4096 Apr 26 10:26 . > drwxr-xr-x 8 root root 4096 Apr 26 10:26 .. > lrwxrwxrwx 1 root root 18 Apr 26 10:26 libchan_h323 -> libchan_h323.1.0.1 > lrwxrwxrwx 1 root root 18 Apr 26 10:26 libchan_h323.1 -> libchan_h323.1.0.1 > -rwxr-xr-x 1 root root 2043862 Apr 26 10:26 libchan_h323.1.0.1 > -rw-r--r-- 1 root root 2197238 Apr 26 10:26 libchan_h323.a > lrwxrwxrwx 1 root root 18 Apr 26 10:26 libchan_h323.la -> ../libchan_h323.la > -rw-r--r-- 1 root root 807 Apr 26 10:26 libchan_h323.lai > Have I done something wrong? Or is there a bug? Isn't it fun when old bugs come back? This is a Makefile issue where the compiled file has the wrong name. The 'make install' is looking for .libs/libchan_h323.so.1.0.1, but the compile produced .libs/libchan_h323.1.0.1 You can copy the file manually and it will work fine: cp .libs/libchan_h323.1.0.1 /usr/lib/asterisk/modules/chan_ooh323.so With luck Asterisk-Addons 1.4.2 will address this once again.... Dan _______________________________________________ --Bandwidth and Colocation provided by Easynews.com -- asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
