Skip to content
Commits on Source (4)
concavity (0.1+dfsg.1-3) UNRELEASED; urgency=medium
concavity (0.1+dfsg.1-4) unstable; urgency=medium
[ Jelmer Vernooij ]
* Use secure copyright file specification URI.
-- Jelmer Vernooij <jelmer@debian.org> Sat, 20 Oct 2018 14:00:12 +0000
[ Helmut Grohne ]
* Make sure C++ compiler is used for C++ sources
Closes: #904145
[ Andreas Tille ]
* Standards-Version: 4.2.1
-- Andreas Tille <tille@debian.org> Sat, 08 Dec 2018 00:08:02 +0100
concavity (0.1+dfsg.1-2) unstable; urgency=medium
......
......@@ -5,7 +5,7 @@ Uploaders: Laszlo Kajan <lkajan@rostlab.org>,
Section: science
Priority: optional
Build-Depends: debhelper (>= 11~)
Standards-Version: 4.1.5
Standards-Version: 4.2.1
Vcs-Browser: https://salsa.debian.org/med-team/concavity
Vcs-Git: https://salsa.debian.org/med-team/concavity.git
Homepage: http://compbio.cs.princeton.edu/concavity/
......
Author: : Helmut Grohne <helmut@subdivi.de>
Date: Fri, 20 Jul 2018 15:33:01 UTC
Bug-Debian: https://bugs.debian.org/904145
Description: Make sure C++ compiler is used for C++ sources
--- a/scripts/Makefile.apps
+++ b/scripts/Makefile.apps
@@ -74,7 +74,7 @@ debug:
$(EXE): $(OBJS) $(LIBDIR)
mkdir -p $(EXE_DIR)
- $(CC) -o $(EXE) $(LDFLAGS) $(USER_OBJS) $(OBJS) $(LIBS)
+ $(CXX) -o $(EXE) $(LDFLAGS) $(USER_OBJS) $(OBJS) $(LIBS)
release:
mkdir -p $(RELEASE_DIR)/apps
--- a/scripts/Makefile.std
+++ b/scripts/Makefile.std
@@ -17,7 +17,7 @@ INCS=$(HSRCS) $(CCSRCS:.C=.h) $(CSRCS:.c
# C flags
#
-CC=g++
+CXX=g++
BASE_CFLAGS=$(USER_CFLAGS) -Wall -I. -I../../pkgs
DEBUG_CFLAGS=$(BASE_CFLAGS) -g
OPT_CFLAGS=$(BASE_CFLAGS) -O3 -DNDEBUG
@@ -52,7 +52,7 @@ LIB_DIR=../../lib/$(ARCH)
.SUFFIXES: .c .C .o
.C.o:
- $(CC) $(CPPFLAGS) $(CFLAGS) -c $<
+ $(CXX) $(CPPFLAGS) $(CFLAGS) -c $<
.c.o:
gcc $(CPPFLAGS) $(CFLAGS) -c $<
......@@ -8,3 +8,4 @@ compiler_errors
manpage
threshold_range_cutoff
remove_ply
cross.patch