CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 02:31:22 Modified files: lib/libXrandr : ChangeLog Makefile.in README.md aclocal.m4 compile config.h.in configure configure.ac

CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 02:26:45 Modified files: lib/libXi : ChangeLog Makefile.in README.md aclocal.m4 compile configure configure.ac install-sh

CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 02:25:11 xenocara/lib/libXi/m4 Update of /cvs/xenocara/lib/libXi/m4 In directory cvs.openbsd.org:/tmp/cvs-serv37861/m4 Log Message: Directory /cvs/xenocara/lib/libXi/m4 added to the

CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 02:21:09 Modified files: lib/libXfixes : COPYING ChangeLog Makefile.am Makefile.in README.md aclocal.m4 compile config.h.in

CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 02:19:15 xenocara/lib/libXfixes/m4 Update of /cvs/xenocara/lib/libXfixes/m4 In directory cvs.openbsd.org:/tmp/cvs-serv25429/m4 Log Message: Directory /cvs/xenocara/lib/libXfixes/m4 added to

CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 02:16:49 Modified files: lib/libXdamage : ChangeLog Makefile.in README.md aclocal.m4 config.h.in configure configure.ac install-sh

CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 02:13:41 Modified files: lib/libXcomposite: ChangeLog Makefile.in README.md aclocal.m4 config.h.in configure configure.ac install-sh

CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 02:00:43 Modified files: driver/xf86-video-r128: ChangeLog Makefile.in README aclocal.m4 config.h.in configure configure.ac

CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 01:50:30 Modified files: driver/xf86-video-ati: ChangeLog Makefile.in README.md aclocal.m4 config.h.in configure

CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 01:28:54 Modified files: driver/xf86-input-mouse: COPYING ChangeLog Makefile.in aclocal.m4 config.h.in configure

CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 01:17:28 Modified files: app/xwd: ChangeLog Makefile.in README.md aclocal.m4 config.h.in configure configure.ac dsimple.c

CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 01:03:55 Modified files: app/xrdb : ChangeLog Makefile.in aclocal.m4 compile config.h.in configure configure.ac install-sh

CVS: cvs.openbsd.org: xenocara

2023-07-03 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/07/03 00:55:45 Modified files: app/setxkbmap : ChangeLog Makefile.in aclocal.m4 config.h.in configure configure.ac install-sh setxkbmap.c

Re: Is it possible to use the amdgpu driver with my Amd R7-240 gpu ?

2023-06-24 Thread Matthieu Herrb
n advance by running : fw_update amdgpu If this works, see the config(8) manual page for details to save the modified kernel. -- Matthieu Herrb

Re: Diff for evaluation (WACOM tablet driver)

2023-06-19 Thread Matthieu Herrb
t; > if (uha->uaa->product == USB_PRODUCT_WACOM_INTUOS_DRAW) { > @@ -174,40 +186,64 @@ uwacom_intr(struct uhidev *addr, void *buf, u_int len) > { > struct uwacom_softc *sc = (struct uwacom_softc *)addr; > struct hidms *ms = >sc_ms; > - u_int32_t buttons = 0; > + u_int32_t pad_buttons = 0; > + u_int32_t stylus_buttons = 0; > uint8_t *data = (uint8_t *)buf; > - int i, x, y, pressure; > + int x, y, pressure,distance; > > + #ifdef UWACOM_DEBUG > + UWACOM_PACKET_PRINTF(data, len); > + #endif > if (ms->sc_enabled == 0) > return; > > - /* ignore proximity, it will cause invalid button 2 events */ > - if ((data[0] & 0xf0) == 0xc0) > - return; > - > x = hid_get_data(data, len, >sc_loc_x); > y = hid_get_data(data, len, >sc_loc_y); > + pressure = hid_get_data(data, len, >sc_loc_z); > + distance = hid_get_data(data, len, >sc_loc_w); > + > + if (!sc->sc_moved) > + { > + sc->sc_x = x; > + sc->sc_y = y; > + sc->sc_z = pressure; > + sc->sc_w = distance; > + sc->sc_moved = 1; > + } > + > + int dx = sc->sc_x - x; > + int dy = sc->sc_y - y; > + int dz = sc->sc_z/32 - pressure/32; // Clamp the sensetivity to be in > the range of -127 to 127 > + int dw = sc->sc_w - distance; > + > + sc->sc_x = x; > + sc->sc_y = y; > + sc->sc_z = pressure; > + sc->sc_w = distance; > > if (sc->sc_flags & UWACOM_BIG_ENDIAN) { > x = be16toh(x); > y = be16toh(y); > } > - > - for (i = 0; i < ms->sc_num_buttons; i++) > - if (hid_get_data(data, len, >sc_loc_btn[i])) > - buttons |= (1 << i); > - > - if (sc->sc_flags & UWACOM_USE_PRESSURE) { > - pressure = hid_get_data(data, len, >sc_loc_tip_press); > - if (pressure > 10) > - buttons |= 1; > - else > - buttons &= ~1; > - } > - > - if (x != 0 || y != 0 || buttons != ms->sc_buttons) { > - wsmouse_position(ms->sc_wsmousedev, x, y); > - wsmouse_buttons(ms->sc_wsmousedev, buttons); > + > + for (int i = 0; i < ms->sc_num_stylus_buttons; i++) > + if (hid_get_data(data, len, >sc_loc_stylus_btn[i])) > + stylus_buttons |= (1 << i); > + > + for (int i = 0; i < ms->sc_num_pad_buttons; i++) > + if (hid_get_data(data, len, >sc_loc_pad_btn[i])) > + pad_buttons |= (1 << i); > + > + > + #ifdef UWACOM_DEBUG > + UWACOM_BUTTON_EVENT(pad_buttons); > + UWACOM_BUTTON_EVENT(stylus_buttons); > + #endif > + > + if (x != 0 || y != 0 || pressure != 0 || distance != 0 > + || pad_buttons != ms->sc_buttons || stylus_buttons != > ms->sc_buttons) { > + wsmouse_buttons(ms->sc_wsmousedev, (pad_buttons | > stylus_buttons)); > + wsmouse_motion(ms->sc_wsmousedev, -dx, dy, dz, dw); > wsmouse_input_sync(ms->sc_wsmousedev); > } > } > -- Matthieu Herrb

CVS: cvs.openbsd.org: ports

2023-06-18 Thread Matthieu Herrb
CVSROOT:/cvs Module name:ports Changes by: matth...@cvs.openbsd.org2023/06/18 04:29:15 Modified files: x11/xscope : Makefile distinfo Log message: Update to xscope 1.4.4 ok kn@ rsadowski@ aja@

[update] x11/xscope

2023-06-18 Thread Matthieu Herrb
Hi trivial update to xscope 1.4.4. Ok ? Various bug fixes + added support for Xdamage 1.1 decoding. Index: Makefile === RCS file: /local/cvs/ports/x11/xscope/Makefile,v retrieving revision 1.6 diff -u -p -u -r1.6 Makefile ---

make lib-depends-check failure on x11/xscope

2023-06-18 Thread Matthieu Herrb
Hi, Looks like something broken with recent perl use 2.36 code : cd /usr/ports/x11/xscope make package make lib-depends-check

CVS: cvs.openbsd.org: ports

2023-06-17 Thread Matthieu Herrb
CVSROOT:/cvs Module name:ports Changes by: matth...@cvs.openbsd.org2023/06/17 02:16:58 Modified files: x11/ctwm : Makefile distinfo Log message: Update to ctwm 4.1.0. WANLIB fix & ok sthen@

[update] ctwm 4.1.0

2023-06-17 Thread Matthieu Herrb
IZE (ctwm-4.1.0.tar.gz) = 983340 -- Matthieu Herrb

CVS: cvs.openbsd.org: ports

2023-06-17 Thread Matthieu Herrb
CVSROOT:/cvs Module name:ports Changes by: matth...@cvs.openbsd.org2023/06/17 01:00:38 Modified files: x11/xrestop: Makefile distinfo Log message: Update to xrestop 0.6, ok sthen@

CVS: cvs.openbsd.org: xenocara

2023-06-15 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/06/15 10:38:05 Modified files: . : MODULES 3RDPARTY Log message: update

CVS: cvs.openbsd.org: xenocara

2023-06-15 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/06/15 10:24:12 Modified files: lib/libX11/src : InitExt.c Log message: Fixes CVE-2023-3138: X servers could return values from XQueryExtension that would cause Xlib to write entries

[update] x11/xrestop to 0.6

2023-06-15 Thread Matthieu Herrb
-0.6.tar.gz) = xKISgIvnA7SSmwH6V+/EbmtmK5WNwzwETv6rOAZc1d0= +SIZE (xrestop-0.6.tar.gz) = 165831 -- Matthieu Herrb

CVS: cvs.openbsd.org: xenocara

2023-05-21 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/21 06:27:50 Modified files: . : MODULES Log message: update

CVS: cvs.openbsd.org: xenocara

2023-05-21 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/21 06:04:40 Modified files: lib/freetype/src/truetype: ttgxvar.c Log message: Revert accicentally committed test/debug stuff.

CVS: cvs.openbsd.org: xenocara

2023-05-21 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/21 04:12:47 Modified files: . : 3RDPARTY Log message: update

CVS: cvs.openbsd.org: xenocara

2023-05-21 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/21 03:26:03 Modified files: distrib/sets/lists/xbase: mi Log message: sync

CVS: cvs.openbsd.org: xenocara

2023-05-21 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/21 03:25:34 Modified files: lib/freetype : CMakeLists.txt ChangeLog LICENSE.TXT Makefile README README.git Symbols.map autogen.sh

CVS: cvs.openbsd.org: xenocara

2023-05-21 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/21 03:22:56 xenocara/lib/freetype/subprojects Update of /cvs/xenocara/lib/freetype/subprojects In directory cvs.openbsd.org:/tmp/cvs-serv96403/subprojects Log Message: Directory

Re: cwm: add fvwm and tvm as default wm entries

2023-05-15 Thread Matthieu Herrb
00 > @@ -307,6 +307,8 @@ conf_init(struct conf *c) > conf_cmd_add(c, "lock", "xlock"); > conf_cmd_add(c, "term", "xterm"); > conf_wm_add(c, "cwm", "cwm"); > + conf_wm_add(c, "fvwm", "fvwm"); > + conf_wm_add(c, "twm", "twm"); > > c->font = xstrdup("sans-serif:pixelsize=14:bold"); > c->wmname = xstrdup("CWM"); > -- Matthieu Herrb

CVS: cvs.openbsd.org: xenocara

2023-05-09 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/09 14:58:35 Modified files: . : MODULES Log message: update

CVS: cvs.openbsd.org: xenocara

2023-05-09 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/09 14:17:05 Modified files: driver/xf86-video-sunffb: ChangeLog Makefile.am Makefile.in aclocal.m4 config.h.in configure

CVS: cvs.openbsd.org: xenocara

2023-05-09 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/09 14:04:40 Modified files: driver/xf86-video-sunffb/src: ffb.h Log message: Include xf86Cursor.h instead of xf86RamDac.h

Re: font.port.mk: change default font type handling

2023-05-09 Thread Matthieu Herrb
> --- fonts/jaldi/pkg/PLIST 23 Jun 2022 12:50:04 - 1.1.1.1 > +++ fonts/jaldi/pkg/PLIST 9 May 2023 12:42:37 -0000 > @@ -1,4 +1,4 @@ > share/fonts/ > @fontdir share/fonts/jaldi/ > -share/fonts/jaldi/Jaldi-Bold.ttf > -share/fonts/jaldi/Jaldi-Regular.ttf > +share/fonts/jaldi/Jaldi-Bold.otf > +share/fonts/jaldi/Jaldi-Regular.otf > -- Matthieu Herrb

CVS: cvs.openbsd.org: xenocara

2023-05-08 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/08 23:37:33 Added files: font/encodings : iso8859-14.enc Log message: Add missing file in previsous commit.

[new/help] print/ft2demos

2023-05-08 Thread Matthieu Herrb
on the subject). Advices are welcome, -- Matthieu Herrb ft2demos.tar.gz Description: application/tar-gz

x1/qt5/qtbase pkg-config files issue

2023-05-08 Thread Matthieu Herrb
apparently. Any clues ? -- Matthieu Herrb

CVS: cvs.openbsd.org: xenocara

2023-05-08 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/08 10:43:56 Modified files: . : MODULES Log message: update

CVS: cvs.openbsd.org: xenocara

2023-05-08 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/08 10:03:58 Modified files: driver/xf86-video-dummy: ChangeLog aclocal.m4 configure configure.ac driver/xf86-video-dummy/src: dummy.h

CVS: cvs.openbsd.org: xenocara

2023-05-08 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/08 09:58:50 Modified files: distrib/sets/lists/xfont: mi Log message: sync

CVS: cvs.openbsd.org: xenocara

2023-05-08 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/08 09:35:25 Modified files: font/encodings : Makefile.am Makefile.in aclocal.m4 Log message: Add ISO8859-14 encoding This allows legacy applications (xcalc for instance) to work

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 11:44:52 Modified files: . : MODULES Log message: update

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 11:22:15 Modified files: app/xinput : ChangeLog Makefile.in aclocal.m4 compile configure configure.ac app/xinput/man : Makefile.in xinput.man

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 11:18:32 Modified files: app/xinput/src : list.c Log message: Fix clang warning in local changes.

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 11:05:33 Modified files: app/xdpyinfo : ChangeLog Makefile.bsd-wrapper aclocal.m4 configure configure.ac xdpyinfo.c Log message: Update to xdpyinfo 1.3.4

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 11:00:27 Modified files: util/macros: xorg-macros.m4.in Log message: Remove -Wredundant-decls gcc warning option again. There is still a lot of noise on gcc architectures.

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 10:07:44 Modified files: lib/libXpm : COPYING ChangeLog Makefile.am Makefile.bsd-wrapper Makefile.in README.md aclocal.m4

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 09:50:05 xenocara/lib/libXpm/test/pixmaps/no-mem Update of /cvs/xenocara/lib/libXpm/test/pixmaps/no-mem In directory cvs.openbsd.org:/tmp/cvs-serv66830/no-mem Log Message: Directory

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 09:50:05 xenocara/lib/libXpm/test/pixmaps/good Update of /cvs/xenocara/lib/libXpm/test/pixmaps/good In directory cvs.openbsd.org:/tmp/cvs-serv66830/good Log Message: Directory

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 09:50:05 xenocara/lib/libXpm/test/pixmaps/invalid Update of /cvs/xenocara/lib/libXpm/test/pixmaps/invalid In directory cvs.openbsd.org:/tmp/cvs-serv66830/invalid Log Message: Directory

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 09:49:46 xenocara/lib/libXpm/test/pixmaps Update of /cvs/xenocara/lib/libXpm/test/pixmaps In directory cvs.openbsd.org:/tmp/cvs-serv78705/pixmaps Log Message: Directory

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 09:47:58 xenocara/lib/libXpm/test Update of /cvs/xenocara/lib/libXpm/test In directory cvs.openbsd.org:/tmp/cvs-serv99233/test Log Message: Directory /cvs/xenocara/lib/libXpm/test added to

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 09:10:58 Modified files: lib/libXRes: ChangeLog Makefile.in README.md aclocal.m4 compile configure configure.ac

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 09:02:55 Modified files: lib/libXxf86dga: ChangeLog Makefile.in README.md aclocal.m4 configure configure.ac lib/libXxf86dga/man: Makefile.in

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 08:53:56 Modified files: lib/libfontenc : ChangeLog aclocal.m4 config.h.in configure configure.ac Log message: Update to libfontenc 1.1.7

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 08:51:11 Modified files: lib/libxkbfile : ChangeLog aclocal.m4 config.h.in configure configure.ac Log message: Update to libxkbfile 1.1.2

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 08:47:36 Removed files: lib/libxkbui : AUTHORS COPYING ChangeLog INSTALL Makefile.am Makefile.bsd-wrapper Makefile.in NEWS README

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 08:45:36 Removed files: lib/libxkbui/include/X11/extensions: XKBui.h lib/libxkbui/src: Makefile.am Makefile.in XKBui.c XKBuiPriv.h Log message: Remove libxkbui. Not built

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 08:41:56 Modified files: lib/libXdmcp : AUTHORS Array.c ChangeLog Key.c Makefile.in README.md Wraphelp.c aclocal.m4 compile

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 08:31:39 Modified files: lib/libXScrnSaver: ChangeLog Makefile.am Makefile.in aclocal.m4 configure configure.ac

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 08:22:26 Modified files: lib/libSM : ChangeLog Makefile.am Makefile.in aclocal.m4 compile config.h.in configure configure.ac

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 08:22:03 Modified files: lib/libICE : ChangeLog Makefile.in README.md aclocal.m4 compile config.h.in configure configure.ac

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 07:42:27 Modified files: lib/libXau : ChangeLog aclocal.m4 config.h.in configure configure.ac Log message: Update libXau to 1.0.11

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 07:28:03 Modified files: app/xcalc : ChangeLog Makefile.in aclocal.m4 config.h.in configure configure.ac install-sh math.c

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 02:02:59 Modified files: lib/libXft : ChangeLog Makefile.in aclocal.m4 config.h.in configure configure.ac install-sh lib/libXft/man : Makefile.in

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 02:00:31 xenocara/lib/libXft/m4 Update of /cvs/xenocara/lib/libXft/m4 In directory cvs.openbsd.org:/tmp/cvs-serv92080/m4 Log Message: Directory /cvs/xenocara/lib/libXft/m4 added to the

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 00:55:21 Modified files: . : README share/mk : bsd.xorg.mk Log message: Switch to autoconf 2.71 (required by upstream updates)

CVS: cvs.openbsd.org: xenocara

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/07 00:42:06 Modified files: . : README Log message: Remove version numbers for packages with only one version. While there, one grammar fix.

CVS: cvs.openbsd.org: ports

2023-05-07 Thread Matthieu Herrb
CVSROOT:/cvs Module name:ports Changes by: matth...@cvs.openbsd.org2023/05/07 00:39:28 Modified files: fonts/atkinson-hyperlegible: Makefile fonts/atkinson-hyperlegible/pkg: PLIST Log message: Switch to OTF to fix empty glyphs in emacs-gtk reported by

Re: Atkinson Hyperlegible vs. Emacs (and xfontsel and gimp)

2023-05-06 Thread Matthieu Herrb
02.ttf +share/fonts/Atkinson-Hyperlegible/Atkinson-Hyperlegible-Bold-102.otf +share/fonts/Atkinson-Hyperlegible/Atkinson-Hyperlegible-BoldItalic-102.otf +share/fonts/Atkinson-Hyperlegible/Atkinson-Hyperlegible-Italic-102.otf +share/fonts/Atkinson-Hyperlegible/Atkinson-Hyperlegible-Regular-102.otf -- Matthieu Herrb

CVS: cvs.openbsd.org: xenocara

2023-05-01 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/01 06:37:09 Modified files: . : MODULES Log message: update

CVS: cvs.openbsd.org: xenocara

2023-05-01 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/05/01 01:41:18 Modified files: xserver: ChangeLog aclocal.m4 configure configure.ac meson.build xserver/dix: events.c resource.c

lang/go fails to build when the ports tree is checked-out from git

2023-04-24 Thread Matthieu Herrb
Hi, After some head scratching I figured out why I couldn't build lang/go on one of my machines : I'm using git to get the ports tree from github on it. Sure it's not a supported configuration, but still it's a weird failure mode. Any clue if I this can be fixed / worked around (other than by

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 11:45:28 Modified files: . : MODULES Log message: update

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 11:45:01 Modified files: . : README Log message: Note that gettext-tools is needed for autoreconf

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 11:34:09 Modified files: driver/xf86-video-nv: ChangeLog Makefile.am Makefile.in README.G80 aclocal.m4 compile configure

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 11:15:06 Modified files: driver/xf86-input-vmmouse: ChangeLog Makefile.in aclocal.m4 config.h.in configure configure.ac

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 11:08:52 Modified files: driver/xf86-input-void: ChangeLog Makefile.am Makefile.in aclocal.m4 compile configure

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 10:38:33 Modified files: driver/xf86-input-mouse: ChangeLog Makefile.in README aclocal.m4 compile config.h.in configure

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 10:33:31 Modified files: driver/xf86-input-joystick: ChangeLog Makefile.am Makefile.in aclocal.m4 compile config.h.in

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 10:25:33 Modified files: driver/xf86-input-elographics: ChangeLog Makefile.in README.md aclocal.m4 configure configure.ac

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 10:16:52 Modified files: app/xwininfo : COPYING ChangeLog Makefile.bsd-wrapper Makefile.in README.md aclocal.m4 compile

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 09:39:01 Modified files: app/xvidtune : ChangeLog Makefile.am Makefile.in aclocal.m4 compile configure configure.ac xvidtune.c app/xvidtune/man:

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 09:34:57 Modified files: app/xkbcomp: ChangeLog Makefile.in aclocal.m4 compat.c compile config.h.in configure configure.ac

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 09:30:17 Modified files: app/xhost : COPYING ChangeLog Makefile.am Makefile.in aclocal.m4 compile config.h.in configure

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 09:25:49 Modified files: app/xdriinfo : ChangeLog Makefile.am Makefile.in aclocal.m4 compile configure configure.ac xdriinfo.c app/xdriinfo/man:

CVS: cvs.openbsd.org: xenocara

2023-04-10 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/04/10 09:20:49 Modified files: app/beforelight: COPYING ChangeLog Makefile.am Makefile.in aclocal.m4 b4light.c configure configure.ac app/beforelight/man:

CVS: cvs.openbsd.org: ports

2023-04-08 Thread Matthieu Herrb
CVSROOT:/cvs Module name:ports Changes by: matth...@cvs.openbsd.org2023/04/08 05:10:22 Modified files: x11/motif : Makefile x11/motif/patches: patch-lib_Xm_VirtKeys_c Log message: Fix patch-lib_Xm_VirtKeys_c to check max keycode value against the

CVS: cvs.openbsd.org: xenocara

2023-03-29 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/03/29 06:12:13 Modified files: xserver/composite: compwindow.c Log message: composite: Fix use-after-free of the COW CVE-2023-1393, ZDI-CAN-19866

Re: Patch to stop tearing on Intel modesetting in Xenocara

2023-03-26 Thread Matthieu Herrb
void merging parts of the main branch because it then makes merging full releases more complex. -- Matthieu Herrb

CVS: cvs.openbsd.org: xenocara

2023-03-13 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/03/13 15:20:09 Modified files: . : MODULES 3RDPARTY Log message: update

CVS: cvs.openbsd.org: xenocara

2023-03-12 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/03/12 11:44:05 Modified files: font/adobe-100dpi: Makefile.in aclocal.m4 configure font/adobe-75dpi: Makefile.in aclocal.m4 configure font/adobe-utopia-100dpi: Makefile.in

CVS: cvs.openbsd.org: xenocara

2023-03-12 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/03/12 11:41:45 Modified files: util/macros: xorg-macros.m4.in Log message: Re-add local change to use AM_MAINTAINER_MODE by default

CVS: cvs.openbsd.org: xenocara

2023-03-12 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/03/12 11:22:07 Modified files: font/adobe-100dpi: ChangeLog Makefile.am Makefile.in aclocal.m4 configure configure.ac font/adobe-75dpi: ChangeLog

CVS: cvs.openbsd.org: xenocara

2023-03-12 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/03/12 11:17:25 Modified files: font/util : ChangeLog Makefile.in aclocal.m4 configure configure.ac fontutil.m4.in font/util/man : Makefile.in Log

CVS: cvs.openbsd.org: xenocara

2023-03-12 Thread Matthieu Herrb
CVSROOT:/cvs Module name:xenocara Changes by: matth...@cvs.openbsd.org2023/03/12 11:16:15 Modified files: util/macros: COPYING ChangeLog Makefile.am Makefile.in configure configure.ac xorg-macros.m4.in Added files: util/macros

CVS: cvs.openbsd.org: ports

2023-03-06 Thread Matthieu Herrb
CVSROOT:/cvs Module name:ports Changes by: matth...@cvs.openbsd.org2023/03/06 14:30:14 Modified files: x11/xcursor-themes: Makefile distinfo Log message: Update to xcursor-themes-1.0.7. ok sthen@

maintainer update : xcursor-themes 1.0.7

2023-03-06 Thread Matthieu Herrb
) = ImOPe9Ylet+InSWvnIp7LP3PWl4YM50l+7CS2/bGY8E= -SIZE (xcursor-themes-1.0.6.tar.gz) = 2562225 +SHA256 (xcursor-themes-1.0.7.tar.gz) = 3LaLYmUjXbMGSkQn4rxa4NMPIfdGjddTRVNxXRw50Ak= +SIZE (xcursor-themes-1.0.7.tar.gz) = 2534933 -- Matthieu Herrb

Re: AMD 17h/1xh HD Audio testers wanted!

2023-03-05 Thread Matthieu Herrb
On Sun, Mar 05, 2023 at 09:59:49AM +0100, Matthieu Herrb wrote: > On Sun, Mar 05, 2023 at 08:53:00AM +0100, Alexandre Ratchov wrote: > > If you've an azalia(4) attaching as "AMD 17h/1xh HD Audio", please > > test this diff and report regressions. Especially audio lock up

<    1   2   3   4   5   6   7   8   9   10   >