search for: with_ssl

Displaying 5 results from an estimated 5 matches for "with_ssl".

2001 Mar 07
0
Anyone have Large File support working on AIX?
...ompiled using gcc version 2.95.2 and the HAVE_EXPLICIT_LARGEFILE_SUPPORT is turned on. Anyone been more successful or have ideas? ----code snippit from lib/util_sock.c------ ssize_t write_data(int fd,char *buffer,size_t N) { size_t total=0; ssize_t ret; while (total < N) { #ifdef WITH_SSL if(fd == sslFd){ ret = SSL_write(ssl,buffer + total,N - total); }else{ ret = write(fd,buffer + total,N - total); } #else /* WITH_SSL */ ret = write(fd,buffer + total,N - total); #endif /* WITH_SSL */ if (ret == -1) { DEBUG(0,("write_data: write failure. E...
2006 Dec 03
2
checking for libusb in configure.in
Peter, similar to the OpenSSL test and "with_ssl", can we make the libusb test in configure.in depend on "with_usb=yes"? It's not as important as not linking against OpenSSL unless requested, but it caused a bit of confusion when I was trying to rebuild. I forgot that "--with-drivers=all" does not imply "--with-...
2005 Nov 22
1
Silly question...
I'm trying to build a new 1.0+ copy of dovecot. I'm trying to build it so I can use SSL. I tried the ./configure --with_ssl= option, did a make clean, then a make and a make install. Still get the same error saying that even though I set the SSL use flag, it was not compiled with SSL. Thoughts? TIA! -- Michael Segel Principal MSCC 312 952- 8175 [M]
2008 Apr 30
2
openSUSE 11.0 - NUT
Stan, I'm very pleased to see you back to work with us on enhancing nut in that many areas ;-) 2008/4/30 Stanislav Brabec <sbrabec at suse.cz>: > Stanislav Brabec wrote: > > > Please note that 2.2.2-pre3 installs hald addons by default to / on > > openSUSE 11.0 beta 2 x86_64. Not a big problem. > > Here is a patch, which fixes openSUSE 11.0 beta 2 x86_64:
2003 Dec 01
0
No subject
...CFLAGS="-I${withval} $CFLAGS" - LIBS="-lssl -lcrypto $LIBS" - LDFLAGS="-L${withval}/lib $LDFLAGS" ;; esac else CFLAGS="-I/usr/local/ssl/include $CFLAGS" - LIBS="-lssl -lcrypto $LIBS" + + fi + + if test "${with_ssllib+set}" = set; then + + withval="$with_ssllib" + case "$withval" in + yes|no) + echo "configure: warning: --with-ssllib called without argument - will use default" 1>&w + LDFLAGS="=L/usr/local/ssl/lib $LDFLAGS" + ;; + * ) + LDFLAGS...