Skip to content

Commit

Permalink
Fix fl_filename_list() bug (STR #1159) caused by changing of the ABI
Browse files Browse the repository at this point in the history
(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
  • Loading branch information
michaelrsweet committed Jan 31, 2006
1 parent 3fa9dd7 commit bf7082f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
9 changes: 0 additions & 9 deletions .cvsignore

This file was deleted.

10 changes: 10 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions fltk-config.in
Expand Up @@ -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@"

Expand Down

0 comments on commit bf7082f

Please sign in to comment.