[Groonga-commit] pgroonga/pgroonga at 6ab6d03 [master] Add workaround for no msgpack.pc installed environment

Back to archive index

Kouhei Sutou null+****@clear*****
Fri Dec 16 11:40:25 JST 2016


Kouhei Sutou	2016-12-16 11:40:25 +0900 (Fri, 16 Dec 2016)

  New Revision: 6ab6d037a4e8eda5bcd20fa5a4255b315d753c50
  https://github.com/pgroonga/pgroonga/commit/6ab6d037a4e8eda5bcd20fa5a4255b315d753c50

  Message:
    Add workaround for no msgpack.pc installed environment
    
    The environment is CentOS 6 and EPEL msgpack-devel package.

  Modified files:
    Makefile

  Modified: Makefile (+2 -2)
===================================================================
--- Makefile    2016-12-16 11:03:39 +0900 (4fdc9e0)
+++ Makefile    2016-12-16 11:40:25 +0900 (ce4fa67)
@@ -21,8 +21,8 @@ DATA =						\
 	$(shell echo pgroonga--*--*.sql)
 endif
 
-PG_CPPFLAGS = $(shell pkg-config --cflags $(PACKAGES))
-SHLIB_LINK = $(shell pkg-config --libs $(PACKAGES)) -lm
+PG_CPPFLAGS = $(shell pkg-config --cflags $(PACKAGES)) $(MSGPACK_CFLAGS)
+SHLIB_LINK = $(shell pkg-config --libs $(PACKAGES)) $(MSGPACK_LIBS) -lm
 REGRESS = $(shell find sql -name '*.sql' | sed -e 's,\(^sql/\|\.sql$$\),,g')
 REGRESS_OPTS = --load-extension=pgroonga
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index