Displaying 3 results from an estimated 3 matches for "save_ldflags".
Did you mean:
saved_ldflags
2004 Feb 09
1
iconv detection on Irix 6.5
...build the test programs. I've
attached the diff. Changing LOOK_DIRS="/usr /usr/local /sw" to also
include /opt might be useful for Irix builds.
--- samba-3.0.2/source/configure Fri Feb 6 17:44:44 2004
+++ configure Mon Feb 9 13:12:23 2004
@@ -19939,7 +19939,7 @@
save_LDFLAGS=$LDFLAGS
save_CPPFLAGS=$CPPFLAGS
CPPFLAGS="$CPPFLAGS -I$i/include"
- LDFLAGS="$LDFLAGS -L$i/lib"
+ LDFLAGS="$LDFLAGS -L$i/lib32"
LIBS=
export LDFLAGS LIBS CPPFLAGS
@@ -20219,8 +20219,8 @@
if test "$ICONV_FOUND" = yes; then...
2009 Feb 20
4
openssh-5.1p1 configure failure
Hi
If I try to run configure for openssh-5.1p1 with --wtih-selinux option
it fails giving the error "selinux support requires selinux library"
all of the below also dont work
a) --wtih-selinux
b) --wtih-selinux=path of cross complied library
c) LDFLAGS=-Lpath of cross complied library
if I remove --wtih-selinux option I am able to everything is fine.
How to solve this error?
Thanks
2012 May 05
5
[PATCH] Optionally, allow distros to use openssl for MD5 verification
...AC_MSG_CHECKING([whether compiling and linking against OpenSSL works])
+ echo "Trying link with OPENSSL_LDFLAGS=$OPENSSL_LDFLAGS;" \
+ "OPENSSL_LIBS=$OPENSSL_LIBS; OPENSSL_INCLUDES=$OPENSSL_INCLUDES" >&AS_MESSAGE_LOG_FD
+
+ save_LIBS="$LIBS"
+ save_LDFLAGS="$LDFLAGS"
+ save_CPPFLAGS="$CPPFLAGS"
+ LDFLAGS="$LDFLAGS $OPENSSL_LDFLAGS"
+ LIBS="$OPENSSL_LIBS $LIBS"
+ CPPFLAGS="$OPENSSL_INCLUDES $CPPFLAGS"
+ AC_LINK_IFELSE(
+ [AC_LANG_PROGRAM([#include <openssl/ssl.h>], [SSL_new(...