mirror of https://github.com/fltk/fltk
Fix fl_filename_list() bug (STR #1159) caused by changing of the ABI
(dirent size is different for large file mode) The default is now --disable-largefile; if you use --enable-largefile, the large file support definitions are propagated to the fltk-config script as well. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4779 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
3fa9dd7dbd
commit
bf7082f16c
|
@ -1,9 +0,0 @@
|
|||
config.cache
|
||||
config.h
|
||||
config.log
|
||||
config.status
|
||||
configure
|
||||
fltk-config
|
||||
fltk.list
|
||||
makeinclude
|
||||
*.bck
|
10
CHANGES
10
CHANGES
|
@ -1,3 +1,13 @@
|
|||
CHANGES IN FLTK 1.1.8
|
||||
|
||||
- The largefile support changes in 1.1.7 broke binary
|
||||
compability for fl_filename_list(); you must now use
|
||||
"--enable-largefile" when configuring to get large file
|
||||
support, and the large file support definitions are
|
||||
added to the output of "fltk-config --cflags" (STR
|
||||
#1159)
|
||||
|
||||
|
||||
CHANGES IN FLTK 1.1.7
|
||||
|
||||
- Documentation fixes (STR #571, STR #648, STR #692, STR
|
||||
|
|
|
@ -392,7 +392,7 @@ AC_SYS_LARGEFILE
|
|||
|
||||
dnl Define largefile options as needed...
|
||||
LARGEFILE=""
|
||||
if test x$enable_largefile != xno; then
|
||||
if test x$enable_largefile = xyes; then
|
||||
LARGEFILE="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE"
|
||||
|
||||
if test $ac_cv_sys_large_files = 1; then
|
||||
|
|
|
@ -53,8 +53,8 @@ CXX="@CXX@"
|
|||
POSTBUILD="@POSTBUILD@"
|
||||
|
||||
# flags for C++ compiler:
|
||||
CFLAGS="@CFLAGS@"
|
||||
CXXFLAGS="@CXXFLAGS@"
|
||||
CFLAGS="@CFLAGS@ @LARGEFILE@"
|
||||
CXXFLAGS="@CXXFLAGS@ @LARGEFILE@"
|
||||
LDFLAGS="@LDFLAGS@"
|
||||
LDLIBS="@LIBS@"
|
||||
|
||||
|
|
Loading…
Reference in New Issue