Thanks, I'll give it a shot. I just needed a hint on where to start looking. I'll have to (get to) learn gcc syntax and makefiles. Learning by necessity -Doug On Wed, 17 Jan 2001, you wrote: > On Wed, 17 Jan 2001, Doug wrote: > > > > make[1]: Entering directory `/usr/local/src/ripperX-2.0/plugins' > > > gcc -g -O2 ripperX_plugin_tester.c -o ripperX_plugin_tester.o > > > gcc ripperX_plugin_tester.o -o ripperX_plugin_tester > > The middle line above is missing the -c option, it looks like. > (Without the -c option, the program binary was created instead of > an object, which cannot be properly linked by the linker -- > that's my theory). Modify the Makefile to include -c. If you > don't know how, post /usr/local/src/ripperX-2.0/plugins/Makefile (and also > perhaps /usr/local/src/ripperX-2.0/Makefile) and we'll fix it up and send > it back to you. > > -Mark > > --- > Mark K. Kim > http://www.cbreak.org/mark/ > PGP key available upon request.
