Ilya Zakharevich on Mon, 24 Jun 2002 09:12:35 -0400 |
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
Re: DYNAMIC_PLOTTING with gnuplot made easy |
On Sun, Jun 09, 2002 at 09:39:59PM +0200, Karim BELABAS wrote: > I applied you series of gnuplot-related patches, specifically pari-dev > messages 1351, 1358, 1359, 1364, 1365, 1366 and tried ... > And now it works ! Initially I read your message differently. Now I checked, and it works indeed... ;-) Thanks. The following patch makes the build easier without HAVE_DLOPEN. (Gnuplotting will not work, but at least the build/testing will succeed.) Enjoy, Ilya *** ./src/graph/plotgnuplot.c-pre Mon Jun 24 14:52:45 2002 --- ./src/graph/plotgnuplot.c Mon Jun 24 14:54:46 2002 *************** *** 470,473 **** croak(buf); return 0; } ! #endif --- 470,482 ---- croak(buf); return 0; } ! #else /* !( defined HAS_DLOPEN ) */ ! ! get_term_ftable_t * ! get_term_ftable_get(void) /* Establish runtime link with gnuplot engine */ ! { ! croak("No dlopen() support present, required for dynamic gnuplot-DLL link"); ! return NULL; ! } ! ! #endif /* defined HAS_DLOPEN */