mirror of https://gitee.com/openkylin/ppp.git
Add a SONAME to the pppd binary
This hack inserts a SONAME into the pppd binary, which allows us to run dpkg-gensymbols/dh_makeshlibs over the resulting binary. This is useful so that we can use Debian's standard build infrastructure to help track the ppp binary's ABI, which is used by plugins. Forwarded: not-needed Last-Update: 2015-12-05 Gbp-Pq: Name pppd-soname-hack.patch
This commit is contained in:
parent
d896af655c
commit
807808369a
|
@ -206,6 +206,8 @@ endif
|
|||
|
||||
INSTALL= install
|
||||
|
||||
VERSION = $(shell awk -F '"' '/VERSION/ { print $$2; }' patchlevel.h)
|
||||
|
||||
all: $(TARGETS)
|
||||
|
||||
install: pppd
|
||||
|
@ -217,7 +219,8 @@ install: pppd
|
|||
$(INSTALL) -c -m 444 pppd.8 $(MANDIR)
|
||||
|
||||
pppd: $(PPPDOBJS)
|
||||
$(CC) $(LDFLAGS) -o pppd $(PPPDOBJS) $(LIBS)
|
||||
$(CC) $(LDFLAGS) -o pppd $(PPPDOBJS) $(LIBS) \
|
||||
-Wl,-soname,pppd.so.$(VERSION)
|
||||
|
||||
srp-entry: srp-entry.c
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ srp-entry.c $(LIBS)
|
||||
|
|
Loading…
Reference in New Issue