search for: have___function__

Displaying 6 results from an estimated 6 matches for "have___function__".

2002 Jul 18
3
[Bug 320] Cannot build 3.4p1
http://bugzilla.mindrot.org/show_bug.cgi?id=320 ------- Additional Comments From stevesk at pobox.com 2002-07-18 14:24 ------- i'm not sure. what does this show: $ grep HAVE___[Ff] config.h /* #undef HAVE___FUNCTION__ */ #define HAVE___func__ 1 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2007 Jul 16
0
[PATCH] __func__ and __FUNCTION__ in configure script
...e both still checked for in configure, but this is done in the configure script as well: 1) If __func__ exists, it's used 2) If not, but __FUNCTION__ exists, define __func__ to __FUNCTION__ 3) If neither exist, define __func__ to __FILE__ So this eliminates the need for the HAVE___func__ and HAVE___FUNCTION__ defines, the checking/modifying in defines.h, and it's all done in one spot in configure. I implemented pretty much the same thing in Nmap, and I thought it'd be helpful here as well I didn't run autoconf before I diff'd it because it probably would've made the patch huge...
2003 Dec 30
8
[Bug 651] SCO 3.2v4.2 and OpenSSH 3.7.1p1 --> connection hangs and does not close (ssh2 only)
http://bugzilla.mindrot.org/show_bug.cgi?id=651 ------- Additional Comments From vikashb at comparexafrica.co.za 2003-12-30 16:39 ------- tried openssh-SNAP-20031223 does not compile: (cd openbsd-compat && make) gcc -g -O2 -Wall -Wpointer-arith -Wno-uninitialized -I. -I.. -I. -I./.. -I/usr/local/ssl/include -Dftruncate=chsize -I/usr/local/include -DHAVE_CONFIG_H -c
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...#undef LOGIN_NEEDS_UTMPX */ /* #undef LOGIN_NEEDS_TERM */ /* #undef LOGIN_NO_ENDOPT */ /* #undef CONF_LASTLOG_FILE */ /* #undef CONF_UTMP_FILE */ /* #undef CONF_WTMP_FILE */ /* #undef CONF_UTMPX_FILE */ /* #undef CONF_WTMPX_FILE */ /* #undef USE_EXTERNAL_ASKPASS */ #define HAVE___PROGNAME 1 #define HAVE___FUNCTION__ 1 #define HAVE___func__ 1 /* #undef GSSAPI */ /* #undef KRB5 */ /* #undef HEIMDAL */ /* #undef USE_AFS */ /* #undef SKEY */ /* #undef LIBWRAP */ #define HAVE_LOGIN 1 #define HAVE_DAEMON 1 #define HAVE_GETPAGESIZE 1 #define XAUTH_PATH "/usr/X11R6/bin/xauth" /* #undef HAVE_MD5_PASSWORDS */...
2006 Apr 11
0
Problem building openssh-4.3p2 under cygwin and windows XP
...TMPNAME 1 #define HAVE_UTMPXNAME 1 #define HAVE_UTMPX_H 1 #define HAVE_UTMP_H 1 #define HAVE_U_CHAR 1 #define HAVE_U_INT 1 #define HAVE_U_INT64_T 1 #define HAVE_U_INTXX_T 1 #define HAVE_VASPRINTF 1 #define HAVE_VA_COPY 1 #define HAVE_VHANGUP 1 #define HAVE_VSNPRINTF 1 #define HAVE_WAITPID 1 #define HAVE___FUNCTION__ 1 #define HAVE___PROGNAME 1 #define HAVE___VA_COPY 1 #define HAVE___func__ 1 #define IP_TOS_IS_BROKEN 1 #define LIBWRAP 1 #define LOGIN_PROGRAM_FALLBACK "/usr/bin/login" #define NO_IPPORT_RESERVED_CONCEPT 1 #define NO_X11_UNIX_SOCKETS 1 #define OPENSSL_PRNG_ONLY 1 #define PACKAGE_BUGREPOR...
2003 Oct 08
4
OS/390 openssh
...sshd_rc=$? if [ $sshd_rc -ne 0 ]; then diff -bur openssh-3.7.1p2.orig/defines.h openssh-3.7.1p2/defines.h --- openssh-3.7.1p2.orig/defines.h Tue Sep 16 03:52:19 2003 +++ openssh-3.7.1p2/defines.h Tue Oct 7 08:22:00 2003 @@ -522,7 +522,13 @@ #if !defined(HAVE___func__) && defined(HAVE___FUNCTION__) # define __func__ __FUNCTION__ #elif !defined(HAVE___func__) -# define __func__ "" +# ifdef __STDC__ +# define __stringize_internal(a) #a +# define __stringize(a) __stringize_internal(a) +# define __func__ __FILE__ ## ":" ## __stringize(__LINE__) +# else +# define __f...