- Timestamp:
- Feb 20, 2006, 7:33:30 PM (19 years ago)
- Location:
- trunk/mondo
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mondo/configure.in
r343 r416 72 72 AC_CHECK_LIB(pthread, pthread_create, true, [echo "*** Cannot find -lpthread."; echo "*** Please make sure you have the linuxthreads glibc add-on installed."; exit 1]) 73 73 PTHREAD="-lpthread" 74 CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT" 74 75 ;; 75 76 *) -
trunk/mondo/distributions/rpm/mondo.spec
r403 r416 61 61 %build 62 62 %configure 63 %{__make} VERSION=%{version} CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT"63 %{__make} VERSION=%{version} 64 64 65 65 %install -
trunk/mondo/mondo/common/libmondo-files.c
r393 r416 529 529 return (-1); 530 530 } 531 fseek (fin, 0, SEEK_END);531 fseeko(fin, 0, SEEK_END); 532 532 length = ftell(fin); 533 533 paranoid_fclose(fin);
Note:
See TracChangeset
for help on using the changeset viewer.