emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/pq 3026279578 48/63: Use pg_config with --includedir in


From: ELPA Syncer
Subject: [elpa] externals/pq 3026279578 48/63: Use pg_config with --includedir instead of --pkgincludedir.
Date: Mon, 14 Feb 2022 23:24:26 -0500 (EST)

branch: externals/pq
commit 302627957849ac900b5b8903faacd7d5f08f23f9
Author: Andreas Seltenreich <seltenreich@gmx.de>
Commit: Andreas Seltenreich <seltenreich@gmx.de>

    Use pg_config with --includedir instead of --pkgincludedir.
    
    We want the client libraries, not the server includes.  It mostly
    worked by accident since most distributions put them into the same
    directory anyway.
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index b44d488cd1..d1cd312d4c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 EMACS = emacs
 
 PG_CONFIG = pg_config
-PGINCLUDEDIR := $(shell $(PG_CONFIG) --pkgincludedir)
+PGINCLUDEDIR := $(shell $(PG_CONFIG) --includedir)
 
 CC = gcc
 CFLAGS  = -I$(CURDIR) -I$(HOME)/ext/emacs/src/ -I$(PGINCLUDEDIR) -std=gnu99 
-ggdb3 -Wall -fPIC



reply via email to

[Prev in Thread] Current Thread [Next in Thread]