Codebase list pspp / 36e5617
Import Debian changes 0.6.0-3 pspp (0.6.0-3) unstable; urgency=low * debian/psppire.1: psppire was written by John Darrington (thanks to Ben Pfaff, Closes:Bug#500639) pspp (0.6.0-2) unstable; urgency=low * debian/rules: default to -O2 (some optimization) instead of -O0 James R. Van Zandt authored 15 years ago Andreas Tille committed 5 years ago
3 changed file(s) with 20 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
0 pspp (0.6.0-3) unstable; urgency=low
1
2 * debian/psppire.1: psppire was written by John Darrington (thanks to
3 Ben Pfaff, Closes:Bug#500639)
4
5 -- James R. Van Zandt <jrv@debian.org> Tue, 30 Sep 2008 17:43:09 -0400
6
7 pspp (0.6.0-2) unstable; urgency=low
8
9 * debian/rules: default to -O2 (some optimization) instead of -O0
10
11 -- James R. Van Zandt <jrv@debian.org> Mon, 14 Jul 2008 21:29:14 -0400
12
013 pspp (0.6.0-1) unstable; urgency=low
114
215 * New upstream release (closes:#451825,#486777)
00 .\" Hey, EMACS: -*- nroff -*-
1 .TH PSPPIRE 1 "July 14, 2008"
1 .TH PSPPIRE 1 "September 30, 2008"
22 .\" Please adjust this date whenever revising the manpage.
33 .\"
44 .\" Some roff macros, for reference:
3838 .SH SEE ALSO
3939 .BR pspp (1).
4040 .SH AUTHOR
41 psppire was written by Ben Pfaff.
41 psppire was written by John Darrington.
4242 .PP
4343 This manual page was written by James R. Van Zandt <jrv@debian.org>,
4444 for the Debian project (but may be used by others).
1818 INSTALL_SCRIPT = $(INSTALL) -p -o root -g root -m 755
1919 INSTALL_DIR = $(INSTALL) -p -d -o root -g root -m 755
2020
21 # with -O2 or -O3, src/ascii.c compilation fails
22 # ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
23 CFLAGS += -O0
24 # else
25 # CFLAGS += -O2
26 # endif
21 ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
22 CFLAGS += -O0
23 else
24 CFLAGS += -O2
25 endif
2726 ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
2827 INSTALL_PROGRAM += -s
2928 endif