Changeset 2195 in MondoRescue
- Timestamp:
- May 11, 2009, 3:08:02 AM (16 years ago)
- Location:
- branches/2.2.9/mondo
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.9/mondo/configure.in
r2190 r2195 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 -Wall -Wno-return-type -Werror=format-security -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT" 74 GCC_MAJ="`gcc -dumpversion 2>&1 | cut -d. -f1`" 75 GCC_MIN="`gcc -dumpversion 2>&1 | cut -d. -f2`" 76 CFLAGS="$CFLAGS -Wall -Wno-return-type -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT" 77 if test "$GCC_MAJ" -ge "4" && test "$GCC_MIN" -ge "2"; then 78 CFLAGS="$CFLAGS -Werror=format-security" 79 fi 75 80 ;; 76 81 *) -
branches/2.2.9/mondo/src/common/libmondo-tools.c
r2194 r2195 958 958 ("grep ramdisk /proc/devices", FALSE)) { 959 959 /* Some SuSE have ramdisk as modules, so insert it first, then test again */ 960 run_program_and_log_output("modprobe brd 2> /dev/null > /dev/null" );960 run_program_and_log_output("modprobe brd 2> /dev/null > /dev/null",FALSE); 961 961 if (run_program_and_log_output 962 962 ("grep ramdisk /proc/devices", FALSE)) { -
branches/2.2.9/mondo/src/mondorestore/mondo-rstr-tools.c
r2188 r2195 2 2 $Id$ 3 3 4 /***************************************************************************4 *************************************************************************** 5 5 * * 6 6 * This program is free software; you can redistribute it and/or modify *
Note:
See TracChangeset
for help on using the changeset viewer.