search for: installcmd

Displaying 18 results from an estimated 18 matches for "installcmd".

Did you mean: installcd
2002 Mar 13
2
[PATCH] fix install-strip target in Makefile
The first patch will make "make install-strip" work. The second spends a few cycles avoiding "1 files to consider." Both are trivial but IMHO useful. --- Makefile.orig Wed Mar 13 06:38:42 2002 +++ Makefile Wed Mar 13 06:40:58 2002 @@ -12,6 +12,7 @@ LDFLAGS= INSTALLCMD=/bin/install -c +INSTALLMAN=/bin/install -c srcdir=. @@ -56,8 +57,8 @@ ${INSTALLCMD} -m 755 rsync ${bindir} -mkdir -p ${mandir}/man1 -mkdir -p ${mandir}/man5 - ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${mandir}/man1 - ${INSTALLCMD} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5 + ${INSTALLM...
2002 Mar 15
1
rsync-2.5.4 -- 'make install-strip' failure
...----------- next part -------------- diff -ur rsync-2.5.4.orig/Makefile.in rsync-2.5.4/Makefile.in --- rsync-2.5.4.orig/Makefile.in Mon Feb 25 19:48:25 2002 +++ rsync-2.5.4/Makefile.in Fri Mar 15 11:29:13 2002 @@ -52,15 +52,15 @@ man: rsync.1 rsyncd.conf.5 install: all - -mkdir -p ${bindir} - ${INSTALLCMD} -m 755 rsync ${bindir} - -mkdir -p ${mandir}/man1 - -mkdir -p ${mandir}/man5 - ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${mandir}/man1 - ${INSTALLCMD} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5 + -mkdir -p $(DESTDIR)${bindir} + ${INSTALLCMD} ${STRIP} -m 755 rsync $(DESTDIR)${bindir} + -mkdir -p $...
2007 Feb 28
2
VFS module and C++
...e(void) { DEBUG(2,("Inicialization does work")); return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "mytest_vfs", skel_op_tuples); } }; And my Makefile: CC = gcc CFLAGS = -g -O2 CPPFLAGS = LDFLAGS = LDSHFLAGS = -shared INSTALLCMD = /usr/bin/install -c SAMBA_SOURCE = ../../source SHLIBEXT = so OBJEXT = o FLAGS = $(CFLAGS) -Iinclude -I$(SAMBA_SOURCE)/include -I$(SAMBA_SOURCE)/popt -I$(SAMBA_SOURCE)/smbwrapper -I. $(CPPFLAGS) -I$(SAMBA_SOURCE) -I/home/roman/ace/ACE_wrappers/TAO/tao -fPIC pr...
2002 Jan 27
1
Makefile.in (install-strip) problem & 2.5.2 build error
...----------- next part -------------- diff -ur rsync-2.5.1.orig/Makefile.in rsync-2.5.1/Makefile.in --- rsync-2.5.1.orig/Makefile.in Thu Jan 3 08:09:27 2002 +++ rsync-2.5.1/Makefile.in Sat Jan 26 17:16:10 2002 @@ -51,15 +51,15 @@ man: rsync.1 rsyncd.conf.5 install: all - -mkdir -p ${bindir} - ${INSTALLCMD} -m 755 rsync ${bindir} - -mkdir -p ${mandir}/man1 - -mkdir -p ${mandir}/man5 - ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${mandir}/man1 - ${INSTALLCMD} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5 + -mkdir -p $(DESTDIR)${bindir} + ${INSTALLCMD} ${STRIP} -m 755 rsync $(DESTDIR)${bindir} + -mkdir -p $...
2004 May 01
1
install-strip issue
>From 2.6.2's Makefile: install: all ... ${INSTALLCMD} ${STRIP} -m 755 rsync$(EXEEXT) ${DESTDIR}${bindir} ... install-strip: $(MAKE) STRIP='-s' install This doesn't work (at least) on OpenBSD, because install(1) there will use the value of the environment variable STRIP as the command to run for stripping the executable. Renaming the v...
2002 Feb 24
3
Multiple Instancies of Samba on a single System
Hi out there, i intend to run multiple Instancies of Samba on a single, multi-homed, server, with each instance bound to a specific (logical) interface. If this works, it would be fine to me. Mainly for administrative Reasons. (You won't believe, but from time to time it becomes necessary to restart some services, but restarting the entire server is a real mess) Well here my
2002 Nov 12
2
2.5.5 build ignores $CPPFLAGS
...put of ./configure --help, $CPPFLAGS is in fact not influential. --- rsync-2.5.5/Makefile.in~ 2002-03-24 23:36:34.000000000 -0500 +++ rsync-2.5.5/Makefile.in 2002-11-12 17:52:04.000000000 -0500 @@ -9,6 +9,7 @@ LIBS=@LIBS@ CC=@CC@ CFLAGS=@CFLAGS@ +CPPFLAGS=@CPPFLAGS@ LDFLAGS=@LDFLAGS@ INSTALLCMD=@INSTALL@ @@ -45,7 +46,7 @@ # 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) $(CPPFLAGS) $(CFLAGS) -c $< @CC_SHOBJ_FLAG@ @OBJ_RESTORE@ all: rsync paul
2002 Nov 20
0
[PATCH] Updated patch to rsync for Stratus VOS
...RT OF PATCH ### diff -urp oldrsync/Makefile.in newrsync/Makefile.in --- oldrsync/Makefile.in Sun Nov 17 05:00:41 2002 +++ newrsync/Makefile.in Wed Nov 20 07:18:37 2002 @@ -9,6 +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)...
2003 Jan 16
1
Possible patch for Irix Makefile problem
...tub.o t_unsafe.o trimslash.o @@ -55,13 +60,13 @@ CHECK_OBJS=getgroups.o t_stub.o t_unsafe $(CC) -I. -I$(srcdir) $(CFLAGS) $(CPPFLAGS) -c $< @CC_SHOBJ_FLAG@ @OBJ_RESTORE@ -all: rsync$(EXEEXT) +all: $(RSYNC_EXE) man: rsync.1 rsyncd.conf.5 install: all -mkdir -p ${DESTDIR}${bindir} - ${INSTALLCMD} ${STRIP} -m 755 rsync$(EXEEXT) ${DESTDIR}${bindir} + ${INSTALLCMD} ${STRIP} -m 755 $(RSYNC_EXE) ${DESTDIR}${bindir} -mkdir -p ${DESTDIR}${mandir}/man1 -mkdir -p ${DESTDIR}${mandir}/man5 ${INSTALLMAN} -m 644 $(srcdir)/rsync.1 ${DESTDIR}${mandir}/man1 @@ -70,24 +75,24 @@ install: all install-...
2002 Jul 12
0
Installation
...it 1 -------------- next part -------------- # Makefile for rsync. This is processed by configure to produce the final # Makefile prefix=/usr/local exec_prefix=${prefix} bindir=${exec_prefix}/bin mandir=${prefix}/man LIBS=-lresolv -lsocket -lnsl CC=cc CFLAGS=-g -DHAVE_CONFIG_H -I./popt LDFLAGS= INSTALLCMD=./install-sh -c INSTALLMAN=./install-sh -c srcdir=. SHELL=/bin/sh VERSION=@VERSION@ .SUFFIXES: .SUFFIXES: .c .o LIBOBJ=lib/fnmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o \ lib/permstring.o \ ZLIBOBJ=zlib/deflate.o zlib/infblock.o zlib/infcodes.o zlib/inffast.o \ zlib/inflate.o zlib/inf...
2002 May 29
0
Need help compiling on HPUX 11.00 for 2.2.4
...andir=${prefix}/man sysconfdir=${prefix}/etc LIBS=-lgen -lsec -lnsl CC=gcc SHLD=/usr/bin/ld CFLAGS=-O CPPFLAGS= -D_HPUX_SOURCE -D_POSIX_SOURCE -D_LARGEFILE64_SOURCE -D_ALIGNMENT_REQUIRED=1 -D_MAX_ALIGNMENT=4 LDFLAGS= AWK=awk DYNEXP=-Wl,-E TERMLDFLAGS= TERMLIBS= LINK=$(CC) $(FLAGS) $(LDFLAGS) INSTALLCMD=./install-sh -c srcdir=. builddir=/tmp/samba/samba-2.2.4/source top_builddir=. SHELL=/bin/sh BASEDIR= /opt/samba BINDIR = ${exec_prefix}/bin DATADIR = ${prefix}/share # sbindir is mapped to bindir when compiling SAMBA in 2.0.x compatibility mode. SBINDIR = ${exec_prefix}/sbin LIBDIR = ${exec_pre...
2002 May 28
0
link errors compiling 2.2.4 on HP-UX 11.00
...andir=${prefix}/man sysconfdir=${prefix}/etc LIBS=-lgen -lsec -lnsl CC=gcc SHLD=/usr/bin/ld CFLAGS=-O CPPFLAGS= -D_HPUX_SOURCE -D_POSIX_SOURCE -D_LARGEFILE64_SOURCE -D_ALIGNMENT_REQUIRED=1 -D_MAX_ALIGNMENT=4 LDFLAGS= AWK=awk DYNEXP=-Wl,-E TERMLDFLAGS= TERMLIBS= LINK=$(CC) $(FLAGS) $(LDFLAGS) INSTALLCMD=./install-sh -c srcdir=. builddir=/tmp/samba/samba-2.2.4/source top_builddir=. SHELL=/bin/sh BASEDIR= /opt/samba BINDIR = ${exec_prefix}/bin DATADIR = ${prefix}/share # sbindir is mapped to bindir when compiling SAMBA in 2.0.x compatibility mode. SBINDIR = ${exec_prefix}/sbin LIBDIR = ${exec_pre...
2002 Nov 17
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS (update)
...START OF PATCHES ### diff -urp --new-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@...
2002 Sep 06
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS
...START OF PATCHES ### diff -urp --new-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@...
2002 Oct 14
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS (resend)
...START OF PATCHES ### diff -urp --new-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@...
2002 Jun 21
1
samba-2.2.5 -- a minor "make install" problem and 2 suggestions
...installcp.sh '$(DESTDIR)' $(srcdir) $(LIBDIR) $(CODEPAGEDIR) $(BINDIR) $(CODEPAGELIST) installswat: installdirs - @$(SHELL) $(srcdir)/script/installswat.sh $(SWATDIR) $(srcdir) + @$(SHELL) $(srcdir)/script/installswat.sh '$(DESTDIR)' $(SWATDIR) $(srcdir) installclientlib: -$(INSTALLCMD) bin/libsmbclient.so @@ -725,7 +725,7 @@ @$(SHELL) $(srcdir)/script/revert.sh $(BINDIR) $(PROGS) $(SCRIPTS) ${WINBIND_PROGS} installman: - @$(SHELL) $(srcdir)/script/installman.sh $(MANDIR) $(srcdir) "@ROFF@" + @$(SHELL) $(srcdir)/script/installman.sh '$(DESTDIR)' $(MANDIR) $...
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
2020 May 19
5
[PATCHv2] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
I've read up some more on the subject, and it seems the proper way to do this with GCC is g++ and target attributes. I've refactored the patch that way, and it indeed uses SSSE3 automatically on supporting CPUs, regardless of the build host, so this should be ideal both for home builders and distros. Getting the code to build right in c++ mode (checksum_sse2.cpp only) was a bit of an