Displaying 5 results from an estimated 5 matches for "have_getopt_optreset".
2002 Jun 22
2
ssh-agent build failure on AIX
Hello All,
I've just attempted to build from -cvs on AIX and get the following:
$ gcc [snip] -c ssh-agent.c
ssh-agent.c: In function `main':
ssh-agent.c:975: `BSDoptarg' undeclared (first use in this function)
ssh-agent.c:975: (Each undeclared identifier is reported only once
ssh-agent.c:975: for each function it appears in.)
make: 1254-004 The error code from the last command is 1.
2002 Jun 16
1
multiple definition of `optind'
Any ideas of the best way around this problem? Should I just hack the
source code, or is there a magic switch somewhere I'm missing? I'm
assuming I can't just dismiss that function as OpenSSH is probably
based on the OpenBSD semantics.
=============================================================================
gcc -g -O2 -Wall -Wno-uninitialized -I. -I.
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...#define IPV4_IN_IPV6 1
/* #undef BSD_AUTH */
/* #undef NO_X11_UNIX_SOCKETS */
/* #undef NO_IPPORT_RESERVED_CONCEPT */
/* #undef BROKEN_SAVED_UIDS */
#define GLOB_HAS_ALTDIRFUNC 1
/* #undef GLOB_HAS_GL_MATCHC */
/* #undef BROKEN_ONE_BYTE_DIRENT_D_NAME */
/* #undef HAVE_ETC_DEFAULT_LOGIN */
/* #undef HAVE_GETOPT_OPTRESET */
/* #undef MISSING_NFDBITS */
/* #undef MISSING_HOWMANY */
/* #undef MISSING_FD_MASK */
/* #undef SMARTCARD */
/* #undef USE_SECTOK */
/* #undef USE_OPENSC */
#define OPENSSL_PRNG_ONLY 1
/* #undef WITH_ABBREV_NO_TTY */
/* #undef SUPERUSER_PATH */
/* #undef PRIVSEP_PATH */
/* #undef DISABLE_FD_PAS...
2006 Apr 11
0
Problem building openssh-4.3p2 under cygwin and windows XP
...ac_cv_have_accrights_in_msghdr=no
ac_cv_have_clock_t=yes
ac_cv_have_control_in_msghdr=yes
ac_cv_have_decl_LLONG_MAX=yes
ac_cv_have_decl__getlong=no
ac_cv_have_decl__getshort=no
ac_cv_have_decl_getrusage=no
ac_cv_have_decl_h_errno=yes
ac_cv_have_decl_strsep=yes
ac_cv_have_decl_tcsendbreak=yes
ac_cv_have_getopt_optreset=yes
ac_cv_have_int64_t=yes
ac_cv_have_intxx_t=yes
ac_cv_have_mode_t=yes
ac_cv_have_pid_t=yes
ac_cv_have_pw_change_in_struct_passwd=no
ac_cv_have_pw_class_in_struct_passwd=no
ac_cv_have_pw_expire_in_struct_passwd=no
ac_cv_have_sa_family_t=yes
ac_cv_have_size_t=yes
ac_cv_have_ss_family_in_struct_ss=y...
2003 Sep 10
3
[PATCH] No extern declarations of optarg & co if getopt.h is available
Hi,
I have a problem with the extern declarations of optarg, optind, etc.
We're currently moving getopt from being a statically linked function
to a dynamically linked function as part of the Cygwin DLL. On Windows,
this requires to generate special symbols (__imp__optarg, etc.), which
is done by marking the exported variables in the corresponding header.
Instead of
extern char *optarg;