You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 6, 2022. It is now read-only.
I tried packaging this library for OpenIndiana.
Would it be possible for you to have the following changes to the Makefile?
Change LIBDIR = $(PREFIX)/lib to LIBDIR ?= $(PREFIX)/lib so that LIBDIR could be re-defined externally.
Change both lines ln -s $(LIBDIR)/$(SONAME) $(LIBDIR)/libhttp_parser.$(SOEXT) to ln -s $(SONAME) $(LIBDIR)/libhttp_parser.$(SOEXT) so that relative paths are used for symbolic links.
Thank you.
The text was updated successfully, but these errors were encountered:
AdamMajer
added a commit
to AdamMajer/http-parser
that referenced
this issue
Dec 1, 2016
LIBDIR and INCLUDEDIR are overridable w/o any change: make LIBDIR=foo INCLUDEDIR=bar. = gives precedence to make's operands, ?= gives precedence to operands and environment.
i support the second point.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
I tried packaging this library for OpenIndiana.
Would it be possible for you to have the following changes to the Makefile?
LIBDIR = $(PREFIX)/lib
toLIBDIR ?= $(PREFIX)/lib
so that LIBDIR could be re-defined externally.ln -s $(LIBDIR)/$(SONAME) $(LIBDIR)/libhttp_parser.$(SOEXT)
toln -s $(SONAME) $(LIBDIR)/libhttp_parser.$(SOEXT)
so that relative paths are used for symbolic links.Thank you.
The text was updated successfully, but these errors were encountered: