Skip to content

Commit

Permalink
update hiredis_vip.pc file
Browse files Browse the repository at this point in the history
  • Loading branch information
deep011 committed May 4, 2017
1 parent aa01a7b commit 7c2a506
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ OBJ=net.o hiredis.o sds.o async.o read.o hiarray.o hiutil.o command.o crc16.o ad
EXAMPLES=hiredis-example hiredis-example-libevent hiredis-example-libev hiredis-example-glib
TESTS=hiredis-test
LIBNAME=libhiredis_vip
PKGCONFNAME=hiredis.pc
PKGCONFNAME=hiredis_vip.pc

HIREDIS_VIP_MAJOR=$(shell grep HIREDIS_VIP_MAJOR hircluster.h | awk '{print $$3}')
HIREDIS_VIP_MINOR=$(shell grep HIREDIS_VIP_MINOR hircluster.h | awk '{print $$3}')
Expand Down Expand Up @@ -161,10 +161,10 @@ $(PKGCONFNAME): hiredis.h
@echo libdir=$(PREFIX)/$(LIBRARY_PATH) >> $@
@echo includedir=$(PREFIX)/$(INCLUDE_PATH) >> $@
@echo >> $@
@echo Name: hiredis >> $@
@echo Description: Minimalistic C client library for Redis. >> $@
@echo Name: hiredis-vip >> $@
@echo Description: Minimalistic C client library for Redis and Redis Cluster. >> $@
@echo Version: $(HIREDIS_VIP_MAJOR).$(HIREDIS_VIP_MINOR).$(HIREDIS_VIP_PATCH) >> $@
@echo Libs: -L\$${libdir} -lhiredis >> $@
@echo Libs: -L\$${libdir} -lhiredis_vip >> $@
@echo Cflags: -I\$${includedir} -D_FILE_OFFSET_BITS=64 >> $@

install: $(DYLIBNAME) $(STLIBNAME) $(PKGCONFNAME)
Expand Down

2 comments on commit 7c2a506

@nginxsantos
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you please describe on the change. I am using Async mode and seeing an issue where I don't get my write callback getting invoked sometimes

@deep011
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the issue was caused by this hiredis_vip.pc commit?
Show the issue in detail.

Please sign in to comment.