Re: [Discuss-gnuradio] Another question about making a signal processing block

2008-05-20 Thread Zhenghao Zhang
Eric, Thanks a lot for the help. I tried your commands and it is working now. I can build a signal processing block and run qa tests. Thanks so much. It took me a while to because there were some bugs in my files. Zhenghao On Mon, May 19, 2008 at 11:48 PM, Zhenghao Zhang <[EMAIL PROTECTED]> wro

Re: [Discuss-gnuradio] Another question about making a signal processing block

2008-05-19 Thread Zhenghao Zhang
Eric, Thanks so much! I will try them first time tomorrow morning. Zhenghao On Mon, May 19, 2008 at 11:30 PM, Eric Blossom <[EMAIL PROTECTED]> wrote: > On Mon, May 19, 2008 at 10:45:41PM -0400, Zhenghao Zhang wrote: >> Thanks for helping me on this! >> >> autoconf (GNU Autoconf) 2.61 >> automa

Re: [Discuss-gnuradio] Another question about making a signal processing block

2008-05-19 Thread Eric Blossom
On Mon, May 19, 2008 at 10:45:41PM -0400, Zhenghao Zhang wrote: > Thanks for helping me on this! > > autoconf (GNU Autoconf) 2.61 > automake (GNU automake) 1.10 > OK, those look fine. Try this: rm -fr config.cache autom4te*.cache aclocal -I config autoconf autoheader libto

Re: [Discuss-gnuradio] Another question about making a signal processing block

2008-05-19 Thread Zhenghao Zhang
Thanks for helping me on this! autoconf (GNU Autoconf) 2.61 automake (GNU automake) 1.10 On Mon, May 19, 2008 at 10:40 PM, Eric Blossom <[EMAIL PROTECTED]> wrote: > On Mon, May 19, 2008 at 09:46:03PM -0400, Zhenghao Zhang wrote: >> Thanks for the help! I will check it. >> >> automake has been c

Re: [Discuss-gnuradio] Another question about making a signal processing block

2008-05-19 Thread Eric Blossom
On Mon, May 19, 2008 at 09:46:03PM -0400, Zhenghao Zhang wrote: > Thanks for the help! I will check it. > > automake has been complaining about not being able tofind PYTHON variable: > > src/lib/Makefile.am:55: Python sources seen but `PYTHON' is undefined > > After adding `AM_PATH_PYTHON' m

Re: [Discuss-gnuradio] Another question about making a signal processing block

2008-05-19 Thread Zhenghao Zhang
Thanks for the help! I will check it. automake has been complaining about not being able tofind PYTHON variable: src/lib/Makefile.am:55: Python sources seen but `PYTHON' is undefined After adding `AM_PATH_PYTHON' micro to Makefile.am, automake does not complain any more. I actually don't thi

Re: [Discuss-gnuradio] Another question about making a signal processing block

2008-05-19 Thread Michael Dickens
On May 19, 2008, at 9:08 PM, Zhenghao Zhang wrote: But make is giving me problems. It seemed to be complaining about not being able to find "fvirtual", therefore the no zzblk.cc is produced and g++ cannot find the source file to compile. The detailed messages are the follows. Any hint is greatly

[Discuss-gnuradio] Another question about making a signal processing block

2008-05-19 Thread Zhenghao Zhang
Hi, I was trying to make a signal processing block. I basically did nothing but copied the ``how-to-write-a-block'' package and modified the name of the block in files according to the Shen tutorial.With the help from Philip, I got around several make problems I asked earlier. The automake passes