mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-11 14:05:12 +00:00
cd9b9bd3e4
This is dummy version of the Scientiamobile WURFL C API that can be used to successfully build/run haproxy compiled with USE_WURFL=1. It is marked as version 1.11.2.100 to distinguish it from any real version of the lib. It has no external dependencies so it should work out of the box by building it like this : $ make -C contrib/wurfl In order to use it, simply reference this directory as the WURFL include and library paths : $ make TARGET=<target> USE_WURFL=1 WURFL_INC=$PWD/contrib/wurfl WURFL_LIB=$PWD/contrib/wurfl
14 lines
252 B
Makefile
14 lines
252 B
Makefile
# makefile for dummy wurfl library
|
|
# builds shared library
|
|
# installs it in /usr/lib/ with header file wurfl.h in /usr/include/wurfl
|
|
#
|
|
# install needs to be run as root
|
|
|
|
build: libwurfl.a
|
|
|
|
libwurfl.a: dummy-wurfl.o
|
|
ar rv $@ $<
|
|
|
|
clean:
|
|
rm -rf *.a *.o
|