similar to: [ANNOUNCE] xclipboard 1.1.5

Displaying 20 results from an estimated 2000 matches similar to: "[ANNOUNCE] xclipboard 1.1.5"

2023 Apr 09
0
[ANNOUNCE] xwininfo 1.1.6
xwininfo prints information about windows on an X server. Various information is displayed depending on which options are selected. This release adds an option, disabled by default, to use libxcb-errors to improve the reporting of any X protocol error messages that may occur. To enable it, pass --with-xcb-errors to configure. Alan Coopersmith (8): gitlab CI: add a basic build test
2023 May 07
0
[ANNOUNCE] xf86-video-i128 1.4.1
This is the Xorg driver for Number Nine Imagine 128 (I128) video cards, which were sold in the mid-to-late 1990's for PCI & AGP bus systems. Alan Coopersmith (8): Build xz tarballs instead of bzip2 Fix spelling/wording issues gitlab CI: add a basic build test gitlab CI: stop requiring Signed-off-by in commits Handle -Wunused-const-variable warnings
2019 Mar 11
0
[ANNOUNCE] libXdamage 1.1.5
This package contains the Xlib-based library for the X Damage extension. Adam Jackson (1): configure: Remove AM_MAINTAINER_MODE Alan Coopersmith (3): Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS Update README for gitlab migration libXdamage 1.1.5 Colin Walters (1): autogen.sh: Implement GNOME Build API Emil Velikov (1): autogen.sh: use
2019 Mar 16
0
[ANNOUNCE] libXxf86dga 1.1.5
libXxf86dga is the Xlib-based client library for the XFree86-DGA extension. This release raises the minimum required libX11 version to 1.6.0 from 2013. Alan Coopersmith (3): Update README for gitlab migration Update configure.ac bug URL for gitlab migration libXxf86dga 1.1.5 Emil Velikov (1): autogen.sh: use quoted string variables Michael Joost (1): Remove
2019 Jul 14
0
[ANNOUNCE] xman 1.1.5
xman is a graphical manual page browser using the Athena Widgets (Xaw) toolkit. Alan Coopersmith (8): Change fall through comment in ScrollByL.c to match gcc's requirements Update README for gitlab migration Update configure.ac bug URL for gitlab migration Delete unused function Name() from tkfuncs.c Make CreateManpageWidget use String type for name argument
2019 Jul 14
0
[ANNOUNCE] xwininfo 1.1.5
xwininfo prints information about windows on an X server. Alan Coopersmith (4): Update README for gitlab migration Update configure.ac bug URL for gitlab migration Clear -Wsign-compare warnings from gcc 7.3 xwininfo 1.1.5 David Hill (1): In Find_Client, if (win == XCB_WINDOW_NONE), roots should be freed. Stéphane Aulery (1): Improve manpage and -h option git
2023 Jun 03
0
[ANNOUNCE] libdmx 1.1.5
This library allows X11 clients to use the Distributed Multihead X (DMX) Extension, as previously implemented in the Xdmx server. X.Org removed support for the Xdmx server from the xorg-server releases in the version 21 release in 2021. This library is thus now considered deprecated and the version 1.1.5 release is the last release X.Org plans to make of libdmx. Alan Coopersmith (7):
2015 May 01
0
[ANNOUNCE] libXt 1.1.5
libXt is the X Toolkit Intrinsics library used to build older generation toolkits such as Motif & Xaw. Alan Coopersmith (8): Revert "Avoid shadowing variables." If CFLAGS_FOR_BUILD is not set, include CWARNFLAGS in default value makestrs: use strchr() instead of index() makestrs: Replace malloc()+strcpy() calls with strdup() calls makestrs: Replace
2008 Sep 04
0
[ANNOUNCE] libX11 1.1.5
Hi, This is just an i18n and bugfix release, essentially. Most of the fixes bar James's most recent ones have been in 1.1 branch for a while, and the rest were just cherry-picked from master. Per discussion on ajax with IRC, this is targeted at 7.4, so I've bumped the archive and wiki both. Adam Jackson (1): Bug #15884: Remove useless sleep()'s from the connection code. Alan
2020 Sep 25
0
Re: Help on Meson build Error
On Fri, Sep 25, 2020 at 10:03 AM Wei Wang <weiwangcloud2020@gmail.com> wrote: > On Thu, Sep 24, 2020 at 2:58 PM Ján Tomko <jtomko@redhat.com> wrote: > >> On a Thursday in 2020, Wei Wang wrote: >> >Seems it didn't appear on the mailing list, resent it. >> > >> > Hi folks, >> > >> >I'm trying to build libvirt using meson
2019 Jan 19
2
[PATCH xf86-video-nouveau] xv: fix build warning regarding const qualifier
Fixes warning with gcc 8.2: nouveau_xv.c: In function ‘NVInitVideo’: nouveau_xv.c:2247:68: warning: passing argument 2 of ‘vlCreateAdaptorXvMC’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] adaptorsXvMC[0] = vlCreateAdaptorXvMC(pScreen, textureAdaptor[0]->name); ~~~~~~~~~~~~~~~~~^~~~~~ In file included from
2019 Jan 19
1
[PATCH xf86-video-nouveau] xv: fix build warning regarding const qualifier
On Sat, 19 Jan 2019 at 18:32, Ilia Mirkin <imirkin at alum.mit.edu> wrote: > Is vlCreateAdaptorXvMC just silly, or does it really want to take > ownership of the name pointer? > vlCreateAdaptorXvMC( ) doesn't need to take over ownership of the name pointer, so yes - I guess it's being silly in one respect by not being specific about const. > > On Sat, Jan 19, 2019
2017 May 16
0
[PATCH v7 0/5] replace hwmon_device_register for hwmon_device_register_with_info
On 05/17/2017 07:18 AM, Oscar Salvador wrote: > This v7 fixes removes dummy functions which only had a return and moves the code > into the switch statements. Hey Oscar, I see new warnings with this series: /home/skeggsb/git/nouveau/drm/nouveau/nouveau_hwmon.c:645:8: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] *buf = input_label;
2019 Jan 19
0
[PATCH xf86-video-nouveau] xv: fix build warning regarding const qualifier
Is vlCreateAdaptorXvMC just silly, or does it really want to take ownership of the name pointer? On Sat, Jan 19, 2019 at 6:30 PM Rhys Kidd <rhyskidd at gmail.com> wrote: > > Fixes warning with gcc 8.2: > > nouveau_xv.c: In function ‘NVInitVideo’: > nouveau_xv.c:2247:68: warning: passing argument 2 of ‘vlCreateAdaptorXvMC’ discards ‘const’ qualifier from pointer target type
2019 Jan 20
0
[PATCH xf86-video-nouveau v2] xv: Silence build warning regarding const qualifier
Silences warning with gcc 8.2: nouveau_xv.c: In function ‘NVInitVideo’: nouveau_xv.c:2247:68: warning: passing argument 2 of ‘vlCreateAdaptorXvMC’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] adaptorsXvMC[0] = vlCreateAdaptorXvMC(pScreen, textureAdaptor[0]->name); ~~~~~~~~~~~~~~~~~^~~~~~ In file included
2010 Apr 17
1
Xapian 1.1.5 (release candidate for 1.2.0) released
I've released Xapian 1.1.5. We're getting really close to releasing a stable 1.2.0, and this is a possible release candidate. So please try it out and report any issues you find. We're hopefully looking at a 1.2.0 release later this month. However, this is still nominally a development release with the usual provisos about ABI and database formats potentially being subject to
2006 Dec 23
0
[ANNOUNCE] util-macros 1.1.5
Matthieu Herrb: Bug 9368: non portable sed usage in xorgversion.m4 git tag: util-macros-1.1.5 http://xorg.freedesktop.org/archive/individual/util/util-macros-1.1.5.tar.bz2 MD5: 51952682d8b42aeda3af5cee0133ce2c util-macros-1.1.5.tar.bz2 SHA1: c4bbfa389df7e5f568599d6313f2460a381f0502 util-macros-1.1.5.tar.bz2 http://xorg.freedesktop.org/archive/individual/util/util-macros-1.1.5.tar.gz
2008 Sep 26
3
Unable to emerge Wine 1.1.5 on Gentoo AMD64
Hello, I am currently trying to emerge wine on my Gentoo AMD64 system, and it is currently failing on the last package. I haven't been able to make much sense out of the error message. If anyone knows what is going on or can otherwise point me to where I should look or anything to try, it would be greatly appreciated. Here is the error I am getting: make: *** [programs] Error 2 * *
2004 Aug 06
1
Error in compiling Speexdec code (Speex-1.1.5 code) on Windows using VC++6.0
Hi, I've downloaded the Speex-1.1.5 code and am trying to compile the Speexdec code using Microsoft VC++ 6.0 IDE. When I try to open the speexdec.dsw workspace, I get a dialog asking to locate the ogg_static file. I simply cancel that message, and then the project is opened in the VC++ 6.0 IDE. Now, when I simply try to compile the program, I receive this 5 error messages. error1.
2008 Oct 23
2
1.1.5 abort with mal-formed address in header
Hi An email with a mal-formed address in a header like: To:(receiver at domain.com (Starting with a comment, with no closing ')' ) causes dovecot 1.1.5 to panic and abort. This is similar to the problem fixed by: http://hg.dovecot.org/ dovecot-1.1/rev/04fdaa2f831e This patch seems to resolve the problem: --- dovecot-1.1.5/src/lib-mail/message-address.c.orig 2008-10-23