Changeset 402 in MondoRescue for branches/stable/mondo
- Timestamp:
- Feb 17, 2006, 7:05:06 PM (19 years ago)
- Location:
- branches/stable/mondo
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/Makefile.am
r30 r402 1 1 AUTOMAKE_OPTIONS = 1.7 2 2 SUBDIRS = mondo 3 man8_MANS = mondo/mondoarchive/mondoarchive.8 mondo/mondorestore/mondorestore.83 man8_MANS = docs/man/mondoarchive.8 docs/man/mondorestore.8 -
branches/stable/mondo/distributions/rpm/mondo.spec
r401 r402 61 61 62 62 %build 63 %configure %{!?_without_xmondo:--with-x11}63 %configure 64 64 %{__make} VERSION=%{version} CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT" 65 65 … … 82 82 %doc ChangeLog svn.log 83 83 %doc INSTALL COPYING README TODO AUTHORS NEWS 84 %doc docs/en/mondorescue-howto.html docs/en/mondorescue-howto.pdf 84 85 85 86 %attr(755,root,root) %{_sbindir}/* … … 88 89 %{_mandir} 89 90 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 96 91 %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 97 96 * Fri Nov 05 2005 Bruno Cornec <bcornec@users.berlios.de> 1.05 98 97 - ia64 is now working -
branches/stable/mondo/mondo/common/my-stuff.h
r296 r402 443 443 * Malloc @p x to be MAX_STR_LEN bytes and call fatal_error() if we're out of memory. 444 444 */ 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'; } 446 446 447 447 /**
Note:
See TracChangeset
for help on using the changeset viewer.