From: <jc...@fe...> - 2003-02-05 16:27:34
|
On Monday 03 February 2003 22:17, Alan W. Irwin wrote: | On Mon, 3 Feb 2003, Rafael Laboissiere wrote: | > > make[3]: Entering directory `/home/jcard/plplot/bindings/python' | > > python -o plplotcmodule_p_double.c -c++ -DPL_DOUBLE \ | > > plplotcmodule.i | > > Unknown option: -o | > | > No idea about this. Alan? | | The command should be | | $(SWIG) -python -o plplotcmodule_p_double.c -c++ -DPL_DOUBLE \ | plplotcmodule.i | | So I think his error message is caused because $(SWIG) is undefined | for him, but I don't know the root cause of that problem. One | possibility is the old autotools versions he is using. Another | possibility is he may have forgot to specify --enable-maintainer-mode | for his ./configure option. I don't know whether that is essential | or not after you have done a make | maintainer-clean, but I suspect it is. | | What happens, Joao, for the latest stable autotools versions, clean | PLplot checkout, and --enable-maintainer-mode? Now everything runs OK: > make maintainer-clean > ./bootstrap.sh=20 Running aclocal (GNU automake) 1.7.2... done Running libtoolize (GNU libtool) 1.4.3... done Running autoheader (GNU Autoconf) 2.57... done Running automake (GNU automake) 1.7.2... done Running autoconf (GNU Autoconf) 2.57... done > ./configure *without* the --enable-maintainer-mode =2E.. make[3]: Entering directory `/home/jcard/plplot/bindings/python' swig -python -o plplotcmodule_p_double.c -c++ -DPL_DOUBLE \ =2E.. Joao |