mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 17:16:43 +02:00
It cannot be built against older libpq, so we have to build it as the default version right away. ld: ../../../src/fe_utils/libpgfeutils.a(connect_utils.o): in function `disconnectDatabase': connect_utils.c:(.text+0x35d): undefined reference to `PQcancelCreate' ld: connect_utils.c:(.text+0x369): undefined reference to `PQcancelBlocking' ld: connect_utils.c:(.text+0x372): undefined reference to `PQcancelFinish' Co-Authored-By: Jakub Jirutka <jakub@jirutka.cz>
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From: Jakub Jirutka <jakub@jirutka.cz>
|
|
Date: Thu, 28 Oct 2021 01:27:53 +0200
|
|
Subject: [PATCH] Disable HTML docs, install only man pages
|
|
|
|
HTML docs are big and they are available only anyway.
|
|
|
|
--- a/doc/src/sgml/Makefile
|
|
+++ b/doc/src/sgml/Makefile
|
|
@@ -16,7 +16,7 @@
|
|
# to want to use.
|
|
html:
|
|
# Note that all is *not* the default target in this directory
|
|
-all: html man
|
|
+all: man
|
|
|
|
# We don't need the tree-wide headers or install support here.
|
|
NO_GENERATED_HEADERS=yes
|
|
@@ -202,14 +202,14 @@
|
|
## Install
|
|
##
|
|
|
|
-install: install-html install-man
|
|
+install: install-man
|
|
|
|
installdirs:
|
|
- $(MKDIR_P) '$(DESTDIR)$(htmldir)'/html $(addprefix '$(DESTDIR)$(mandir)'/man, 1 3 $(sqlmansectnum))
|
|
+ $(MKDIR_P) $(addprefix '$(DESTDIR)$(mandir)'/man, 1 3 $(sqlmansectnum))
|
|
|
|
# If the install used a man directory shared with other applications, this will remove all files.
|
|
uninstall:
|
|
- rm -f '$(DESTDIR)$(htmldir)/html/'* $(addprefix '$(DESTDIR)$(mandir)'/man, 1/* 3/* $(sqlmansectnum)/*)
|
|
+ rm -f $(addprefix '$(DESTDIR)$(mandir)'/man, 1/* 3/* $(sqlmansectnum)/*)
|
|
|
|
|
|
## Install html
|