Changeset 402 in MondoRescue for branches/stable/mondo


Ignore:
Timestamp:
Feb 17, 2006, 7:05:06 PM (18 years ago)
Author:
bcornec
Message:
  • RPM build for mondo doc recoded
  • Tag for documentation, man pages
  • Include a patch from SuSE RPMs for mondo
Location:
branches/stable/mondo
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/Makefile.am

    r30 r402  
    11AUTOMAKE_OPTIONS = 1.7
    22SUBDIRS   = mondo
    3 man8_MANS = mondo/mondoarchive/mondoarchive.8 mondo/mondorestore/mondorestore.8
     3man8_MANS = docs/man/mondoarchive.8 docs/man/mondorestore.8
  • branches/stable/mondo/distributions/rpm/mondo.spec

    r401 r402  
    6161
    6262%build
    63 %configure %{!?_without_xmondo:--with-x11}
     63%configure
    6464%{__make} VERSION=%{version} CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT"
    6565
     
    8282%doc ChangeLog svn.log
    8383%doc INSTALL COPYING README TODO AUTHORS NEWS
     84%doc docs/en/mondorescue-howto.html docs/en/mondorescue-howto.pdf
    8485
    8586%attr(755,root,root) %{_sbindir}/*
     
    8889%{_mandir}
    8990
    90 #%{!?_without_xmondo:%files xmondo}
    91 #%{!?_without_xmondo:%{_sbindir}/xmondo}
    92 #%{!?_without_xmondo:%{_libdir}/libXmondo-%{libversion}.so}
    93 #%{!?_without_xmondo:%{_libdir}/libXmondo.so}
    94 #%{!?_without_xmondo:%{_datadir}/mondo/mondo.png}
    95 
    9691%changelog
     92* Fri Feb 17 2006 Bruno Cornec <bcornec@users.berlios.de> 2.0.7
     93- Updated to 2.0.7
     94- RPM sepc files are now generated
     95
    9796* Fri Nov 05 2005 Bruno Cornec <bcornec@users.berlios.de> 1.05
    9897- ia64 is now working
  • branches/stable/mondo/mondo/common/my-stuff.h

    r296 r402  
    443443 * Malloc @p x to be MAX_STR_LEN bytes and call fatal_error() if we're out of memory.
    444444 */
    445 #define malloc_string(x) { x = malloc(MAX_STR_LEN); if (!x) { fatal_error("Unable to malloc"); } x[0] = x[1] = '\0'; }
     445#define malloc_string(x) { x = (char *)malloc(MAX_STR_LEN); if (!x) { fatal_error("Unable to malloc"); } x[0] = x[1] = '\0'; }
    446446
    447447/**
Note: See TracChangeset for help on using the changeset viewer.