public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* gnuplot and Cygnus
@ 2000-08-11 11:47 Jerome G. Benoit
  2000-08-11 16:19 ` tom
  0 siblings, 1 reply; 4+ messages in thread
From: Jerome G. Benoit @ 2000-08-11 11:47 UTC (permalink / raw)
  To: Cygnus list

Bonjour:

Is there somewhere on the web
stuff to use sucessfully `gnuplot'
under the latest Cygnus ?

Thanks in advance,
Jerome BENOIT

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: gnuplot and Cygnus
  2000-08-11 11:47 gnuplot and Cygnus Jerome G. Benoit
@ 2000-08-11 16:19 ` tom
  2000-08-11 16:43   ` Jerome G. Benoit
  0 siblings, 1 reply; 4+ messages in thread
From: tom @ 2000-08-11 16:19 UTC (permalink / raw)
  To: Jerome G. Benoit, Cygnus list

On Fri, 11 Aug 2000, Jerome G. Benoit wrote:
> Bonjour:
> 
> Is there somewhere on the web
> stuff to use sucessfully `gnuplot'
> under the latest Cygnus ?
> 
> Thanks in advance,
> Jerome BENOIT
> 
> --
> Want to unsubscribe from this list?
> Send a message to cygwin-unsubscribe@sourceware.cygnus.com

I have a working binary package of gnuplot compiled with the latest cygwin at
the following address:
ftp://ftp.franken.de/pub/win32/develop/gnuwin32/cygwin/porters/Weichmann_Tom/1.2/

Remember that gnuplot is a X windows app.  Therefore you need to be running a
Xserver on your Windows box, and also have the X11R6 libs and clients installed
in your Cygwin environment.

There is a Win32 native gnuplot port that does not require a Xserver.  It (along
with some others) is located at ftp://ftp.dartmouth.edu/pub/gnuplot .  This
Win32 port was done with an old version of Cygwin though and has some problems
interacting with other applications, like Octave.  There is a simple work around
to make it work with Octave, but I have never tried it with anything else.

 -- 
Tom Weichmann

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: gnuplot and Cygnus
  2000-08-11 16:19 ` tom
@ 2000-08-11 16:43   ` Jerome G. Benoit
  2000-08-12  2:56     ` David Coe
  0 siblings, 1 reply; 4+ messages in thread
From: Jerome G. Benoit @ 2000-08-11 16:43 UTC (permalink / raw)
  To: tom; +Cc: Cygnus list

Thanks for your reply.

In fact I just want use gnuplot to generate PostScript file
(that I can view with `gsview')
via command line (to use in bash script):
note that I don't use `gnuplot' so may this approach is false
(as implicitly suggest the response below)
In this view I have download the latest gnuplot source 3.7.1
and run ./configure ...
`make' compiles all but cannot link:
()/specfun.c:329: undefined reference to `signgam'

I cannot figure out the trouble !

Any idea ?

Jerome BENOIT


tom wrote:
> 
> On Fri, 11 Aug 2000, Jerome G. Benoit wrote:
> > Bonjour:
> >
> > Is there somewhere on the web
> > stuff to use sucessfully `gnuplot'
> > under the latest Cygnus ?
> >
> > Thanks in advance,
> > Jerome BENOIT
> >
> > --
> > Want to unsubscribe from this list?
> > Send a message to cygwin-unsubscribe@sourceware.cygnus.com
> 
> I have a working binary package of gnuplot compiled with the latest cygwin at
> the following address:
> ftp://ftp.franken.de/pub/win32/develop/gnuwin32/cygwin/porters/Weichmann_Tom/1.2/
> 
> Remember that gnuplot is a X windows app.  Therefore you need to be running a
> Xserver on your Windows box, and also have the X11R6 libs and clients installed
> in your Cygwin environment.
> 
> There is a Win32 native gnuplot port that does not require a Xserver.  It (along
> with some others) is located at ftp://ftp.dartmouth.edu/pub/gnuplot .  This
> Win32 port was done with an old version of Cygwin though and has some problems
> interacting with other applications, like Octave.  There is a simple work around
> to make it work with Octave, but I have never tried it with anything else.
> 
>  --
> Tom Weichmann
> 
> --
> Want to unsubscribe from this list?
> Send a message to cygwin-unsubscribe@sourceware.cygnus.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: gnuplot and Cygnus
  2000-08-11 16:43   ` Jerome G. Benoit
@ 2000-08-12  2:56     ` David Coe
  0 siblings, 0 replies; 4+ messages in thread
From: David Coe @ 2000-08-12  2:56 UTC (permalink / raw)
  To: Jerome G. Benoit, tom; +Cc: Cygnus list

[-- Attachment #1: Type: text/plain, Size: 510 bytes --]

> In fact I just want use gnuplot to generate PostScript file
> (that I can view with `gsview')
> via command line (to use in bash script):
> note that I don't use `gnuplot' so may this approach is false
> (as implicitly suggest the response below)
> In this view I have download the latest gnuplot source 3.7.1
> and run ./configure ...
> `make' compiles all but cannot link:
> ()/specfun.c:329: undefined reference to `signgam'
> 
> I cannot figure out the trouble !
> 
> Any idea ?
> 
Try this small patch.

[-- Attachment #2: gnuplot-3.7.1.patch --]
[-- Type: text/x-diff, Size: 271 bytes --]

--- specfun.c.orig	Thu Dec 10 18:30:35 1998
+++ specfun.c	Tue Aug  1 12:36:02 2000
@@ -94,7 +94,7 @@
 # endif
 #endif
 
-#ifndef GAMMA
+#if !defined(GAMMA) || defined(__CYGWIN__)
 int signgam = 0;
 #else
 extern int signgam;		/* this is not always declared in math.h */


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2000-08-12  2:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-08-11 11:47 gnuplot and Cygnus Jerome G. Benoit
2000-08-11 16:19 ` tom
2000-08-11 16:43   ` Jerome G. Benoit
2000-08-12  2:56     ` David Coe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).