You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2009/03/12 04:38:25 UTC

svn commit: r752761 - in /lucene/lucy/trunk: c_src/compat/ charmonizer/src/Charmonizer/Probe/LargeFiles.charm

Author: marvin
Date: Thu Mar 12 03:38:24 2009
New Revision: 752761

URL: http://svn.apache.org/viewvc?rev=752761&view=rev
Log:
Ditch ftello64 emulation for outdated Windows compilers.

Removed:
    lucene/lucy/trunk/c_src/compat/
Modified:
    lucene/lucy/trunk/charmonizer/src/Charmonizer/Probe/LargeFiles.charm

Modified: lucene/lucy/trunk/charmonizer/src/Charmonizer/Probe/LargeFiles.charm
URL: http://svn.apache.org/viewvc/lucene/lucy/trunk/charmonizer/src/Charmonizer/Probe/LargeFiles.charm?rev=752761&r1=752760&r2=752761&view=diff
==============================================================================
--- lucene/lucy/trunk/charmonizer/src/Charmonizer/Probe/LargeFiles.charm (original)
+++ lucene/lucy/trunk/charmonizer/src/Charmonizer/Probe/LargeFiles.charm Thu Mar 12 03:38:24 2009
@@ -22,8 +22,8 @@
     { "#include <sys/types.h>\n", "fopen64",   "ftello64",  "fseeko64",  "off64_t" },
     { "#include <sys/types.h>\n", "fopen",     "ftello64",  "fseeko64",  "off64_t" },
     { "#include <sys/types.h>\n", "fopen",     "ftello",    "fseeko",    "off_t"   },
-    { "",                         "fopen",     "ftell",     "fseek",     "long"    },
     { "",                         "fopen",     "_ftelli64", "_fseeki64", "__int64" },
+    { "",                         "fopen",     "ftell",     "fseek",     "long"    },
     { NULL, NULL, NULL, NULL, NULL }
 };
 typedef struct unbuff_combo {