libXaw: update to 1.0.16.

Code-cleanup and build-fixes...

Alan Coopersmith (13):
      Set close-on-exec when opening files
      Variable scope reductions as suggested by cppcheck
      Handle redundantInitialization warnings from cppcheck
      Use C99 designated initializers where appropriate
      gitlab CI: add xz-utils to container for "make distcheck"
      unifdef NCR
      unifdef sony
      unifdef QNX4
      unifdef AIXV3 || __SCO__
      unifdef __osf__
      unifdef __UNIXOS2__
      Remove unused sharedlib.c
      unifdef ISC

Thomas E. Dickey (27):
      build-fix
      fix missing-initializer warnings
      quiet conversion-warnings with casts
      provide fallback for deprecated isascii/toascii
      reduce compiler-warnings using casts
      cppcheck scope and assignment warnings
      manpage: adjust line-breaks to avoid embedded full-stops
      manpage: assume .EX/.EE macros
      manpage: improve formatting consistency of bold/italics
      fix references to uninitialized data when constructing argument-lists
      reduce variable-length argument lists to match the existing code
      delete unused assignments
      add check for null pointer, avoid dereferencing
      add check for null pointer, avoid dereferencing
      add check for null pointer, avoid dereferencing
      add check for null pointer, avoid dereferencing
      add check for null pointer, avoid dereferencing
      add check for null pointer, avoid dereferencing
      add check for null pointer, avoid dereferencing
      split-up assignments which give unnecessary compiler-warnings
      scan-build(clang-17) reports possible null dereference, add checks
      fix clang/gcc warnings for undefined behavior, also fix a bug
      clang/gcc warnings about undefined behavior (minor bug-fix)
      amend change to XawListChange()
      make the examples configurable as (interactive) unit-tests
      delete code which is never used
      libXaw 1.0.16:  amends XawListChange() prototype, plus code-cleanup

Walter Harms (4):
      add examples
      add xawhisto
      add simple widget demo
      expand for simple widget demo
This commit is contained in:
wiz 2024-03-11 08:59:16 +00:00
parent 28580469f9
commit 2f70b56f5d
3 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.23 2023/03/17 08:17:08 tnn Exp $
# $NetBSD: Makefile,v 1.24 2024/03/11 08:59:16 wiz Exp $
DISTNAME= libXaw-1.0.15
DISTNAME= libXaw-1.0.16
CATEGORIES= x11 graphics
MASTER_SITES= ${MASTER_SITE_XORG:=lib/}
EXTRACT_SUFX= .tar.xz

View File

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.17 2023/03/16 07:19:22 wiz Exp $
$NetBSD: distinfo,v 1.18 2024/03/11 08:59:16 wiz Exp $
BLAKE2s (libXaw-1.0.15.tar.xz) = 0f0e8295205a6a315084461f9226b8a1453af925400f407c3186e5423bcd9990
SHA512 (libXaw-1.0.15.tar.xz) = 8edbf280b7b24b9040c291545053c1251d6af7e7f56da43a6065a1848245863eb52bdfc28c2f18dbb6597a4064394a44f4df5d8596a1a467549ccc9ce50a7821
Size (libXaw-1.0.15.tar.xz) = 589832 bytes
BLAKE2s (libXaw-1.0.16.tar.xz) = 409632464b2c0090aa6e7bf6bdde3b77c128ca065a479e7a89cba8a45a72196d
SHA512 (libXaw-1.0.16.tar.xz) = 1cabad1a9b06dec7de601b977e844536823ee1a0045244acc42ca6b6107da9b4953736d94898a96cab40845eab77dae21e20e1fa66a3dfc4dedf575dfbca04aa
Size (libXaw-1.0.16.tar.xz) = 602848 bytes

View File

@ -1,11 +1,11 @@
# $NetBSD: hacks.mk,v 1.1 2008/01/29 03:57:36 bjs Exp $
# $NetBSD: hacks.mk,v 1.2 2024/03/11 08:59:16 wiz Exp $
.if !defined(LIBXAW_HACKS_MK)
LIBXAW_HACKS_MK= # defined
.include "../../mk/compiler.mk"
.if !empty(CC_VERSION:Mgcc-[34]*)
.if ${CC_VERSION:Mgcc-[34]*}
CFLAGS+= -fno-strict-aliasing
PKG_HACKS+= no-strict-aliasing
.endif