This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: stunnel and cygwin



Hi Yectli,
forgive me but I forgot mention about one thing. Created by configure
script Makefile include
lines responsible for shared library creation what has no sense under
Cygwin and that is why
You got errors. You should simply edit created Makefile and cut off
lines responsible
for stunnel.so creation. Rest will be very simple. After creation of
stunnel.exe You
will be asked about data for stunnel.pem creation but I'm sure You know
this step.
Of course one should modify configure files not to produce Makefile with
shared library
creation but is is work for maintainer or someone who "very" want to
create stunnel
package under Cygwin without complications like these mentioned.

Jacek

Yectli Huerta wrote:
> 
> thanks for the tips.  I got past those error messages, but then i got
> this.
> 
> cc1.exe: warning: -fPIC ignored for target (all code
> is position independent)
> Cannot export _bss_end__: symbol not defined
> Cannot export _bss_start__: symbol not defined
> Cannot export _data_end__: symbol not defined
> Cannot export _data_start__: symbol not defined
> collect2: ld returned 1 exit status
> 
> any ideas,
> 
> thanks in advance,
> 
> yectli
> 
> On Fri, 1 Jun 2001, Jacek Trzcinski wrote:
> 
> >
> > Hi,
> > few months ago I did it. Then, I simply cut off not needed instruction
> > but with advice of Corinna I took it in conditional directive. So You
> > should do as follows:
> >
> > 1) In stunnel.c take in conditional compilation
> >
> > #ifndef __CYGWIN__
> >    if(setgroups(1,gr_list)){
> >    ......
> >    ......
> >    }
> > #endif
> >
> > 2) In pty.c take in conditional these three ioctl's with I_PUSH
> >
> > #ifndef __CYGWIN__
> >    if (ioctl .....
> >    ...............
> >    if (ioctl .....
> >    ..............
> >    if (ioctl
> >    ..............
> > #endif
> >
> >
> > Jacek
> >
> >
> > Yectli Huerta wrote:
> > >
> > > while attempting to compile pty.c, i get the following error messages
> > >
> > > stunnel.c: In function `listen_local':
> > > stunnel.c:633: warning: implicit declaration of
> > > function `setgroups'
> > > pty.c: In function `pty_allocate':
> > > pty.c:140: `I_PUSH' undeclared (first use in this
> > > function)
> > > pty.c:140: (Each undeclared identifier is reported
> > > only once
> > > pty.c:140: for each function it appears in.)
> > > make: *** [pty.o] Error 1
> > >
> > > I_PUSH is bein called by ioctl. which i had to include myself.
> > > i am trying to build stunnel with the latest version of cygwin.
> > >
> > > thanks,
> > >
> > > yectli
> > >
> > > --
> > > Want to unsubscribe from this list?
> > > Check out: http://cygwin.com/ml/#unsubscribe-simple
> >
> > --
> > Want to unsubscribe from this list?
> > Check out: http://cygwin.com/ml/#unsubscribe-simple
> >
> 
> ___________________________________________________________
> Yectli Adolfo Huerta             email: yhuerta@msi.umn.edu
> Unix Support                    office: 612 624-0540
> Supercomputing Institute           fax: 612 624-8861
>      for Digital Simulation and Advanced Computation
> University of Minnesota - Twin Cities
> 1200 Washington Ave S
> Minneapolis, MN 55415
> 
> --
> Want to unsubscribe from this list?
> Check out: http://cygwin.com/ml/#unsubscribe-simple

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]