Changeset 543 in MondoRescue for branches/stable/mondo
- Timestamp:
- May 13, 2006, 8:52:38 PM (19 years ago)
- Location:
- branches/stable/mondo
- Files:
-
- 12 edited
- 3 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/VERSION
r542 r543 1 2.0. 71 2.0.8 -
branches/stable/mondo/configure.in
r541 r543 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 CFLAGS="$CFLAGS -Wall -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT" 75 75 ;; 76 76 *) -
branches/stable/mondo/distributions/gentoo/mondo.ebuild
r541 r543 7 7 DESCRIPTION="The premier GPL disaster recovery solution." 8 8 HOMEPAGE="http://www.mondorescue.org" 9 SRC_URI="ftp://ftp. berlios.de/pub/mondorescue/src/${PN/-rescue/}-${PV}.tgz"9 SRC_URI="ftp://ftp.mondorecue.org/src/${PN/-rescue/}-${PV}.tgz" 10 10 11 11 LICENSE="GPL-2" … … 22 22 >=app-arch/bzip2-0.9 23 23 app-cdr/cdrtools 24 >=sys-apps/mindi-1.0 624 >=sys-apps/mindi-1.0.7 25 25 >=dev-libs/newt-0.50 26 26 >=sys-libs/slang-1.4.1 -
branches/stable/mondo/distributions/mandriva/spec.m4
r542 r543 8 8 define(`GRP', `Archiving/Backup')dnl 9 9 dnl OBS is replaced vy what is being obsoleted 10 define(`OBS', Obsoletes: libmondo <= 2.04)dnl 10 define(`OBS', `Obsoletes: libmondo <= 2.04 11 Provides: libmondo')dnl -
branches/stable/mondo/distributions/redhat/spec.m4
r542 r543 2 2 dnl 3 3 dnl SSS is replaced by the source package format 4 define(`SSS', %{name}-%{version}.tgz)dnl4 define(`SSS', ftp://ftp.mondorescue.org/src/%{name}-%{version}.tgz)dnl 5 5 dnl DDD is replaced by the list of dependencies specific to that distro 6 6 define(`DDD', %{addreqb})dnl 7 7 dnl GRP is replaced by the RPM group of apps 8 define(`GRP', A rchiving/Archiving)dnl8 define(`GRP', Applications/Archiving)dnl 9 9 dnl OBS is replaced vy what is being obsoleted 10 10 define(`OBS', )dnl -
branches/stable/mondo/distributions/rpm/mondo.spec
r542 r543 24 24 License: GPL 25 25 Group: %{grp} 26 Url: http:// mondorescue.berlios.de26 Url: http://www.mondorescue.org 27 27 Source: %{src} 28 BuildRoot: %{_tmppath}/%{name}-%{version} 28 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -u -n) 29 29 BuildRequires: newt-devel >= 0.50, slang-devel >= 1.4.1, gcc 30 30 Epoch: %(echo EEE | cut -d- -f1 | sed "s~M~~") -
branches/stable/mondo/mondo/common/libmondo-archive-EXT.h
r541 r543 41 41 char *filelist, char *fname, 42 42 int setno); 43 extern void setenv_mondo_ lib(void);43 extern void setenv_mondo_share(void); -
branches/stable/mondo/mondo/common/libmondo-archive.h
r541 r543 42 42 int archive_this_fileset_with_star(struct s_bkpinfo *bkpinfo, 43 43 char *filelist, char *fname, int setno); 44 void setenv_mondo_ lib(void);44 void setenv_mondo_share(void); -
branches/stable/mondo/mondo/common/libmondo-verify.c
r541 r543 1020 1020 1021 1021 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); 1024 1024 1025 1025 mkdir(mountpoint, 1777); -
branches/stable/mondo/mondo/common/mondostructures.h
r541 r543 477 477 * If you do nothing, "/" will be used. 478 478 */ 479 char include_paths[MAX_STR_LEN ];479 char include_paths[MAX_STR_LEN*4]; 480 480 481 481 /** … … 484 484 * the scratchdir, and the tempdir are automatically excluded. 485 485 */ 486 char exclude_paths[MAX_STR_LEN ];486 char exclude_paths[MAX_STR_LEN*4]; 487 487 488 488 /** -
branches/stable/mondo/mondo/mondoarchive/mondo-cli.c
r542 r543 469 469 strncpy(bkpinfo->include_paths + strlen(bkpinfo->include_paths), 470 470 flag_val['I'], 471 MAX_STR_LEN - strlen(bkpinfo->include_paths));471 4*MAX_STR_LEN - strlen(bkpinfo->include_paths)); 472 472 log_msg(1, "include_paths is now '%s'", bkpinfo->include_paths); 473 473 if (bkpinfo->include_paths[0] == '-') { … … 704 704 strncpy(bkpinfo->exclude_paths + strlen(bkpinfo->exclude_paths), 705 705 flag_val['E'], 706 MAX_STR_LEN - strlen(bkpinfo->exclude_paths));706 4*MAX_STR_LEN - strlen(bkpinfo->exclude_paths)); 707 707 } 708 708 if (flag_set['e']) { … … 918 918 && 919 919 !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)) { 921 921 bkpinfo->make_cd_use_lilo = TRUE; 922 922 log_to_screen -
branches/stable/mondo/mondo/mondorestore/mondo-restore.c
r541 r543 1977 1977 filelist_name); 1978 1978 log_msg(2, 1979 "This is a bit silly (ask Hugoto fix mondo-makefilelist, please)");1979 "This is a bit silly (ask dev-team to fix mondo-makefilelist, please)"); 1980 1980 log_msg(2, 1981 1981 "but it's non-critical. It's cosmetic. Don't worry about it."); … … 2054 2054 if (filelist_subset_fname[0] != '\0') { 2055 2055 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", 2057 2057 TAPE_BLOCK_SIZE, 2058 2058 BUFSIZE, executable, filelist_subset_fname,
Note:
See TracChangeset
for help on using the changeset viewer.