require fseeko
This commit is contained in:
parent
d05ca1ac13
commit
a47b5d82d3
|
|
@ -16,6 +16,10 @@ Version NEXT
|
|||
long internaly as pointer to offset for portability, we have to
|
||||
be sure that usingned long is 8 or more bytes long
|
||||
Always try to link Efence in debug build
|
||||
Print off_t size in SCons large file detection
|
||||
If we do not have fseeko set off_t size to zero
|
||||
Current codebase requires fseeko. Test for this in SCons and
|
||||
exit build if function is unavailable.
|
||||
|
||||
Version 2.8.1b29 - 24 Aug 2019
|
||||
added scons command line argument without-fspscan=yes for building
|
||||
|
|
|
|||
|
|
@ -144,6 +144,7 @@ if conf.CheckCHeader('utmpx.h'):
|
|||
if not conf.CheckType("union semun", "#include <sys/types.h>\n#include <sys/ipc.h>\n#include <sys/sem.h>",'c'):
|
||||
conf.env.Append(CPPFLAGS = "-D_SEM_SEMUN_UNDEFINED=1")
|
||||
conf.checkForLargeFiles(conf)
|
||||
if not conf.CheckFunc('fseeko'): Exit(1)
|
||||
conf.checkForLockingType(conf)
|
||||
if conf.checkReliableSignals():
|
||||
conf.env.Append(CPPFLAGS = '-DRELIABLE_SIGNALS')
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user