cluster-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* [Cluster-devel] cluster/cman/daemon Makefile
@ 2007-06-13  8:23 pcaulfield
  0 siblings, 0 replies; 8+ messages in thread
From: pcaulfield @ 2007-06-13  8:23 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	pcaulfield at sourceware.org	2007-06-13 08:23:20

Modified files:
	cman/daemon    : Makefile 

Log message:
	Don't link cman with libcman!

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/daemon/Makefile.diff?cvsroot=cluster&r1=1.51&r2=1.52

--- cluster/cman/daemon/Makefile	2007/06/01 09:45:31	1.51
+++ cluster/cman/daemon/Makefile	2007/06/13 08:23:20	1.52
@@ -23,7 +23,7 @@
 CFLAGS += -O2
 endif
 
-LDFLAGS += -L${ccslibdir} -L${cmanlibdir} -lccs -lcman
+LDFLAGS += -L${ccslibdir} -L${cmanlibdir} -lccs 
 
 TARGET= service_cman.lcrso
 



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/cman/daemon Makefile
@ 2008-01-02 11:03 pcaulfield
  0 siblings, 0 replies; 8+ messages in thread
From: pcaulfield @ 2008-01-02 11:03 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	RHEL5
Changes by:	pcaulfield at sourceware.org	2008-01-02 11:03:23

Modified files:
	cman/daemon    : Makefile 

Log message:
	Oops, I didn't mean to commit that last private change

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/daemon/Makefile.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.47.2.2&r2=1.47.2.3

--- cluster/cman/daemon/Makefile	2008/01/02 10:56:21	1.47.2.2
+++ cluster/cman/daemon/Makefile	2008/01/02 11:03:23	1.47.2.3
@@ -15,7 +15,7 @@
 
 include ${top_srcdir}/make/defines.mk
 
-CFLAGS+= -I/home/christine/dev/openais-installed/usr/include -fPIC -I${ccsincdir} -I${incdir} -I${top_srcdir}/config \
+CFLAGS+= -fPIC -I${ccsincdir} -I${incdir} -I${top_srcdir}/config \
 	-DCMAN_RELEASE_NAME=\"${RELEASE}\" -DOPENAIS_EXTERNAL_SERVICE
 
 ifeq ($(DEBUG),y)



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/cman/daemon Makefile
@ 2007-11-27 14:54 fabbione
  0 siblings, 0 replies; 8+ messages in thread
From: fabbione @ 2007-11-27 14:54 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	fabbione at sourceware.org	2007-11-27 14:54:54

Modified files:
	cman/daemon    : Makefile 

Log message:
	Do not install stripped binaries

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/daemon/Makefile.diff?cvsroot=cluster&r1=1.55&r2=1.56

--- cluster/cman/daemon/Makefile	2007/08/28 04:35:39	1.55
+++ cluster/cman/daemon/Makefile	2007/11/27 14:54:53	1.56
@@ -42,7 +42,7 @@
 
 install: all
 	install -d ${libexecdir}/lcrso
-	install -s ${TARGET} ${libexecdir}/lcrso
+	install ${TARGET} ${libexecdir}/lcrso
 
 uninstall:
 	rm -f ${libexecdir}/lcrso/${TARGET}



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/cman/daemon Makefile
@ 2007-06-13  8:28 fabbione
  0 siblings, 0 replies; 8+ messages in thread
From: fabbione @ 2007-06-13  8:28 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	fabbione at sourceware.org	2007-06-13 08:28:45

Modified files:
	cman/daemon    : Makefile 

Log message:
	Wave goodbye to libcman bits :)

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/daemon/Makefile.diff?cvsroot=cluster&r1=1.52&r2=1.53

--- cluster/cman/daemon/Makefile	2007/06/13 08:23:20	1.52
+++ cluster/cman/daemon/Makefile	2007/06/13 08:28:45	1.53
@@ -14,7 +14,7 @@
 
 CFLAGS += -DCMAN_RELEASE_NAME=\"${RELEASE}\" -DOPENAIS_EXTERNAL_SERVICE
 CFLAGS += -fPIC
-CFLAGS += -I${ccsincdir} -I${openaisincdir} -I${cmanincdir}
+CFLAGS += -I${ccsincdir} -I${openaisincdir}
 CFLAGS += -I${incdir}
 
 ifeq ($(DEBUG),y)
@@ -23,7 +23,7 @@
 CFLAGS += -O2
 endif
 
-LDFLAGS += -L${ccslibdir} -L${cmanlibdir} -lccs 
+LDFLAGS += -L${ccslibdir} -lccs 
 
 TARGET= service_cman.lcrso
 



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/cman/daemon Makefile
@ 2006-07-07  7:53 pcaulfield
  0 siblings, 0 replies; 8+ messages in thread
From: pcaulfield @ 2006-07-07  7:53 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	pcaulfield at sourceware.org	2006-07-07 07:53:14

Modified files:
	cman/daemon    : Makefile 

Log message:
	Make sure we ${libexecdir}/lcrso - packagers need it.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/daemon/Makefile.diff?cvsroot=cluster&r1=1.45&r2=1.46

--- cluster/cman/daemon/Makefile	2006/06/30 13:00:26	1.45
+++ cluster/cman/daemon/Makefile	2006/07/07 07:53:14	1.46
@@ -61,6 +61,7 @@
 	$(CC) $(CFLAGS) -c -o $@ $<
 
 install: 
+	install -d ${libexecdir}/lcrso
 	install -s service_cman.lcrso ${libexecdir}/lcrso
 
 uninstall:



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/cman/daemon Makefile
@ 2006-06-27  6:43 pcaulfield
  0 siblings, 0 replies; 8+ messages in thread
From: pcaulfield @ 2006-06-27  6:43 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	pcaulfield at sourceware.org	2006-06-27 06:43:26

Modified files:
	cman/daemon    : Makefile 

Log message:
	Fix build error.
	Thanks Lon.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/daemon/Makefile.diff?cvsroot=cluster&r1=1.43&r2=1.44

--- cluster/cman/daemon/Makefile	2006/06/22 16:17:56	1.43
+++ cluster/cman/daemon/Makefile	2006/06/27 06:43:26	1.44
@@ -19,7 +19,8 @@
 
 CFLAGS+= -fPIC -g -I${ccsincdir} -I${incdir} -I${top_srcdir}/config \
 	-DCMAN_RELEASE_NAME=\"${RELEASE}\" -I../lib -DDEBUG \
-	-I ${AISDIR}/${AISTAG}/exec -L ${AISDIR}/${AISTAG}/exec
+	-I ${AISDIR}/${AISTAG}/exec -L ${AISDIR}/${AISTAG}/exec \
+	-I ${AISDIR}/${AISTAG}/include
 
 TARGET=service_cman.lcrso
 CMAN_OBJS=daemon.o config.o logging.o ais.o commands.o barrier.o cmanccs.o



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/cman/daemon Makefile
@ 2006-06-22 16:17 pcaulfield
  0 siblings, 0 replies; 8+ messages in thread
From: pcaulfield @ 2006-06-22 16:17 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	pcaulfield at sourceware.org	2006-06-22 16:17:57

Modified files:
	cman/daemon    : Makefile 

Log message:
	Update to OpenAIS with patch for CPG alignment bug

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/daemon/Makefile.diff?cvsroot=cluster&r1=1.42&r2=1.43

--- cluster/cman/daemon/Makefile	2006/06/21 14:30:23	1.42
+++ cluster/cman/daemon/Makefile	2006/06/22 16:17:56	1.43
@@ -12,7 +12,7 @@
 
 top_srcdir=..
 UNINSTALL=${top_srcdir}/scripts/uninstall.pl
-AISDIR=openais20060621
+AISDIR=openais20060622
 AISTAG=trunk
 
 include ${top_srcdir}/make/defines.mk



^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Cluster-devel] cluster/cman/daemon Makefile
@ 2006-06-21 14:30 pcaulfield
  0 siblings, 0 replies; 8+ messages in thread
From: pcaulfield @ 2006-06-21 14:30 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	pcaulfield at sourceware.org	2006-06-21 14:30:24

Modified files:
	cman/daemon    : Makefile 

Log message:
	Pull latest openAIS

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/daemon/Makefile.diff?cvsroot=cluster&r1=1.41&r2=1.42

--- cluster/cman/daemon/Makefile	2006/05/30 09:28:42	1.41
+++ cluster/cman/daemon/Makefile	2006/06/21 14:30:23	1.42
@@ -12,7 +12,7 @@
 
 top_srcdir=..
 UNINSTALL=${top_srcdir}/scripts/uninstall.pl
-AISDIR=openais20060530
+AISDIR=openais20060621
 AISTAG=trunk
 
 include ${top_srcdir}/make/defines.mk



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2008-01-02 11:03 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-13  8:23 [Cluster-devel] cluster/cman/daemon Makefile pcaulfield
  -- strict thread matches above, loose matches on Subject: below --
2008-01-02 11:03 pcaulfield
2007-11-27 14:54 fabbione
2007-06-13  8:28 fabbione
2006-07-07  7:53 pcaulfield
2006-06-27  6:43 pcaulfield
2006-06-22 16:17 pcaulfield
2006-06-21 14:30 pcaulfield

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).