diff options
author | 2021-08-23 17:54:40 +0200 | |
---|---|---|
committer | 2021-09-28 02:45:14 +0100 | |
commit | 37f7f7954557bd2600b45b03960d677cd073b7fb (patch) | |
tree | 93a4298ea9700feeaa9fecb966c1d1c3b075e3c7 /dev-db/oracle-instantclient/files | |
parent | media-fonts/vollkorn: version bump to 4.105 (diff) | |
download | gentoo-37f7f7954557bd2600b45b03960d677cd073b7fb.tar.gz gentoo-37f7f7954557bd2600b45b03960d677cd073b7fb.tar.bz2 gentoo-37f7f7954557bd2600b45b03960d677cd073b7fb.zip |
dev-db/oracle-instantclient: bump version to 21.3.0.0.0
Closes: https://bugs.gentoo.org/809827
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Marco Genasci <fedeliallalinea@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/22082
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-db/oracle-instantclient/files')
-rw-r--r-- | dev-db/oracle-instantclient/files/21.3.0.0.0-makefile.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dev-db/oracle-instantclient/files/21.3.0.0.0-makefile.patch b/dev-db/oracle-instantclient/files/21.3.0.0.0-makefile.patch new file mode 100644 index 000000000000..44799548e51a --- /dev/null +++ b/dev-db/oracle-instantclient/files/21.3.0.0.0-makefile.patch @@ -0,0 +1,22 @@ +diff --color -Naru a/sdk/demo/demo.mk b/sdk/demo/demo.mk +--- a/sdk/demo/demo.mk 2021-08-22 17:20:17.232777697 +0200 ++++ b/sdk/demo/demo.mk 2021-08-22 17:24:49.800783794 +0200 +@@ -43,10 +43,15 @@ + CC=/opt/SunProd/SUNWspro6.1/bin/CC + cc=/opt/SunProd/SUNWspro6.1/bin/cc + +-ICINCHOME=../ +-ICLIBHOME=../../ ++ifeq ($(BUILD32),T) ++LIBDIR=lib32 ++else ++LIBDIR=lib ++endif ++ICINCHOME=$(ORACLE_HOME)/include ++ICLIBHOME=$(ORACLE_HOME)/$(LIBDIR) + ICLIBPATH=-L$(ICLIBHOME) +-CCINCLUDES=-I$(ICINCHOME)include ++CCINCLUDES=-I$(ICINCHOME) + + THREADLIBS=-lthread + CCLIB=$(ICLIBPATH) -locci -lclntsh $(THREADLIBS) |