public inbox for lvm2-cvs@sourceware.org
help / color / mirror / Atom feed
* LVM2 make.tmpl.in
@ 2011-11-23 12:19 zkabelac
0 siblings, 0 replies; 16+ messages in thread
From: zkabelac @ 2011-11-23 12:19 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: zkabelac@sourceware.org 2011-11-23 12:19:24
Modified files:
. : make.tmpl.in
Log message:
Split gcc warning options
Use gcc warning options only for .c -> .o compilation
So it makes the output more clear.
Do not use INCLUDES and DEFS for .o -> .so.
Do not use CFLAGS for deps .d generation.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.126&r2=1.127
--- LVM2/make.tmpl.in 2011/11/23 12:18:42 1.126
+++ LVM2/make.tmpl.in 2011/11/23 12:19:23 1.127
@@ -113,13 +113,16 @@
.SUFFIXES: .c .d .o .so .a .po .pot .mo .dylib
-CFLAGS += -fPIC -Wall -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -Wmissing-noreturn -Wformat-security -Wredundant-decls -Wpointer-arith
+WFLAGS += -Wall -Wundef -Wshadow -Wcast-align -Wwrite-strings \
+ -Wmissing-prototypes -Wmissing-declarations -Wnested-externs \
+ -Winline -Wmissing-noreturn -Wformat-security -Wredundant-decls \
+ -Wpointer-arith
+
+#WFLAGS += -W -Wconversion -Wbad-function-cast -Wcast-qual
+#WFLAGS += -pedantic -std=gnu99
+#DEFS += -DDEBUG_CRC32
-#CFLAGS += -W -Wconversion -Wbad-function-cast -Wcast-qual
-#CFLAGS += -pedantic -std=gnu99
-#CFLAGS += -DDEBUG_CRC32
-
-CFLAGS += @COPTIMISE_FLAG@
+CFLAGS += -fPIC @COPTIMISE_FLAG@
LDFLAGS += @COPTIMISE_FLAG@
ifeq ("@DEBUG@", "yes")
@@ -303,14 +306,14 @@
$(TARGETS): $(OBJECTS)
%.o: %.c
- $(CC) -c $(INCLUDES) $(DEFS) $(CFLAGS) $< -o $@
+ $(CC) -c $(INCLUDES) $(DEFS) $(WFLAGS) $(CFLAGS) $< -o $@
%.pot: %.c Makefile
$(CC) -E $(INCLUDES) -include $(top_srcdir)/include/pogen.h \
- $(DEFS) $(CFLAGS) $< > $@
+ $(DEFS) $(WFLAGS) $(CFLAGS) $< > $@
%.so: %.o
- $(CC) -c $(INCLUDES) $(DEFS) $(CFLAGS) $(CLDFLAGS) $< $(LIBS) -o $@
+ $(CC) -c $(CFLAGS) $(CLDFLAGS) $< $(LIBS) -o $@
ifneq (,$(LIB_SHARED))
@@ -355,7 +358,7 @@
set -e; \
FILE=`echo $@ | sed 's/\\//\\\\\\//g;s/\\.d//g'`; \
DEPS=`echo $(DEPS) | sed -e 's/\\//\\\\\\//g'`; \
- $(CC) -MM $(INCLUDES) $(DEFS) $(CFLAGS) -o $@ $<; \
+ $(CC) -MM $(INCLUDES) $(DEFS) -o $@ $<; \
sed -i "s/\(.*\)\.o[ :]*/$$FILE.o $$FILE.d $$FILE.pot: $$DEPS /g" $@; \
[ -s $@ ] || $(RM) $@
@@ -378,8 +381,8 @@
set -e; \
( cat $(srcdir)/.exported_symbols; \
if test x$(EXPORTED_HEADER) != x; then \
- $(CC) -E -P $(INCLUDES) $(DEFS) $(CFLAGS) $(EXPORTED_HEADER) | \
- $(SED) -ne "/^typedef|}/!s/.*[ \*]\(\$(EXPORTED_FN_PREFIX)_[a-z0-9_]*\)(.*/\1/p"; \
+ $(CC) -E -P $(INCLUDES) $(DEFS) $(EXPORTED_HEADER) | \
+ $(SED) -ne "/^typedef|}/!s/.*[ \*]\(\$(EXPORTED_FN_PREFIX)_[a-z0-9_]*\)(.*/\1/p"; \
fi \
) > $@
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2012-02-23 13:31 mornfall
0 siblings, 0 replies; 16+ messages in thread
From: mornfall @ 2012-02-23 13:31 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: mornfall@sourceware.org 2012-02-23 13:31:01
Modified files:
. : make.tmpl.in
Log message:
Add -ldaemon to make.tmpl.in.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.130&r2=1.131
--- LVM2/make.tmpl.in 2012/02/22 17:55:10 1.130
+++ LVM2/make.tmpl.in 2012/02/23 13:31:01 1.131
@@ -39,7 +39,7 @@
LDDEPS += @LDDEPS@
LDFLAGS += @LDFLAGS@
LIB_SUFFIX = @LIB_SUFFIX@
-LVMINTERNAL_LIBS = -llvm-internal $(UDEV_LIBS) $(DL_LIBS)
+LVMINTERNAL_LIBS = -llvm-internal -L$(top_builddir)/daemons/common -ldaemon $(UDEV_LIBS) $(DL_LIBS)
DL_LIBS = @DL_LIBS@
PTHREAD_LIBS = @PTHREAD_LIBS@
READLINE_LIBS = @READLINE_LIBS@
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2012-02-13 17:31 prajnoha
0 siblings, 0 replies; 16+ messages in thread
From: prajnoha @ 2012-02-13 17:31 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: prajnoha@sourceware.org 2012-02-13 17:31:15
Modified files:
. : make.tmpl.in
Log message:
Superfluous '/' in systemd_dir path.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.128&r2=1.129
--- LVM2/make.tmpl.in 2012/02/13 13:02:48 1.128
+++ LVM2/make.tmpl.in 2012/02/13 17:31:14 1.129
@@ -66,7 +66,7 @@
udevdir = $(DESTDIR)@udevdir@
pkgconfigdir = $(usrlibdir)/pkgconfig
initdir = $(DESTDIR)@sysconfdir@/rc.d/init.d
-systemd_dir = $(DESTDIR)/@systemdsystemunitdir@
+systemd_dir = $(DESTDIR)@systemdsystemunitdir@
ocf_scriptdir = $(DESTDIR)@OCFDIR@
USRLIB_RELPATH = $(shell echo $(abspath $(usrlibdir) $(libdir)) | \
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2011-11-23 12:18 zkabelac
0 siblings, 0 replies; 16+ messages in thread
From: zkabelac @ 2011-11-23 12:18 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: zkabelac@sourceware.org 2011-11-23 12:18:42
Modified files:
. : make.tmpl.in
Log message:
Use 3 digits for chmod
Use same sized chmod params (0 are filled from left on its own)
and we use just 3 digits elsewhere.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.125&r2=1.126
--- LVM2/make.tmpl.in 2011/11/21 13:11:03 1.125
+++ LVM2/make.tmpl.in 2011/11/23 12:18:42 1.126
@@ -1,7 +1,7 @@
# @configure_input@
#
# Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
-# Copyright (C) 2004-2010 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2004-2011 Red Hat, Inc. All rights reserved.
#
# This file is part of LVM2.
#
@@ -106,9 +106,9 @@
INSTALL_DATA = $(INSTALL) -p $(M_INSTALL_DATA)
INSTALL_WDATA = $(INSTALL) -p -m 644
-INSTALL_DIR = $(INSTALL) -m 0755 -d
-INSTALL_ROOT_DIR = $(INSTALL) -m 0700 -d
-INSTALL_ROOT_DATA = $(INSTALL) -m 0600
+INSTALL_DIR = $(INSTALL) -m 755 -d
+INSTALL_ROOT_DIR = $(INSTALL) -m 700 -d
+INSTALL_ROOT_DATA = $(INSTALL) -m 600
INSTALL_SCRIPT = $(INSTALL) -p $(M_INSTALL_PROGRAM)
.SUFFIXES: .c .d .o .so .a .po .pot .mo .dylib
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2011-08-12 12:56 agk
0 siblings, 0 replies; 16+ messages in thread
From: agk @ 2011-08-12 12:56 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: agk@sourceware.org 2011-08-12 12:56:38
Modified files:
. : make.tmpl.in
Log message:
core removed with clean not distclean
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.121&r2=1.122
--- LVM2/make.tmpl.in 2011/08/12 07:57:24 1.121
+++ LVM2/make.tmpl.in 2011/08/12 12:56:38 1.122
@@ -370,7 +370,7 @@
distclean: cleandir $(SUBDIRS.distclean)
test -z "$(DISTCLEAN_DIRS)" || $(RM) -r $(DISTCLEAN_DIRS)
- $(RM) $(DISTCLEAN_TARGETS) Makefile core
+ $(RM) $(DISTCLEAN_TARGETS) Makefile
.exported_symbols_generated: $(EXPORTED_HEADER) .exported_symbols
set -e; \
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2011-08-12 7:57 mbroz
0 siblings, 0 replies; 16+ messages in thread
From: mbroz @ 2011-08-12 7:57 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: mbroz@sourceware.org 2011-08-12 07:57:24
Modified files:
. : make.tmpl.in
Log message:
Do not remove makefile during "make clean".
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.120&r2=1.121
--- LVM2/make.tmpl.in 2011/08/11 19:18:18 1.120
+++ LVM2/make.tmpl.in 2011/08/12 07:57:24 1.121
@@ -364,7 +364,7 @@
$(RM) $(OBJECTS) $(TARGETS) $(CLEAN_TARGETS) $(CLEAN_CFLOW) $(LDDEPS) \
$(POTFILES) $(SOURCES:%.c=%.d) $(SOURCES:%.c=%.gcno) $(SOURCES:%.c=%.gcda) \
$(SOURCES2:%.c=%.o) $(SOURCES2:%.c=%.d) $(SOURCES2:%.c=%.gcno) $(SOURCES2:%.c=%.gcda) \
- .exported_symbols_generated Makefile core
+ .exported_symbols_generated core
clean: $(SUBDIRS.clean) cleandir
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2010-08-16 17:49 agk
0 siblings, 0 replies; 16+ messages in thread
From: agk @ 2010-08-16 17:49 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: agk@sourceware.org 2010-08-16 17:49:26
Modified files:
. : make.tmpl.in
Log message:
set DEFAULT_RUN_DIR (missed from earlier checkin?)
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.109&r2=1.110
--- LVM2/make.tmpl.in 2010/08/02 12:57:04 1.109
+++ LVM2/make.tmpl.in 2010/08/16 17:49:26 1.110
@@ -73,6 +73,7 @@
DEFAULT_BACKUP_DIR = $(DEFAULT_SYS_DIR)/@DEFAULT_BACKUP_SUBDIR@
DEFAULT_CACHE_DIR = $(DEFAULT_SYS_DIR)/@DEFAULT_CACHE_SUBDIR@
DEFAULT_LOCK_DIR = @DEFAULT_LOCK_DIR@
+DEFAULT_RUN_DIR = @DEFAULT_RUN_DIR@
# Setup vpath search paths for some suffixes
vpath %.c $(srcdir)
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2010-05-20 22:54 agk
0 siblings, 0 replies; 16+ messages in thread
From: agk @ 2010-05-20 22:54 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: agk@sourceware.org 2010-05-20 22:54:59
Modified files:
. : make.tmpl.in
Log message:
Fix $(INSTALL_SCRIPT)
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.101&r2=1.102
--- LVM2/make.tmpl.in 2010/05/20 14:45:14 1.101
+++ LVM2/make.tmpl.in 2010/05/20 22:54:58 1.102
@@ -103,7 +103,7 @@
INSTALL_DIR = $(INSTALL) -m 0755 -d
INSTALL_ROOT_DIR = $(INSTALL) -m 0700 -d
INSTALL_ROOT_DATA = $(INSTALL) -m 0600
-INSTALL_SCRIPT = $(INSTALL) -p -m $(M_INSTALL_PROGRAM)
+INSTALL_SCRIPT = $(INSTALL) -p $(M_INSTALL_PROGRAM)
.SUFFIXES: .c .d .o .so .a .po .pot .mo .dylib
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2010-05-14 13:32 zkabelac
0 siblings, 0 replies; 16+ messages in thread
From: zkabelac @ 2010-05-14 13:32 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: zkabelac@sourceware.org 2010-05-14 13:32:36
Modified files:
. : make.tmpl.in
Log message:
For lcov target there is no need to include source file dependencies
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.97&r2=1.98
--- LVM2/make.tmpl.in 2010/05/11 08:57:02 1.97
+++ LVM2/make.tmpl.in 2010/05/14 13:32:36 1.98
@@ -350,7 +350,7 @@
sed "s/^/ /;s/$$/;/" < $<; \
echo " local:"; echo " *;"; echo "};") > $@
-ifeq (,$(findstring $(MAKECMDGOALS),cscope.out cflow clean distclean))
+ifeq (,$(findstring $(MAKECMDGOALS),cscope.out cflow clean distclean lcov))
ifdef SOURCES
-include $(SOURCES:.c=.d)
endif
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2010-05-11 8:43 zkabelac
0 siblings, 0 replies; 16+ messages in thread
From: zkabelac @ 2010-05-11 8:43 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: zkabelac@sourceware.org 2010-05-11 08:43:18
Modified files:
. : make.tmpl.in
Log message:
Skip unneeded 'cat' command execution.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.95&r2=1.96
--- LVM2/make.tmpl.in 2010/05/11 08:34:38 1.95
+++ LVM2/make.tmpl.in 2010/05/11 08:43:18 1.96
@@ -142,14 +142,11 @@
LVM_VERSION := $(shell cat $(top_srcdir)/VERSION)
-LIB_VERSION_LVM := $(shell cat $(top_srcdir)/VERSION | \
- $(AWK) -F '.' '{printf "%s.%s",$$1,$$2}')
+LIB_VERSION_LVM := $(shell $(AWK) -F '.' '{printf "%s.%s",$$1,$$2}' $(top_srcdir)/VERSION)
-LIB_VERSION_DM := $(shell cat $(top_srcdir)/VERSION_DM | \
- $(AWK) -F '.' '{printf "%s.%s",$$1,$$2}')
+LIB_VERSION_DM := $(shell $(AWK) -F '.' '{printf "%s.%s",$$1,$$2}' $(top_srcdir)/VERSION_DM)
-LIB_VERSION_APP := $(shell cat $(top_srcdir)/VERSION | \
- $(AWK) -F '[(). ]' '{printf "%s.%s",$$1,$$4}')
+LIB_VERSION_APP := $(shell $(AWK) -F '[(). ]' '{printf "%s.%s",$$1,$$4}' $(top_srcdir)/VERSION)
INCLUDES += -I. -I$(top_builddir)/include
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2010-04-08 9:15 zkabelac
0 siblings, 0 replies; 16+ messages in thread
From: zkabelac @ 2010-04-08 9:15 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: zkabelac@sourceware.org 2010-04-08 09:15:38
Modified files:
. : make.tmpl.in
Log message:
Add cleandir target.
Using non-recursive cleandir target for resursive distclean and clean.
Avoids duplicated clean invocation during distclean.
Indent $(RM) parameters.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.87&r2=1.88
--- LVM2/make.tmpl.in 2010/04/06 09:54:11 1.87
+++ LVM2/make.tmpl.in 2010/04/08 09:15:37 1.88
@@ -144,8 +144,8 @@
OBJECTS = $(SOURCES:%.c=%.o)
POTFILES = $(SOURCES:%.c=%.pot)
-.PHONY: all install install_cluster pofile distclean clean cflow device-mapper
-.PHONY: install_device-mapper install_lvm2
+.PHONY: all pofile distclean clean cleandir cflow device-mapper
+.PHONY: install install_cluster install_device-mapper install_lvm2
.PHONY: $(SUBDIRS) $(SUBDIRS.install) $(SUBDIRS.clean) $(SUBDIRS.distclean)
.PHONY: $(SUBDIRS.pofile) $(SUBDIRS.install_cluster) $(SUBDIRS.cflow)
.PHONY: $(SUBDIRS.device-mapper) $(SUBDIRS.install-device-mapper)
@@ -300,12 +300,14 @@
%.mo: %.po
$(MSGFMT) -o $@ $<
-clean: $(SUBDIRS.clean)
+cleandir:
$(RM) $(OBJECTS) $(TARGETS) $(CLEAN_TARGETS) $(CLEAN_CFLOW) $(LDDEPS) \
- $(POTFILES) $(SOURCES:%.c=%.d) $(SOURCES:%.c=%.gcno) $(SOURCES:%.c=%.gcda) \
- $(SOURCES2:%.c=%.o) $(SOURCES2:%.c=%.d) $(SOURCES2:%.c=%.gcno) $(SOURCES2:%.c=%.gcda)
+ $(POTFILES) $(SOURCES:%.c=%.d) $(SOURCES:%.c=%.gcno) $(SOURCES:%.c=%.gcda) \
+ $(SOURCES2:%.c=%.o) $(SOURCES2:%.c=%.d) $(SOURCES2:%.c=%.gcno) $(SOURCES2:%.c=%.gcda)
-distclean: clean $(SUBDIRS.distclean)
+clean: $(SUBDIRS.clean) cleandir
+
+distclean: cleandir $(SUBDIRS.distclean)
test -z "$(DISTCLEAN_DIRS)" || $(RM) -r $(DISTCLEAN_DIRS)
$(RM) $(DISTCLEAN_TARGETS) Makefile core
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2010-01-22 13:20 mbroz
0 siblings, 0 replies; 16+ messages in thread
From: mbroz @ 2010-01-22 13:20 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: mbroz@sourceware.org 2010-01-22 13:20:33
Modified files:
. : make.tmpl.in
Log message:
Switch memory debugging off for now if compiled with dmeventd,
functions are not thread-safe in debug mode.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.74&r2=1.75
--- LVM2/make.tmpl.in 2010/01/19 01:10:46 1.74
+++ LVM2/make.tmpl.in 2010/01/22 13:20:32 1.75
@@ -78,7 +78,10 @@
ifeq ("@DEBUG@", "yes")
CFLAGS += -g -fno-omit-frame-pointer
DEFS += -DDEBUG
- DEFS += -DDEBUG_MEM
+ # memory debugging is not thread-safe yet
+ ifneq ("@DMEVENTD@", "yes")
+ DEFS += -DDEBUG_MEM
+ endif
endif
ifeq ("@INTL@", "yes")
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2009-10-09 15:55 agk
0 siblings, 0 replies; 16+ messages in thread
From: agk @ 2009-10-09 15:55 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: agk@sourceware.org 2009-10-09 15:55:32
Modified files:
. : make.tmpl.in
Log message:
linking parms missing from o->so conversion.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.72&r2=1.73
--- LVM2/make.tmpl.in 2009/10/02 19:10:32 1.72
+++ LVM2/make.tmpl.in 2009/10/09 15:55:31 1.73
@@ -204,7 +204,7 @@
$(DEFS) $(CFLAGS) $< > $@
%.so: %.o
- $(CC) -c $(INCLUDES) $(DEFS) $(CFLAGS) $< -o $@
+ $(CC) -c $(INCLUDES) $(DEFS) $(CFLAGS) $(CLDFLAGS) $< $(LIBS) -o $@
ifeq ("@LIB_SUFFIX@","so")
$(LIB_SHARED): $(OBJECTS) $(LDDEPS)
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2008-10-31 22:33 agk
0 siblings, 0 replies; 16+ messages in thread
From: agk @ 2008-10-31 22:33 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: agk@sourceware.org 2008-10-31 22:33:55
Modified files:
. : make.tmpl.in
Log message:
no DMDIR
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.57&r2=1.58
--- LVM2/make.tmpl.in 2008/10/08 12:50:13 1.57
+++ LVM2/make.tmpl.in 2008/10/31 22:33:55 1.58
@@ -80,13 +80,6 @@
DEFS += -DINTL_PACKAGE=\"@INTL_PACKAGE@\" -DLOCALEDIR=\"@LOCALEDIR@\"
endif
-ifneq ("@DMDIR@", "")
- LDFLAGS += -L@DMDIR@/lib/ioctl
- ifeq ("@DMEVENTD@", "yes")
- LDFLAGS += -L@DMDIR@/dmeventd
- endif
-endif
-
LDFLAGS += -L$(top_srcdir)/lib -L$(libdir)
#DEFS += -DDEBUG_POOL
@@ -105,10 +98,6 @@
INCLUDES += -I$(top_srcdir)/include
-ifneq ("@DMDIR@", "")
- INCLUDES += -I@DMDIR@/include
-endif
-
ifdef DESTDIR
INCLUDES += -I$(DESTDIR)/usr/include
endif
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2005-10-25 19:04 agk
0 siblings, 0 replies; 16+ messages in thread
From: agk @ 2005-10-25 19:04 UTC (permalink / raw)
To: lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: agk@sourceware.org 2005-10-25 19:04:00
Modified files:
. : make.tmpl.in
Log message:
Add DEFS
Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.39&r2=1.40
^ permalink raw reply [flat|nested] 16+ messages in thread
* LVM2 make.tmpl.in
@ 2004-03-17 19:37 agk
0 siblings, 0 replies; 16+ messages in thread
From: agk @ 2004-03-17 19:37 UTC (permalink / raw)
To: lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: agk@sourceware.org 2004-03-17 19:37:44
Modified files:
. : make.tmpl.in
Log message:
Fix DESTDIR with configure path overrides.
Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.29&r2=1.30
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2012-02-23 13:31 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-23 12:19 LVM2 make.tmpl.in zkabelac
-- strict thread matches above, loose matches on Subject: below --
2012-02-23 13:31 mornfall
2012-02-13 17:31 prajnoha
2011-11-23 12:18 zkabelac
2011-08-12 12:56 agk
2011-08-12 7:57 mbroz
2010-08-16 17:49 agk
2010-05-20 22:54 agk
2010-05-14 13:32 zkabelac
2010-05-11 8:43 zkabelac
2010-04-08 9:15 zkabelac
2010-01-22 13:20 mbroz
2009-10-09 15:55 agk
2008-10-31 22:33 agk
2005-10-25 19:04 agk
2004-03-17 19:37 agk
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 read-only IMAP folder(s) and NNTP newsgroup(s).