mirror of
https://github.com/moparisthebest/curl
synced 2025-01-02 17:38:00 -05:00
HP C adjustments:
Disallow run-time dereferencing of null pointers. Disable some remarks: #4227: padding struct with n bytes to align member. #4255: padding size of struct with n bytes to alignment boundary.
This commit is contained in:
parent
ebadeff0ca
commit
4f924ab07e
@ -331,8 +331,12 @@ AC_DEFUN([CARES_SET_COMPILER_BASIC_OPTS], [
|
||||
#
|
||||
HPUXC)
|
||||
#
|
||||
dnl Placeholder
|
||||
tmp_CFLAGS="$tmp_CFLAGS"
|
||||
dnl Disallow run-time dereferencing of null pointers
|
||||
tmp_CFLAGS="$tmp_CFLAGS -z"
|
||||
dnl Disable some remarks
|
||||
dnl #4227: padding struct with n bytes to align member
|
||||
dnl #4255: padding size of struct with n bytes to alignment boundary
|
||||
tmp_CFLAGS="$tmp_CFLAGS +W 4227,4255"
|
||||
;;
|
||||
#
|
||||
IBMC)
|
||||
|
@ -337,8 +337,12 @@ AC_DEFUN([CURL_SET_COMPILER_BASIC_OPTS], [
|
||||
#
|
||||
HPUXC)
|
||||
#
|
||||
dnl Placeholder
|
||||
tmp_CFLAGS="$tmp_CFLAGS"
|
||||
dnl Disallow run-time dereferencing of null pointers
|
||||
tmp_CFLAGS="$tmp_CFLAGS -z"
|
||||
dnl Disable some remarks
|
||||
dnl #4227: padding struct with n bytes to align member
|
||||
dnl #4255: padding size of struct with n bytes to alignment boundary
|
||||
tmp_CFLAGS="$tmp_CFLAGS +W 4227,4255"
|
||||
;;
|
||||
#
|
||||
IBMC)
|
||||
|
Loading…
Reference in New Issue
Block a user