Changeset 1930 in MondoRescue for branches/2.2.6/mondo
- Timestamp:
- Apr 22, 2008, 2:05:49 PM (17 years ago)
- Location:
- branches/2.2.6/mondo
- Files:
-
- 1 added
- 8 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.6/mondo/configure.in
r1699 r1930 11 11 define(MONDO_TAG,MONDO_VER-MONDO_REV) 12 12 AC_INIT([Mondo Rescue],MONDO_TAG,[mondo-devel@lists.sourceforge.net]) 13 AC_CONFIG_SRCDIR([src/mondoarchive/m ain.c])13 AC_CONFIG_SRCDIR([src/mondoarchive/mondoarchive.c]) 14 14 AM_CONFIG_HEADER(config.h) 15 15 -
branches/2.2.6/mondo/src/common/Makefile.am
r1917 r1930 2 2 ## Process this file with Automake to generate `Makefile.in' 3 3 ## 4 AM_CPPFLAGS = -DMONDO_SHARE=\"$(pkgdatadir)\" 4 5 AM_CPPFLAGS = -DMONDO_SHARE=\"$(pkgdatadir)\" -DMONDO_CONF_DIR=\"$(sysconfdir)/mondo\" -I${top_builddir}/src/include -I${top_builddir}/src/common 5 6 6 7 ## libmondo -
branches/2.2.6/mondo/src/mondoarchive/Makefile.am
r1917 r1930 2 2 ## Process with Automake to generate Makefile.in 3 3 ## 4 5 AM_CPPFLAGS = -DMONDO_CONF_DIR=\"$(sysconfdir)/mondo\" -I${top_builddir}/src/include -I${top_builddir}/src/common 4 6 5 7 ## Headers … … 8 10 ## The program 9 11 sbin_PROGRAMS = mondoarchive 10 mondoarchive_SOURCES = m ain.c12 mondoarchive_SOURCES = mondoarchive.c 11 13 mondoarchive_LDADD = ${top_builddir}/src/common/libmondo.a -
branches/2.2.6/mondo/src/mondoarchive/mondoarchive.c
r1929 r1930 26 26 #include <stdio.h> 27 27 #include <stdlib.h> 28 #include " ../common/my-stuff.h"28 #include "my-stuff.h" 29 29 #include "../common/mondostructures.h" 30 30 #include "../common/libmondo.h" -
branches/2.2.6/mondo/src/mondorestore/Makefile.am
r1315 r1930 2 2 ## Process with Automake to generate Makefile.in 3 3 ## 4 5 AM_CPPFLAGS = -DMONDO_CONF_DIR=\"$(sysconfdir)/mondo\" -I${top_builddir}/src/include -I${top_builddir}/src/common 4 6 5 7 ## Headers … … 11 13 ## The program 12 14 sbin_PROGRAMS = mondorestore 13 mondorestore_SOURCES = mondo-prep.c mondo -restore.c mondo-rstr-newt.c \15 mondorestore_SOURCES = mondo-prep.c mondorestore.c mondo-rstr-newt.c \ 14 16 mondo-rstr-compare.c mondo-rstr-tools.c 15 17 mondorestore_LDADD = ${top_builddir}/src/common/libmondo.a @MONDORESTORE_STATIC@ -
branches/2.2.6/mondo/src/mondorestore/mondo-prep.c
r1824 r1930 154 154 155 155 156 #include " ../common/my-stuff.h"156 #include "my-stuff.h" 157 157 #include "../common/mondostructures.h" 158 158 #include "mondoprep.h" -
branches/2.2.6/mondo/src/mondorestore/mondo-rstr-compare.c
r1747 r1930 56 56 57 57 #include <pthread.h> 58 #include " ../common/my-stuff.h"58 #include "my-stuff.h" 59 59 #include "../common/mondostructures.h" 60 60 #include "../common/libmondo.h" -
branches/2.2.6/mondo/src/mondorestore/mondo-rstr-newt.h
r1647 r1930 18 18 19 19 20 #include " ../common/my-stuff.h"20 #include "my-stuff.h" 21 21 #include "../common/mondostructures.h" 22 22 #include "../common/libmondo.h" -
branches/2.2.6/mondo/src/mondorestore/mondo-rstr-tools.c
r1928 r1930 126 126 #include <pthread.h> 127 127 #include <linux/fd.h> 128 #include " ../common/my-stuff.h"128 #include "my-stuff.h" 129 129 #include "../common/mondostructures.h" 130 130 #include "../common/libmondo.h" -
branches/2.2.6/mondo/src/mondorestore/mondorestore.c
r1929 r1930 13 13 **************************************************************************/ 14 14 #include <pthread.h> 15 #include " ../common/my-stuff.h"15 #include "my-stuff.h" 16 16 #include "../common/mondostructures.h" 17 17 #include "../common/libmondo.h"
Note:
See TracChangeset
for help on using the changeset viewer.