Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Add patch by Helmut Grohne to fix FTCBFS. (closes: #902033)
· dd6c8c0a
Bas Couwenberg
authored
Jun 21, 2018
dd6c8c0a
Set distribution to unstable.
· 1bcbedf4
Bas Couwenberg
authored
Jun 21, 2018
1bcbedf4
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
1bcbedf4
ogdi-dfsg (3.2.1+ds-2)
UNRELEASED
; urgency=medium
ogdi-dfsg (3.2.1+ds-2)
unstable
; urgency=medium
* Team upload.
* Update Vcs-* URLs for Salsa.
* Bump Standards-Version to 4.1.4, no changes.
* Strip trailing whitespace from changelog & rules files.
* Add patch by Helmut Grohne to fix FTCBFS.
(closes: #902033)
-- Bas Couwenberg <sebastic@debian.org>
Sat
,
3
1
Mar
2018
12:34:30
+0200
-- Bas Couwenberg <sebastic@debian.org>
Thu
,
2
1
Jun
2018
21:26:54
+0200
ogdi-dfsg (3.2.1+ds-1) unstable; urgency=medium
...
...
debian/patches/cross.patch
0 → 100644
View file @
1bcbedf4
Description: Don't hardcode compiler to fix cross compilation.
Author: Helmut Grohne <helmut@subdivi.de>
Bug-Debian: https://bugs.debian.org/902033
Forwarded: https://github.com/libogdi/ogdi/pull/7
--- a/config/common.mak.in
+++ b/config/common.mak.in
@@ -46,6 +46,8 @@
OGDI_VERSION = $(OGDI_MAJOR)$(OGDI_
# Default definitions
#
+AUTOCONF_CC = @CC@
+
ifndef CFG
CFG = release
endif
--- a/config/unix.mak
+++ b/config/unix.mak
@@ -22,9 +22,9 @@
UNIX_DEFINE = -Dunix
#
# Standard tools
#
-CC = gcc -shared -fPIC
-LD = gcc
-SHLIB_LD = gcc -shared -fPIC
+CC = ${AUTOCONF_CC} -shared -fPIC
+LD = ${AUTOCONF_CC}
+SHLIB_LD = ${AUTOCONF_CC} -shared -fPIC
AR = ar cr
RM = rm
RMALL = rm -rf
debian/patches/hurd
View file @
1bcbedf4
...
...
@@ -127,7 +127,7 @@ Author: Francesco Paolo Lovergine <frankie@debian.org>
#
--- a/configure
+++ b/configure
@@ -5
879
,4 +5
879
,7 @@
target=`uname`
@@ -5
385
,4 +5
385
,7 @@
target=`uname`
if test "$target" = "GNU/kFreeBSD" ; then
target=Linux
fi
...
...
@@ -137,7 +137,7 @@ Author: Francesco Paolo Lovergine <frankie@debian.org>
mv config/generic.mak config/$target.mak
--- a/configure.in
+++ b/configure.in
@@ -35
2
,4 +35
2
,7 @@
target=`uname`
@@ -35
4
,4 +35
4
,7 @@
target=`uname`
if test "$target" = "GNU/kFreeBSD" ; then
target=Linux
fi
...
...
debian/patches/install-so-link
View file @
1bcbedf4
...
...
@@ -5,7 +5,7 @@ Author: Bas Couwenberg <sebastic@debian.org>
--- a/config/common.mak.in
+++ b/config/common.mak.in
@@ -25
7
,11 +25
7
,11 @@
default-install:
@@ -25
9
,11 +25
9
,11 @@
default-install:
endif
install-so-link:
...
...
debian/patches/makefile
View file @
1bcbedf4
...
...
@@ -14,7 +14,7 @@ Author: Francesco Paolo Lovergine <frankie@debian.org>
#
---
a/makefile
+++
b/makefile
@@
-
17
,7
+
17
,7
@@
include
$(TOPDIR)/config/common.mak
@@
-
22
,7
+
22
,7
@@
include
$(TOPDIR)/config/common.mak
#
# Sub-directories that need to be built
#
...
...
debian/patches/series
View file @
1bcbedf4
...
...
@@ -5,3 +5,4 @@ hurd
hardening
spelling-errors
install-so-link
cross.patch