search for: save_cppflags

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

Did you mean: saved_cppflags
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
2004 Feb 09
1
iconv detection on Irix 6.5
...'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 LDFLAGS=$save_LDFLA...
2002 Jun 17
3
Fix for smbpasswd Samba 2.2.4 on Solaris only taking 8 character passwords
Under Samba 2.2.4 (and possibly earlier), smbpasswd (when run locally) only really reads the first 8 characters, as opposed to the full password. Obviously, this can cause mass confusion. :) The fix is pretty simple (I would offer a diff, but this is the kind of thing the configure script should check for...) - under Solaris getpass() will only return 8 characters - you must use getpassphrase()
2019 Feb 25
1
Is libtiff >= 4.0.0 now required by R for TIFF support?
...se_libtiff}" = yes; then mod= ## pkg-config support was introduced in libtiff 4.0.0 ## I guess the module name might change in future, so ## program defensively here. if "${PKGCONF}" --exists libtiff-4; then mod=libtiff-4 fi if test -n "${mod}"; then save_CPPFLAGS=${CPPFLAGS} TIF_CPPFLAGS=`"${PKGCONF}" --cflags ${mod}` CPPFLAGS="${CPPFLAGS} ${TIF_CPPFLAGS}" for ac_header in tiffio.h do : ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default" if...
2012 May 05
5
[PATCH] Optionally, allow distros to use openssl for MD5 verification
...nd 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(NULL)])], + [ + AC_MSG...