FLTK logo

[Library] r4779 - branches/branch-1.1

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.commit  ]
 
Previous Message ]Next Message ]

[Library] r4779 - branches/branch-1.1 fltk-dev Jan 31, 2006  
 
Author: mike
Date: 2006-01-31 10:50:06 -0500 (Tue, 31 Jan 2006)
New Revision: 4779

Removed:
   branches/branch-1.1/.cvsignore
Modified:
   branches/branch-1.1/CHANGES
   branches/branch-1.1/configure.in
   branches/branch-1.1/fltk-config.in
Log:
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.



Deleted: branches/branch-1.1/.cvsignore

Modified: branches/branch-1.1/CHANGES
===================================================================
--- branches/branch-1.1/CHANGES	2006-01-31 09:25:04 UTC (rev 4778)
+++ branches/branch-1.1/CHANGES	2006-01-31 15:50:06 UTC (rev 4779)
@@ -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

Modified: branches/branch-1.1/configure.in
===================================================================
--- branches/branch-1.1/configure.in	2006-01-31 09:25:04 UTC (rev 4778)
+++ branches/branch-1.1/configure.in	2006-01-31 15:50:06 UTC (rev 4779)
@@ -392,7 +392,7 @@
 
 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

Modified: branches/branch-1.1/fltk-config.in
===================================================================
--- branches/branch-1.1/fltk-config.in	2006-01-31 09:25:04 UTC (rev 4778)
+++ branches/branch-1.1/fltk-config.in	2006-01-31 15:50:06 UTC (rev 4779)
@@ -53,8 +53,8 @@
 POSTBUILD="@POSTBUILD@"
 
 # flags for C++ compiler:
-CFLAGS="@CFLAGS@"
-CXXFLAGS="@CXXFLAGS@"
+CFLAGS="@CFLAGS@ @LARGEFILE@"
+CXXFLAGS="@CXXFLAGS@ @LARGEFILE@"
 LDFLAGS="@LDFLAGS@"
 LDLIBS="@LIBS@"
 

Direct Link to Message ]
 
     
Previous Message ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.