Displaying 20 results from an estimated 345 matches for "xye".
Did you mean:
bye
2005 Mar 01
7
[Bug 989] openssh-3.9p1 on Solaris 8 - multiplex.sh NOK
.../regress/authorized_keys_%u
LogLevel QUIET
AcceptEnv _XXX_TEST_*
AcceptEnv _XXX_TEST
Subsystem sftp /usr/libexec/openssh/sftp-server
+ [ ! -z LogLevel=DEBUG3 ]
+ trace adding sshd_config option LogLevel=DEBUG3
+ [ Xyes = Xyes ]
+ echo adding sshd_config option LogLevel=DEBUG3
adding sshd_config option LogLevel=DEBUG3
+ echo LogLevel=DEBUG3
+ cp /opt/SSH/openssh-3.9p1/regress/sshd_config
/opt/SSH/openssh-3.9p1/regress/sshd_proxy
+ echo StrictModes no
+ cat
Host *
Hostname 127.0.0.1...
2000 Oct 25
1
Typo in configure.in
Hello!
In configure.in from openssh-2.2.0p1 you are using $xno and $xyes several
times. However, those variables are not defined. I guess you mean literals
"xno" and "xyes" in all those cases.
If that's correct please apply the patch at the end of this message.
Regards,
Pavel Roskin
_____________________
--- configure.in Wed Aug 30 18:20:05 2...
2013 Apr 21
0
[PATCH] Reduce valgrind num-callers to 50
...t a/test/test_bins.sh b/test/test_bins.sh
index 65ba6e2..92d6693 100755
--- a/test/test_bins.sh
+++ b/test/test_bins.sh
@@ -52,8 +52,8 @@ flac --help 1>/dev/null 2>/dev/null || die "ERROR can't find flac executable"
run_flac ()
{
if [ x"$FLAC__TEST_WITH_VALGRIND" = xyes ] ; then
- echo "valgrind --leak-check=yes --show-reachable=yes --num-callers=100 flac $*" >>test_bins.valgrind.log
- valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --log-fd=4 flac $* 4>>test_bins.valgrind.log
+ echo "valgrind --leak-check=yes --show...
2012 Mar 26
1
[PATCH] configure.in: fix AC_ARG_ENABLE and AC_ARG_WITH
..._os in
esac
AC_ARG_ENABLE(uml,
- AS_HELP_STRING([--enable-uml], [enable support for User Mode Linux]),
- [ AC_DEFINE(ENABLE_UML, 1, [Support for UML])
- uml=true
- ]
+ AS_HELP_STRING([--disable-uml], [enable support for User Mode Linux]),
+ [ AS_IF([test "x$enable_uml" = "xyes"],
+ [ AC_DEFINE(ENABLE_UML, 1, [Support for UML])
+ uml=true
+ ],
+ [uml=false])
+ ],
+ [uml=disable]
)
AC_ARG_ENABLE(vde,
- AS_HELP_STRING([--enable-vde], [enable support for Virtual Distributed Ethernet]),
- [ AC_CHECK_HEADERS(libvdeplug_dyn.h, [], [AC_MSG_ERR...
2015 Feb 17
2
[LLVMdev] [PATCH 1/2 v3] configure: add visibility macro detection to configure
....ac
> @@ -189,6 +189,7 @@ AX_GCC_FUNC_ATTRIBUTE([flatten])
> AX_GCC_FUNC_ATTRIBUTE([format])
> AX_GCC_FUNC_ATTRIBUTE([malloc])
> AX_GCC_FUNC_ATTRIBUTE([packed])
> +AX_GCC_FUNC_ATTRIBUTE([visibility])
>
> AM_CONDITIONAL([GEN_ASM_OFFSETS], test "x$GEN_ASM_OFFSETS" = xyes)
>
> @@ -245,17 +246,13 @@ if test "x$GCC" = xyes; then
> AC_MSG_RESULT([yes]),
> [CFLAGS="$save_CFLAGS -Wmissing-prototypes";
> AC_MSG_RESULT([no])]);
> + CFLAGS=$save_CFLAGS
>
> # Enable...
2015 Jun 30
2
Call for testing: OpenSSH 6.9
...T
# will fail if we're not running with SUDO (no permissions for real keys) or
# if we are # running tests on a system that has never had sshd installed
@@ -26,6 +31,9 @@
cat > $OBJ/sshd_config.0 <<EOD
listenaddress 1.2.3.4:1234
listenaddress 1.2.3.4:5678
+EOD
+
+[ X${SKIP_IPV6} = Xyes ] || cat > $OBJ/sshd_config.0 <<EOD
listenaddress [::1]:1234
listenaddress [::1]:5678
EOD
@@ -37,6 +45,9 @@
port 1234
port 5678
listenaddress 1.2.3.4
+EOD
+
+[ X${SKIP_IPV6} = Xyes ] || cat > $OBJ/sshd_config.1 <<EOD
listenaddress ::1
EOD
($SUDO ${SSHD} -T -f $OBJ/ss...
2016 Feb 17
5
Call for testing: OpenSSH 7.2
...nable Solaris process contracts (experimental)],
[
@@ -925,7 +922,9 @@ mips-sony-bsd|mips-sony-newsos4)
[ --with-solaris-privs Enable Solaris/Illumos privileges (experimental)],
[
AC_MSG_CHECKING([for Solaris/Illumos privilege support])
- if test "x$SOLARIS_PRIVS" = "xyes" ; then
+ if test "x$ac_cv_func_setppriv" = "xyes" -a \
+ "x$ac_cv_header_priv_h" = "xyes" ; then
+ SOLARIS_PRIVS=yes
AC_MSG_RESULT([found])
AC_DEFINE([NO_UID_RESTORATION_TEST], [1],
[Define to disable UID restoration test])
2015 Feb 26
2
[LLVMdev] [Mesa-dev] [PATCH 1/2 v3] configure: add visibility macro detection to configure
...c
> @@ -189,6 +189,7 @@ AX_GCC_FUNC_ATTRIBUTE([flatten])
> AX_GCC_FUNC_ATTRIBUTE([format])
> AX_GCC_FUNC_ATTRIBUTE([malloc])
> AX_GCC_FUNC_ATTRIBUTE([packed])
> +AX_GCC_FUNC_ATTRIBUTE([visibility])
>
> AM_CONDITIONAL([GEN_ASM_OFFSETS], test "x$GEN_ASM_OFFSETS" = xyes)
>
> @@ -245,17 +246,13 @@ if test "x$GCC" = xyes; then
> AC_MSG_RESULT([yes]),
> [CFLAGS="$save_CFLAGS -Wmissing-prototypes";
> AC_MSG_RESULT([no])]);
> + CFLAGS=$save_CFLAGS
>
I'm not sure we want/need this one ?
> #...
2007 Mar 19
0
2 commits - configure.ac
...@ if test "$HAVE_CAIRO" = "no"; then
AC_MSG_ERROR([cannot find cairo, which is required for build])
fi
-AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no")
-AC_SUBST(MAD_LIBS)
-if test "x$HAVE_MAD" = xyes; then
- AC_DEFINE(HAVE_MAD, 1, [Define if mad is enabled])
+AC_ARG_ENABLE(mad,
+ AS_HELP_STRING([--enable-mad],
+ [enable mad audio (default=yes)])],
+ enable_mad=$enableval,
+ enable_mad="yes")
+
+if test "$enable_mad" = "yes"; then
+ AC_CHECK_LIB(mad, mad_decoder...
2013 Nov 20
4
[PATCH 1/2] Revert "configure.ac : If gcc is version 4.2, use -fgnu89-inline."
...ses itself as gcc 4.2, the last GPL version of gcc)
---
configure.ac | 12 ++++--------
1 file changed, 4 insertions(+), 8 deletions(-)
diff --git a/configure.ac b/configure.ac
index 7f63a04..fa6f4fb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -396,7 +396,7 @@ if test x$ac_cv_c_compiler_gnu = xyes ; then
if test x$enable_gcc_werror = "xyes" ; then
CFLAGS="$CFLAGS -Werror "
CXXFLAGS="$CXXFLAGS -Werror "
- fi
+ fi
XIPH_ADD_CFLAGS([-Wdeclaration-after-statement])
XIPH_ADD_CFLAGS([-D_FORTIFY_SOURCE=2])
@@ -409,18 +409,14 @@ if test x$ac_cv_c_compiler...
2015 Apr 10
3
[PATCH] configure: only use -mstackrealign for mingw32
...atthews wrote:
> ---
> configure.ac | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/configure.ac b/configure.ac
> index eb9b0cc..e7d68c3 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -399,9 +399,11 @@ if test x$ac_cv_c_compiler_gnu = xyes ; then
>
> if test "x$asm_optimisation$sse_os" = "xyesyes" ; then
> XIPH_ADD_CFLAGS([-msse2])
> - XIPH_ADD_CFLAGS([-mstackrealign])
> fi
> + fi
>
> +if test "$host_os" = "mingw32" ; then
> + XIPH_ADD_CFLAGS([-mstackrea...
2012 Feb 06
2
[PATCH] build: Choose a virtual directory for the daemon which is not a symlink.
...stfsd
+ ( cd tmp && find | cpio --quiet -o -H newc ) > $@-t
+ rm -rf tmp
mv $@-t $@
supermin.d/init.img: init
diff --git a/configure.ac b/configure.ac
index 5caca32..3712d19 100644
--- a/configure.ac
+++ b/configure.ac
@@ -278,6 +278,26 @@ if test "x$enable_daemon" = "xyes"; then
AC_DEFINE([VALGRIND_DAEMON],[1],[Define to 1 to run the daemon under valgrind])
AC_DEFINE_UNQUOTED([VALGRIND_LOG_PATH],["$(pwd)"],[Path to save valgrind log files])
fi
+
+ dnl Which directory should we put the daemon in? NOTE: This
+...
2015 Feb 17
7
[LLVMdev] [PATCH 0/2 v3] add visibility hidden to tls entry points
Patch 1 adds a check for the compilers visibility macro to configure.ac.
Patch 2 avoids redefined symbol errors in clang of the tls entry points.
Based on a suggestion from Rafael Ávila de Espíndola <rafael.espindola at gmail.com>
in http://llvm.org/bugs/show_bug.cgi?id=19778.
Tested with gcc 4.9 and clang 3.6(rc)
Marc Dietrich (2):
configure: add visibility macro detection to configure
2019 Jan 22
2
[PATCH] gobject: Add Vala binding support
...IGEN_CHECK([VERSION], [API_VERSION], [FOUND_INTROSPECTION], [DEFAULT])
+# --------------------------------------
+# Check vapigen existence and version
+#
+# See http://live.gnome.org/Vala/UpstreamGuide for detailed documentation
+AC_DEFUN([VAPIGEN_CHECK],
+[
+ AS_IF([test "x$3" != "xyes"], [
+ m4_provide_if([GOBJECT_INTROSPECTION_CHECK], [], [
+ m4_provide_if([GOBJECT_INTROSPECTION_REQUIRE], [], [
+ AC_MSG_ERROR([[You must call GOBJECT_INTROSPECTION_CHECK or GOBJECT_INTROSPECTION_REQUIRE before using VAPIGEN_CHECK unless using the FOUND_INTROSPECTI...
2019 Jan 22
1
[PATCH] gobject: Add Vala binding support
...IGEN_CHECK([VERSION], [API_VERSION], [FOUND_INTROSPECTION], [DEFAULT])
+# --------------------------------------
+# Check vapigen existence and version
+#
+# See http://live.gnome.org/Vala/UpstreamGuide for detailed documentation
+AC_DEFUN([VAPIGEN_CHECK],
+[
+ AS_IF([test "x$3" != "xyes"], [
+ m4_provide_if([GOBJECT_INTROSPECTION_CHECK], [], [
+ m4_provide_if([GOBJECT_INTROSPECTION_REQUIRE], [], [
+ AC_MSG_ERROR([[You must call GOBJECT_INTROSPECTION_CHECK or GOBJECT_INTROSPECTION_REQUIRE before using VAPIGEN_CHECK unless using the FOUND_INTROSPECTI...
2012 Sep 25
0
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v3)
...opusfile], [0.0])
+
+AC_USE_SYSTEM_EXTENSIONS
+AC_SYS_LARGEFILE
+
+AM_INIT_AUTOMAKE([1.11 foreign dist-bzip2 no-dist-gzip])
+LT_INIT
+
+AC_ARG_ENABLE([assert],
+ AS_HELP_STRING([--enable-assert], [Enable assertions in code]),,
+ enable_assert=no)
+
+AS_IF([test "x$enable_assert" = "xyes"], [
+ AC_DEFINE([OP_ENABLE_ASSERTIONS], [1], [Enable assertions in code])
+])
+
+AC_ARG_ENABLE([http],
+ AS_HELP_STRING([--disable-http], [Disable HTTP support]),,
+ enable_http=yes)
+
+AS_IF([test "x$enable_http" != "xno"],
+ [openssl="openssl"
+ AC_DEFIN...
2010 Aug 16
4
Final(?) changes committed
Hi,
In addition to the strptime change that Darren has just committed to
fix Irix, I have committed a change to ssh(1) that affects all platforms:
> - djm at cvs.openbsd.org 2010/08/12 21:49:44
> [ssh.c]
> close any extra file descriptors inherited from parent at start and
> reopen stdin/stdout to /dev/null when forking for ControlPersist.
>
> prevents tools that
2019 Jan 22
2
Re: [PATCH] gobject: Add Vala binding support
...IGEN_CHECK([VERSION], [API_VERSION], [FOUND_INTROSPECTION],
[DEFAULT])
+# --------------------------------------
+# Check vapigen existence and version
+#
+# See http://live.gnome.org/Vala/UpstreamGuide for detailed
documentation
+AC_DEFUN([VAPIGEN_CHECK],
+[
+ AS_IF([test "x$3" != "xyes"], [
+ m4_provide_if([GOBJECT_INTROSPECTION_CHECK], [], [
+ m4_provide_if([GOBJECT_INTROSPECTION_REQUIRE], [], [
+ AC_MSG_ERROR([[You must call GOBJECT_INTROSPECTION_CHECK
or GOBJECT_INTROSPECTION_REQUIRE before using VAPIGEN_CHECK unless
using the FOUND_INTROSPECTI...
2012 Sep 25
3
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v2)
...opusfile], [0.0])
+
+AC_USE_SYSTEM_EXTENSIONS
+AC_SYS_LARGEFILE
+
+AM_INIT_AUTOMAKE([1.11 foreign dist-bzip2 no-dist-gzip])
+LT_INIT
+
+AC_ARG_ENABLE([assert],
+ AS_HELP_STRING([--enable-assert], [Enable assertions in code]),,
+ enable_assert=no)
+
+AS_IF([test "x$enable_assert" = "xyes"], [
+ AC_DEFINE([OP_ENABLE_ASSERTIONS], [1], [Enable assertions in code])
+])
+
+AC_ARG_ENABLE([http],
+ AS_HELP_STRING([--disable-http], [Disable HTTP support]),,
+ enable_http=yes)
+
+AS_IF([test "x$enable_http" != "xno"],
+ [openssl="openssl"
+ AC_DEFIN...
2004 Sep 10
1
latest checkins
...a new public interface, don't forget
> to
> update the libtool version before the release, from 1:0:0 to 2:0:1,
> to
> reflect this.
yes, I'll be checking that in today.
Matt, on a separate note, the Ogg test in configure.in is:
AM_CONDITIONAL(FLaC__HAS_OGG, [test $have_ogg = xyes])
I thought it would be:
AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes])
???
Josh
__________________________________________________
Do You Yahoo!?
Find a job, post your resume.
http://careers.yahoo.com