Subversion Repositories prayer

Compare Revisions

Ignore whitespace Rev 56 → Rev 57

/branches/lenny/debian/changelog
1,3 → 1,11
prayer (1.2.2.1-4) unstable; urgency=low
 
* debian/Config: Fix handling of CFLAGS, CPPFLAGS and LDFLAGS from the
environment or command line, breaking a circular definition of
LDFLAGS.
 
-- Magnus Holmgren <holmgren@debian.org> Wed, 06 Aug 2008 22:46:05 +0200
 
prayer (1.2.2.1-3) unstable; urgency=low
 
* welcome_is_template.patch:
/branches/lenny/debian/Config
33,21 → 33,14
# Location of install program (GNU install or compatible required)
INSTALL = install
 
# Base Compiler options for GCC (use CPPFLAGS and LDFLAGS if passed in)
ifdef CPPFLAGS
BASECFLAGS = $(CPPFLAGS)
else
BASECFLAGS = -Wall -g -O2
endif
ifdef INCLUDES
BASECFLAGS += $(INCLUDES)
endif
ifdef LDFLAGS
BASELDFLAGS = $(LDFLAGS)
else
BASELDFLAGS = -g
endif
# Base Compiler options for GCC (use CFLAGS, CPPFLAGS and LDFLAGS if passed in)
BASECFLAGS := $(CFLAGS)
BASECFLAGS ?= -Wall -g -O2
BASECFLAGS += $(CPPFLAGS)
 
BASELDFLAGS := $(LDFLAGS)
BASELDFLAGS ?= -g
 
# Minimal libraries needed by Linux
BASE_LIBS = -lcrypt
# FreeBSD needs some extra libraries: