search for: ssl_ldflags

Displaying 3 results from an estimated 3 matches for "ssl_ldflags".

Did you mean: ssh_ldflags
2006 Nov 19
2
SSL flags (was Re: [nut-commits] svn commit r593 - branches/deb_fixes_for_trunk)
Peter, Any objections to adding this to the trunk? When I run 'ldd upsc' without this patch, it lists the OpenSSL libraries, and the default ./configure setting is to not use OpenSSL. - Charles > Log: > If we are not using SSL_CFLAGS or SSL_LDFLAGS, do not add the OpenSSL libraries > to all of the binaries. > > > Modified: branches/deb_fixes_for_trunk/configure.in > ============================================================================== > --- branches/deb_fixes_for_trunk/configure.in (original) > +++ branches/deb...
2007 Sep 04
2
Unresolved variable in `libupsclient-config'
Tags: patch, upstream Hi, when configuring nut 2.2.0 the variable/symbol `@SSL_LDFLAGS@' is not resolved by the libupsclient-config script. The attached patch changes `@SSL_CFLAGS@' to `@LIBSSL_CFLAGS@' `@SSL_LDFLAGS@' to `@LIBSSL_LDFLAGS@' which should solve this issue. Regards, -octo -- Florian octo Forster Hacker in training GnuPG: 0x91523C3D http://verpl...
2007 Aug 07
1
pkgconfig fix for nut
...A = libupsclient.pc +pkgconfigdir = $(libdir)/pkgconfig bin_SCRIPTS = libupsclient-config endif --- lib/libupsclient-config.in +++ lib/libupsclient-config.in @@ -10,8 +10,8 @@ Version="@PACKAGE_VERSION@" prefix=@prefix@ exec_prefix=@exec_prefix@ -Libs="-L at libdir@ -lupsclient @SSL_LDFLAGS@" -Cflags="-I at includedir@ @SSL_CFLAGS@" +Libs="-L at libdir@ -lupsclient @LIBSSL_LDFLAGS@" +Cflags="-I at includedir@ @LIBSSL_CFLAGS@" case "$1" in --- lib/libupsclient.pc.in +++ lib/libupsclient.pc.in @@ -9,5 +9,5 @@ Name: libupsclient Descrip...