Changeset 799
- Timestamp:
- Nov 26, 2016, 3:29:14 PM (3 years ago)
- Location:
- trunk/debian/packages/libnl-tiny/trunk
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/debian/packages/libnl-tiny/trunk/debian/changelog
r797 r799 1 libnl-tiny (0.1.6~debwrtSTRETCH+4) stretch-debwrt-unstable; urgency=medium 2 3 * Use svn-buildpackage 4 * Add shlibs.local to fix multiarch lib issue(similar to: 5 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810499) 6 7 -- Johan van Zoomeren <amain@debwrt.net> Fri, 25 Nov 2016 22:25:09 +0100 8 1 9 libnl-tiny (0.1.5-2~debwrt70+1) wheezy-debwrt-unstable; urgency=medium 2 10 -
trunk/debian/packages/libnl-tiny/trunk/debian/control
r797 r799 3 3 Priority: optional 4 4 Maintainer: Johan van Zoomeren <amain@debwrt.net> 5 Build-Depends: debhelper (>= 9) 5 Build-Depends: debhelper (>= 9), quilt 6 6 Pre-Depends: ${misc:Pre-Depends} 7 Standards-Version: 3.9. 67 Standards-Version: 3.9.8 8 8 Homepage: https://dev.openwrt.org/browser/trunk/package/libnl-tiny 9 9 -
trunk/debian/packages/libnl-tiny/trunk/debian/source/format
r797 r799 1 3.0 ( quilt)1 3.0 (native) -
trunk/debian/packages/libnl-tiny/trunk/src/Makefile
r793 r799 1 CC=gcc 2 WFLAGS=-Wall 3 CFLAGS=-O2 1 WFLAGS+=-Wall 2 3 CFLAGS+=-O2 -fPIC 4 4 5 INCLUDES=-Iinclude 5 6 6 LIBNAME=libnl-tiny.so 7 LIBNAME=libnl-tiny 8 STATICLIB=$(LIBNAME).a 9 SHAREDLIB=$(LIBNAME).so 10 SHAREDLIBV=$(LIBNAME).so.0.1.5 11 SHAREDLIBM=$(LIBNAME).so.0 7 12 8 all: $( LIBNAME)13 all: $(SHAREDLIBV) 9 14 10 15 %.o: %.c … … 14 19 GENL_OBJ=genl.o genl_family.o genl_ctrl.o genl_mngt.o unl.o 15 20 16 $(LIBNAME): $(LIBNL_OBJ) $(GENL_OBJ) 17 $(CC) $(CFLAGS) -Wl,-Bsymbolic-functions -shared -o $@ $^ 21 $(SHAREDLIBV): $(LIBNL_OBJ) $(GENL_OBJ) 22 $(CC) $(CFLAGS) $(LDFLAGS) -Wl,-Bsymbolic-functions,-soname,$(SHAREDLIBM) -shared -o $@ $^ 23 rm -f $(SHAREDLIB) $(SHAREDLIBM) 24 ln -s $@ $(SHAREDLIB) 25 ln -s $@ $(SHAREDLIBM) 26 27
Note: See TracChangeset
for help on using the changeset viewer.