The change in r27585 will fail with future major versions of gcc: "#if __GNUC__ < 4 || __GNUC_MINOR__ < 3" 1.0 = ok 4.0 = ok 5.0 = FAIL
correct would be: "#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__< 3)" 1.0 = ok 4.0 = ok 5.0 = ok Just my two cents Maddes _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
