Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 257fd51

Browse files
committed
Changes for long file support.
1 parent 637ad47 commit 257fd51

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

config.h.in

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,18 @@
151151
/* Define if you want to compile in rudimentary thread support */
152152
#undef WITH_THREAD
153153

154+
/* The number of bytes in an off_t. */
155+
#undef SIZEOF_OFF_T
156+
157+
/* Defined to enable large file support when an off_t is bigger than a long
158+
and long long is available and at least as big as an off_t. You may need
159+
to add some flags for configuration and compilation to enable this mode.
160+
E.g, for Solaris 2.7:
161+
CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" OPT="-O2 $CFLAGS" \
162+
configure
163+
*/
164+
#undef HAVE_LARGEFILE_SUPPORT
165+
154166
/* The number of bytes in a int. */
155167
#undef SIZEOF_INT
156168

@@ -181,12 +193,33 @@
181193
/* Define if you have the execv function. */
182194
#undef HAVE_EXECV
183195

196+
/* Define if you have the fdatasync function. */
197+
#undef HAVE_FDATASYNC
198+
184199
/* Define if you have the flock function. */
185200
#undef HAVE_FLOCK
186201

187202
/* Define if you have the fork function. */
188203
#undef HAVE_FORK
189204

205+
/* Define if you have the fseek64 function. */
206+
#undef HAVE_FSEEK64
207+
208+
/* Define if you have the fseeko function. */
209+
#undef HAVE_FSEEKO
210+
211+
/* Define if you have the fstatvfs function. */
212+
#undef HAVE_FSTATVFS
213+
214+
/* Define if you have the fsync function. */
215+
#undef HAVE_FSYNC
216+
217+
/* Define if you have the ftell64 function. */
218+
#undef HAVE_FTELL64
219+
220+
/* Define if you have the ftello function. */
221+
#undef HAVE_FTELLO
222+
190223
/* Define if you have the ftime function. */
191224
#undef HAVE_FTIME
192225

@@ -289,6 +322,9 @@
289322
/* Define if you have the sigrelse function. */
290323
#undef HAVE_SIGRELSE
291324

325+
/* Define if you have the statvfs function. */
326+
#undef HAVE_STATVFS
327+
292328
/* Define if you have the strdup function. */
293329
#undef HAVE_STRDUP
294330

0 commit comments

Comments
 (0)