Changeset 219 in MondoRescue for trunk/mondo
- Timestamp:
- Dec 15, 2005, 2:54:19 AM (19 years ago)
- Location:
- trunk/mondo
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mondo/configure.in
-
Property svn:keywords
changed from
Id
toId Rev
r183 r219 7 7 dnl $Id$ 8 8 dnl 9 AC_INIT([Mondo Rescue],[2.05_berlios],[mondo-devel@lists.sourceforge.net]) 9 define(MONDO_VER,2.05) 10 define(MONDO_REV,m4_normalize(esyscmd(echo '$Rev$' | awk '{print r$2}'))) 11 define(MONDO_TAG,MONDO_VER-MONDO_REV) 12 AC_INIT([Mondo Rescue],MONDO_TAG,[mondo-devel@lists.sourceforge.net]) 10 13 AC_CONFIG_SRCDIR([mondo/mondoarchive/main.c]) 11 14 AM_CONFIG_HEADER(config.h) … … 15 18 AC_ARG_PROGRAM 16 19 17 AM_INIT_AUTOMAKE([mondo], [2.05_berlios])20 AM_INIT_AUTOMAKE([mondo], MONDO_VER) 18 21 AM_MAINTAINER_MODE 19 22 -
Property svn:keywords
changed from
-
trunk/mondo/mondo.spec
r198 r219 45 45 BuildRequires: newt-devel >= 0.50, slang-devel >= 1.4.1, gcc 46 46 %ifarch ia64 47 Requires: mindi >= 1.0 4_berlios, bzip2 >= 0.9, afio, mkisofs, binutils, elilo, newt >= 0.50, slang >= 1.4.1, buffer, parted47 Requires: mindi >= 1.05, bzip2 >= 0.9, afio, mkisofs, binutils, elilo, newt >= 0.50, slang >= 1.4.1, buffer, parted 48 48 %else 49 Requires: mindi >= 1.0 4_berlios, bzip2 >= 0.9, afio, mkisofs, binutils, syslinux >= 1.52, newt >= 0.50, slang >= 1.4.1, cdrecord, buffer49 Requires: mindi >= 1.05, bzip2 >= 0.9, afio, mkisofs, binutils, syslinux >= 1.52, newt >= 0.50, slang >= 1.4.1, cdrecord, buffer 50 50 %endif 51 51 -
trunk/mondo/mondo/common/newt-specific.c
r171 r219 34 34 extern char *g_tmpfs_mountpt; 35 35 extern char *g_mondo_home; 36 37 extern char g_version[];38 36 39 37 extern void set_signals(int); … … 314 312 system 315 313 ("gzip -9c "MONDO_LOGFILE" > /tmp/MA.log.gz 2> /dev/null"); 316 if (!strstr(g_version, "cvs") && !strstr(g_version, "svn")) { 317 printf("Please try the latest SVN version "); 318 printf 319 ("to see if that fixes the problem.\nPlease don't bother the mailing list with"); 320 printf 321 ("your problem UNTIL you've tried the snapshot.\nThe snapshot contains bugfixes"); 322 printf 323 ("which might help you.\nGo to http://mondorescue.berlios.de"); 324 printf(" for more information.\n"); 325 log_msg(0, 326 "Please DON'T contact the mailing list. Try the SNAPSHOTS."); 327 } else { 328 printf 314 printf 329 315 ("If you require technical support, please contact the mailing list.\n"); 330 331 316 printf("See http://www.mondorescue.org for details.\n"); 317 printf 332 318 ("The list's members can help you, if you attach that file to your e-mail.\n"); 333 }334 319 printf("Log file: %s\n", MONDO_LOGFILE); 335 // printf("VERSION=%s\n", g_version);336 320 if (does_file_exist("/tmp/MA.log.gz")) { 337 321 printf -
trunk/mondo/mondo/mondoarchive/main.c
r197 r219 21 21 #include "../common/libmondo.h" 22 22 #include "mondo-cli-EXT.h" 23 24 #ifndef VERSION25 #define VERSION AUX_VER26 #endif27 28 29 char g_version[] = VERSION;30 31 23 32 24 // for CVS -
trunk/mondo/mondo/mondoarchive/mondo-cli.c
r171 r219 14 14 #include <pthread.h> 15 15 #endif 16 17 #ifndef VERSION18 #define VERSION AUX_VER19 #endif20 21 16 22 17 //static char cvsid[] = "$Id$"; -
trunk/mondo/mondo/mondorestore/mondo-restore.c
r181 r219 401 401 #define g_ISO_restore_mode __mondorestore_g_ISO_restore_mode 402 402 #endif 403 404 #ifndef VERSION405 #define VERSION AUX_VER406 #endif407 408 char g_version[] = VERSION;409 410 403 411 404 //static char cvsid[] = "$Id$"; … … 3197 3190 char *tmp; 3198 3191 3199 #ifndef VERSION3200 #define VERSION "1.7x_cvs"3201 #endif3202 3203 3192 struct mountlist_itself *mountlist; 3204 3193 struct raidlist_itself *raidlist;
Note:
See TracChangeset
for help on using the changeset viewer.