46dc73a57d569bc036c36d922f2699e725b5c1aa |
|
09-Mar-2011 |
Stephen Hemminger <stephen.hemminger@vyatta.com> |
Add no-strict-aliasing to genl The genl code uses constructs which violate the strict aliasing constraints of gcc 4.4. Disable the optimization to avoid warnings and potential breakage.
/external/iproute2/genl/Makefile
|
f2e27cfb016e2465cd3f07e0b556058060702578 |
|
06-Nov-2009 |
Mike Frysinger <vapier@gentoo.org> |
support static-only systems The iptables code supports a "no shared libs" mode where it can be used without requiring dlfcn related functionality. This adds similar support to iproute2 so that it can easily be used on systems like nommu Linux (but obviously with a few limitations -- no dynamic plugins). Rather than modify every location that uses dlfcn.h, I hooked the dlfcn.h header with stub functions when shared library support is disabled. Then symbol lookup is done via a local static lookup table (which is generated automatically at build time) so that internal symbols can be found. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
/external/iproute2/genl/Makefile
|
a18fa24a7b0c2bca58c00a6d6e24e7fa300a5ea7 |
|
19-Oct-2006 |
Stephen Hemminger <shemminger@osdl.org> |
genl Makefile LDFLAGS The current genl Makefile sticks -lm and -ldl into LDFLAGS ... however, this does not create the proper link order as the implicit Makefile rules will place LDFLAGS before object files attached patch uses LDLIBS for -lm and -ldl and make's implicit rule will place them in the proper location also, i removed the -s argument to `install` as install does stripping improperly in many scenarios (such as cross-compiling) ... and in general, it's nice if the decision to strip is handled by the sysadmin -mike
/external/iproute2/genl/Makefile
|
65018ae43b14c8157bbe05473d76635626177b87 |
|
08-Aug-2006 |
Jamal Hadi Salim <hadi@cyberus.ca> |
This patch adds a generic netlink controller interface. The controller is the only module using this at the moment. Thomas has a sample user of genetlink that would fit here; bug him for it. Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
/external/iproute2/genl/Makefile
|