mongoose: resolve symbols from the shlib.
This commit is contained in:
parent
b578c6ea5f
commit
a3db2f31de
|
@ -23,7 +23,7 @@
|
|||
- $(CC) mongoose.c main.c -o $(PROG) $(LINFLAGS)
|
||||
+ $(CC) mongoose.c -shared -fPIC -fpic -Wl,-soname,$(LIB) \
|
||||
+ -o $(LIB) $(LINFLAGS) $(CFLAGS)
|
||||
+ $(CC) mongoose.c main.c -o $(PROG) $(LINFLAGS) -L. $(LIB) $(CFLAGS)
|
||||
+ $(CC) main.c -o $(PROG) $(LINFLAGS) -L. $(LIB) $(CFLAGS)
|
||||
|
||||
bsd:
|
||||
$(CC) mongoose.c -shared -pthread -fpic -fPIC -o $(LIB) $(CFLAGS)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'mongoose'
|
||||
pkgname=mongoose
|
||||
version=3.1
|
||||
revision=1
|
||||
revision=2
|
||||
wrksrc=$pkgname
|
||||
build_style=gnu-makefile
|
||||
make_build_args="linux"
|
||||
|
|
Loading…
Reference in New Issue