Changeset 416 in MondoRescue


Ignore:
Timestamp:
Feb 20, 2006, 7:33:30 PM (18 years ago)
Author:
bcornec
Message:

merge -r414:415 $SVN_M/branches/stable

Location:
trunk/mondo
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/mondo/configure.in

    r343 r416  
    7272        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])
    7373        PTHREAD="-lpthread"
     74        CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT"
    7475        ;;
    7576    *)
  • trunk/mondo/distributions/rpm/mondo.spec

    r403 r416  
    6161%build
    6262%configure
    63 %{__make} VERSION=%{version} CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT"
     63%{__make} VERSION=%{version}
    6464
    6565%install
  • trunk/mondo/mondo/common/libmondo-files.c

    r393 r416  
    529529        return (-1);
    530530    }
    531     fseek(fin, 0, SEEK_END);
     531    fseeko(fin, 0, SEEK_END);
    532532    length = ftell(fin);
    533533    paranoid_fclose(fin);
Note: See TracChangeset for help on using the changeset viewer.