mirror of https://github.com/SeanOMik/znc-push.git
ensure push.so is linked with libcurl properly
It looks as if the push module was not actually linking against the libcurl shared library without these additional flags being passed.
This commit is contained in:
parent
9fe9eaf052
commit
4cf7a22f24
2
Makefile
2
Makefile
|
@ -9,7 +9,7 @@ endif
|
|||
|
||||
push.so: push.cpp
|
||||
sed -i -e "s|PUSHVERSION \".*\"|PUSHVERSION \"$(version)\"|" push.cpp
|
||||
CXXFLAGS="$(CXXFLAGS) $(flags)" znc-buildmod push.cpp
|
||||
CXXFLAGS="$(CXXFLAGS) $(flags)" LIBS="$(LIBS) $(flags)" znc-buildmod push.cpp
|
||||
sed -i -e "s|PUSHVERSION \".*\"|PUSHVERSION \"dev\"|" push.cpp
|
||||
|
||||
install: push.so
|
||||
|
|
Loading…
Reference in New Issue