mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
e18d6ac6e8
This adds textproc/icu4c as a dependency, since PostgreSQL 16 requires that by default. This allows additional collations to work. Bulk testing by tb@ Input from tb@ and sthen@ OK tb@, sthen@
15 lines
518 B
Plaintext
15 lines
518 B
Plaintext
Index: src/interfaces/ecpg/ecpglib/Makefile
|
|
--- src/interfaces/ecpg/ecpglib/Makefile.orig
|
|
+++ src/interfaces/ecpg/ecpglib/Makefile
|
|
@@ -15,8 +15,8 @@ include $(top_builddir)/src/Makefile.global
|
|
|
|
PGFILEDESC = "ECPG - embedded SQL in C"
|
|
NAME= ecpg
|
|
-SO_MAJOR_VERSION= 6
|
|
-SO_MINOR_VERSION= $(MAJORVERSION)
|
|
+SO_MAJOR_VERSION= ${LIBecpg_MAJOR}
|
|
+SO_MINOR_VERSION= ${LIBecpg_MINOR}
|
|
|
|
override CPPFLAGS := -I../include -I$(top_srcdir)/src/interfaces/ecpg/include \
|
|
-I$(libpq_srcdir) -I$(top_builddir)/src/port $(CPPFLAGS)
|