Changeset 415 in MondoRescue
- Timestamp:
- Feb 20, 2006, 7:32:56 PM (19 years ago)
- Location:
- branches/stable/mondo
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/configure.in
r341 r415 79 79 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]) 80 80 PTHREAD="-lpthread" 81 CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT" 81 82 ;; 82 83 *) -
branches/stable/mondo/distributions/rpm/mondo.spec
r402 r415 62 62 %build 63 63 %configure 64 %{__make} VERSION=%{version} CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT"64 %{__make} VERSION=%{version} 65 65 66 66 %install -
branches/stable/mondo/mondo/common/libmondo-files.c
r392 r415 610 610 return (-1); 611 611 } 612 fseek (fin, 0, SEEK_END);612 fseeko(fin, 0, SEEK_END); 613 613 length = ftell(fin); 614 614 paranoid_fclose(fin);
Note:
See TracChangeset
for help on using the changeset viewer.