Changeset 519 in MondoRescue for branches/2.0.8/mondo


Ignore:
Timestamp:
May 1, 2006, 1:54:31 AM (18 years ago)
Author:
bcornec
Message:

merge -r 437:447 $SVN_M/branches/stable
merge -r 461:464 $SVN_M/branches/stable
merge -r 465:472 $SVN_M/branches/stable
merge -r 473:479 $SVN_M/branches/stable
merge -r 480:488 $SVN_M/branches/stable
merge -r 491:494 $SVN_M/branches/stable
merge -r 508:516 $SVN_M/branches/stable

Location:
branches/2.0.8/mondo
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/2.0.8/mondo/configure.in

    r423 r519  
    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"
     74        CFLAGS="$CFLAGS -Wall -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT"
    7575        ;;
    7676    *)
  • branches/2.0.8/mondo/distributions/mandriva/spec.m4

    r455 r519  
    88define(`GRP', `Archiving/Backup')dnl
    99dnl OBS is replaced vy what is being obsoleted
    10 define(`OBS', Obsoletes:    libmondo <= 2.04)dnl
     10define(`OBS', `Obsoletes:   libmondo <= 2.04
     11Provides:   libmondo')dnl
  • branches/2.0.8/mondo/mondo/common/libmondo-archive-EXT.h

    r296 r519  
    4141                                          char *filelist, char *fname,
    4242                                          int setno);
    43 extern void setenv_mondo_lib(void);
     43extern void setenv_mondo_share(void);
  • branches/2.0.8/mondo/mondo/common/libmondo-archive.h

    r296 r519  
    4242int archive_this_fileset_with_star(struct s_bkpinfo *bkpinfo,
    4343                                   char *filelist, char *fname, int setno);
    44 void setenv_mondo_lib(void);
     44void setenv_mondo_share(void);
  • branches/2.0.8/mondo/mondo/common/libmondo-verify.c

    r296 r519  
    10201020
    10211021    sprintf(mountpoint, "%s/cdrom", bkpinfo->tmpdir);
    1022     sprintf(fname, "%s/%s/%s-%d.iso", bkpinfo->nfs_remote_dir,
    1023             bkpinfo->isodir, bkpinfo->prefix, g_current_media_number);
     1022    sprintf(fname, "%s/%s/%s-%d.iso", bkpinfo->isodir, bkpinfo->nfs_remote_dir,
     1023            bkpinfo->prefix, g_current_media_number);
    10241024
    10251025    mkdir(mountpoint, 1777);
  • branches/2.0.8/mondo/mondo/common/mondostructures.h

    r296 r519  
    477477   * If you do nothing, "/" will be used.
    478478   */
    479     char include_paths[MAX_STR_LEN];
     479    char include_paths[MAX_STR_LEN*4];
    480480
    481481  /**
     
    484484   * the scratchdir, and the tempdir are automatically excluded.
    485485   */
    486     char exclude_paths[MAX_STR_LEN];
     486    char exclude_paths[MAX_STR_LEN*4];
    487487
    488488  /**
  • branches/2.0.8/mondo/mondo/mondoarchive/mondo-cli.c

    r468 r519  
    918918        &&
    919919        !run_program_and_log_output
    920         ("grep -i suse /etc/issue.net | grep 64", TRUE)) {
     920        ("egrep -i suse /etc/issue.net | egrep '9.0' | grep 64", TRUE)) {
    921921        bkpinfo->make_cd_use_lilo = TRUE;
    922922        log_to_screen
  • branches/2.0.8/mondo/mondo/mondorestore/mondo-restore.c

    r433 r519  
    19771977                filelist_name);
    19781978        log_msg(2,
    1979                 "This is a bit silly (ask Hugo to fix mondo-makefilelist, please)");
     1979                "This is a bit silly (ask dev-team to fix mondo-makefilelist, please)");
    19801980        log_msg(2,
    19811981                "but it's non-critical. It's cosmetic. Don't worry about it.");
     
    20542054            if (filelist_subset_fname[0] != '\0') {
    20552055                sprintf(command,
    2056                         "afio -i -M 8m -b %ld -c %ld %s -w %s %s",
     2056                        "afio -i -M 8m -b %ld -c %ld %s -w '%s' %s",
    20572057                        TAPE_BLOCK_SIZE,
    20582058                        BUFSIZE, executable, filelist_subset_fname,
Note: See TracChangeset for help on using the changeset viewer.