Displaying 10 results from an estimated 10 matches for "check_prog".
Did you mean:
check_progs
2003 Jan 10
1
make clean
I just did a make clean to tidy up a bit and found four
objects were missed. The seem to belong to the CHECK_PROGS
set. Not sure where best to put them so created a
CHECK_OBJS variable and added it to the clean rule.
--
________________________________________________________________
J.W. Schultz Pegasystems Technologies
email address: jw@pegasys.ws
Remember Cernan and Schmitt
------------...
2003 Jan 16
1
Possible patch for Irix Makefile problem
...ld/rsync/Makefile.in new/rsync/Makefile.in
--- old/rsync/Makefile.in Thu Jan 16 16:06:00 2003
+++ new/rsync/Makefile.in Thu Jan 16 16:14:29 2003
@@ -43,8 +43,13 @@ OBJS=$(OBJS1) $(OBJS2) $(OBJS3) $(DAEMON
TLS_OBJ = tls.o syscall.o lib/permstring.o
# Programs we must have to run the test cases
-CHECK_PROGS = rsync$(EXEEXT) tls$(EXEEXT) getgroups$(EXEEXT) \
- trimslash$(EXEEXT) t_unsafe$(EXEEXT)
+RSYNC_EXE=rsync$(EXEEXT)
+TLS_EXE=tls$(EXEEXT)
+GETGROUPS_EXE=getgroups$(EXEEXT)
+TRIMSLASH_EXE=trimslash$(EXEEXT)
+T_UNSAFE_EXE=t_unsafe$(EXEEXT)
+CHECK_PROGS=$(RSYNC_EXE) $(TLS_EXE) $(GETGROUPS_EXE)...
2002 Nov 20
0
[PATCH] Updated patch to rsync for Stratus VOS
...+9,8 @@ mandir=@mandir@
LIBS=@LIBS@
CC=@CC@
CFLAGS=@CFLAGS@
+CPPFLAGS=@CPPFLAGS@
+EXEEXT=@EXEEXT@
LDFLAGS=@LDFLAGS@
INSTALLCMD=@INSTALL@
@@ -41,21 +43,21 @@ OBJS=$(OBJS1) $(OBJS2) $(OBJS3) $(DAEMON
TLS_OBJ = tls.o syscall.o lib/permstring.o
# Programs we must have to run the test cases
-CHECK_PROGS = rsync tls getgroups trimslash t_unsafe
+CHECK_PROGS = rsync$(EXEEXT) tls$(EXEEXT) getgroups$(EXEEXT) trimslash$(EXEEXT) t_unsafe$(EXEEXT)
# note that the -I. is needed to handle config.h when using VPATH
.c.o:
@OBJ_SAVE@
- $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< @CC_SHOBJ_FLAG@
+ $(CC) -I....
2002 Jul 12
0
Installation
...erver.o access.o connection.o authenticate.o
popt_OBJS=popt/findme.o popt/popt.o popt/poptconfig.o \
popt/popthelp.o popt/poptparse.o
OBJS=$(OBJS1) $(OBJS2) $(DAEMON_OBJ) $(LIBOBJ) $(ZLIBOBJ) $(popt_OBJS)
TLS_OBJ = tls.o syscall.o lib/permstring.o
# Programs we must have to run the test cases
CHECK_PROGS = rsync tls getgroups trimslash
# note that the -I. is needed to handle config.h when using VPATH
.c.o:
#
$(CC) -I. -I$(srcdir) $(CFLAGS) -c $< -o $@
#
all: rsync
man: rsync.1 rsyncd.conf.5
install: all
-mkdir -p ${DESTDIR}${bindir}
${INSTALLCMD} ${STRIP} -m 755 rsync ${DESTDIR}${bindir}...
2002 Apr 05
2
little patch with zero priority
....o fileio.o batch.o \
clientname.o
@@ -37,7 +37,7 @@
popt/popthelp.o popt/poptparse.o
OBJS=$(OBJS1) $(OBJS2) $(DAEMON_OBJ) $(LIBOBJ) $(ZLIBOBJ) @BUILD_POPT@
-TLS_OBJ = tls.o syscall.o lib/permstring.o
+TLS_OBJ = tls.o syscall.o lib/permstring.o
# Programs we must have to run the test cases
CHECK_PROGS = rsync tls getgroups trimslash
@@ -105,8 +107,8 @@
# directories, just in case somebody previously configured things in
# the source directory.
distclean: clean
- rm -f Makefile config.h config.status
- rm -f $(srcdir)/Makefile $(srcdir)/config.h $(srcdir)/config.status
+ rm -f Makefile config...
2002 Nov 17
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS (update)
...file oldrsync/Makefile.in newrsync/Makefile.in
--- oldrsync/Makefile.in Tue Aug 27 11:04:16 2002
+++ newrsync/Makefile.in Thu Sep 5 18:09:53 2002
@@ -9,6 +9,7 @@ mandir=@mandir@
LIBS=@LIBS@
CC=@CC@
CFLAGS=@CFLAGS@
+CPPFLAGS=@CPPFLAGS@
LDFLAGS=@LDFLAGS@
INSTALLCMD=@INSTALL@
@@ -45,7 +46,7 @@ CHECK_PROGS = rsync tls getgroups trimsl
# note that the -I. is needed to handle config.h when using VPATH
.c.o:
@OBJ_SAVE@
- $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< @CC_SHOBJ_FLAG@
+ $(CC) -I. -I$(srcdir) $(CFLAGS) $(CPPFLAGS) -c $< @CC_SHOBJ_FLAG@
@OBJ_RESTORE@
all: rsync
diff -urp --new-file old...
2002 Sep 06
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS
...file oldrsync/Makefile.in newrsync/Makefile.in
--- oldrsync/Makefile.in Tue Aug 27 11:04:16 2002
+++ newrsync/Makefile.in Thu Sep 5 18:09:53 2002
@@ -9,6 +9,7 @@ mandir=@mandir@
LIBS=@LIBS@
CC=@CC@
CFLAGS=@CFLAGS@
+CPPFLAGS=@CPPFLAGS@
LDFLAGS=@LDFLAGS@
INSTALLCMD=@INSTALL@
@@ -45,7 +46,7 @@ CHECK_PROGS = rsync tls getgroups trimsl
# note that the -I. is needed to handle config.h when using VPATH
.c.o:
@OBJ_SAVE@
- $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< @CC_SHOBJ_FLAG@
+ $(CC) -I. -I$(srcdir) $(CFLAGS) $(CPPFLAGS) -c $< @CC_SHOBJ_FLAG@
@OBJ_RESTORE@
all: rsync
@@ -65,19 +66,19 @@ inst...
2002 Oct 14
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS (resend)
...file oldrsync/Makefile.in newrsync/Makefile.in
--- oldrsync/Makefile.in Tue Aug 27 11:04:16 2002
+++ newrsync/Makefile.in Thu Sep 5 18:09:53 2002
@@ -9,6 +9,7 @@ mandir=@mandir@
LIBS=@LIBS@
CC=@CC@
CFLAGS=@CFLAGS@
+CPPFLAGS=@CPPFLAGS@
LDFLAGS=@LDFLAGS@
INSTALLCMD=@INSTALL@
@@ -45,7 +46,7 @@ CHECK_PROGS = rsync tls getgroups trimsl
# note that the -I. is needed to handle config.h when using VPATH
.c.o:
@OBJ_SAVE@
- $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< @CC_SHOBJ_FLAG@
+ $(CC) -I. -I$(srcdir) $(CFLAGS) $(CPPFLAGS) -c $< @CC_SHOBJ_FLAG@
@OBJ_RESTORE@
all: rsync
@@ -65,19 +66,19 @@ inst...
2015 Apr 08
10
Build-system cleanups
Hi everyone
Following are a number of build-system cleanup patches. Some of them are
prep-work for a possible upcoming automake/gnulib introduction.
Best regards,
Tiziano
2010 Aug 17
6
DO NOT REPLY [Bug 7625] New: "Don't know how to make ./*.c"
https://bugzilla.samba.org/show_bug.cgi?id=7625
Summary: "Don't know how to make ./*.c"
Product: rsync
Version: 3.0.7
Platform: s390
OS/Version: Other
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned at samba.org
ReportedBy: sebastian.hoffman at