Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d887d1f3
Commit
d887d1f3
authored
Mar 18, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #17603: Check for st_blocks field without requiring fileblocks.o
parent
a2e5e044
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
15 deletions
+4
-15
Misc/NEWS
Misc/NEWS
+3
-0
configure
configure
+0
-10
configure.ac
configure.ac
+1
-1
pyconfig.h.in
pyconfig.h.in
+0
-4
No files found.
Misc/NEWS
View file @
d887d1f3
...
...
@@ -319,6 +319,9 @@ Tests
Build
-----
-
Issue
#
17603
:
Avoid
error
about
nonexistant
fileblocks
.
o
file
by
using
a
lower
-
level
check
for
st_blocks
in
struct
stat
.
-
Issue
#
26079
:
Fixing
the
build
output
folder
for
tix
-
8.4.3.6
.
Patch
by
Bjoern
Thiel
.
...
...
configure
View file @
d887d1f3
...
...
@@ -12869,19 +12869,9 @@ cat >>confdefs.h <<_ACEOF
_ACEOF
$as_echo
"#define HAVE_ST_BLOCKS 1"
>>
confdefs.h
else
case
"
$LIBOBJS
"
in
*
" fileblocks.
$ac_objext
"
*
)
;;
*
)
LIBOBJS
=
"
$LIBOBJS
fileblocks.
$ac_objext
"
;;
esac
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for time.h that defines altzone"
>
&5
$as_echo_n
"checking for time.h that defines altzone... "
>
&6
;
}
if
${
ac_cv_header_time_altzone
+
:
}
false
;
then
:
...
...
configure.ac
View file @
d887d1f3
...
...
@@ -3727,7 +3727,7 @@ AC_CHECK_MEMBERS([struct stat.st_blksize])
AC_CHECK_MEMBERS([struct stat.st_flags])
AC_CHECK_MEMBERS([struct stat.st_gen])
AC_CHECK_MEMBERS([struct stat.st_birthtime])
AC_
STRUCT_ST_BLOCKS
AC_
CHECK_MEMBERS([struct stat.st_blocks])
AC_MSG_CHECKING(for time.h that defines altzone)
AC_CACHE_VAL(ac_cv_header_time_altzone,[
...
...
pyconfig.h.in
View file @
d887d1f3
...
...
@@ -934,10 +934,6 @@
/* Define to 1 if `tm_zone' is a member of `struct tm'. */
#undef HAVE_STRUCT_TM_TM_ZONE
/* Define to 1 if your `struct stat' has `st_blocks'. Deprecated, use
`HAVE_STRUCT_STAT_ST_BLOCKS' instead. */
#undef HAVE_ST_BLOCKS
/* Define if you have the 'symlink' function. */
#undef HAVE_SYMLINK
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment