Skip to content

Commit

Permalink
__FILE_OFFSET_BITS
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Sep 8, 2023
1 parent 2ca5cfe commit 0c28b0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config-scripts/cups-compiler.m4
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ AS_IF([test -n "$GCC"], [
AS_CASE([$host_os_name], [linux*], [
# glibc 2.8 and higher breaks peer credentials unless you
# define _GNU_SOURCE... 32-bit Linux needs 64-bit time/file offsets...
OPTIM="$OPTIM -D_GNU_SOURCE -D__TIME_BITS=64 -D__FILE_BITS=64"
OPTIM="$OPTIM -D_GNU_SOURCE -D__TIME_BITS=64 -D__FILE_OFFSET_BITS=64"
# The -z relro option is provided by the Linux linker command to
# make relocatable data read-only.
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -8303,7 +8303,7 @@ case $host_os_name in #(

# glibc 2.8 and higher breaks peer credentials unless you
# define _GNU_SOURCE... 32-bit Linux needs 64-bit time/file offsets...
OPTIM="$OPTIM -D_GNU_SOURCE -D__TIME_BITS=64 -D__FILE_BITS=64"
OPTIM="$OPTIM -D_GNU_SOURCE -D__TIME_BITS=64 -D__FILE_OFFSET_BITS=64"

# The -z relro option is provided by the Linux linker command to
# make relocatable data read-only.
Expand Down

0 comments on commit 0c28b0a

Please sign in to comment.