Skip to content

Commit 6b5ea68

Browse files
committed
Changelog and update configure script.
1 parent 795ee24 commit 6b5ea68

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ Changes in CUPS v2.5b1 (YYYY-MM-DD)
7878
(Issue #1207)
7979
- Updated the `httpSetCookie` API to support multiple "Set-Cookie:" header
8080
values.
81+
- Updated the setuid/gid checks in libcups to use `getauxval` on Linux to avoid
82+
potential security issues (Issue #1258)
8183
- Deprecated the "page-border" Job Template attribute (Issue #1020)
8284
- Removed the `cups-config` utility (use `pkg-config` instead)
8385
- Fixed use-after-free in `cupsdAcceptClient()` when we log warning during error

configure

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6016,6 +6016,14 @@ printf "%s\n" "#define HAVE_STDINT_H 1" >>confdefs.h
60166016

60176017
fi
60186018

6019+
ac_fn_c_check_header_compile "$LINENO" "sys/auxv.h" "ac_cv_header_sys_auxv_h" "$ac_includes_default"
6020+
if test "x$ac_cv_header_sys_auxv_h" = xyes
6021+
then :
6022+
6023+
printf "%s\n" "#define HAVE_SYS_AUXV_H 1" >>confdefs.h
6024+
6025+
fi
6026+
60196027
ac_fn_c_check_header_compile "$LINENO" "sys/ioctl.h" "ac_cv_header_sys_ioctl_h" "$ac_includes_default"
60206028
if test "x$ac_cv_header_sys_ioctl_h" = xyes
60216029
then :

0 commit comments

Comments
 (0)