You probably resolved the problem already, but I thought it might be helpful for others reading the post. I found the idea at http://ubuntuforums.org/showthread.php?t=80798
The lines
home/p/vpnclient/interceptor.c: In function ‘add_netdev’:
/home/p/vpnclient/interceptor.c:59: sorry, unimplemented: inlining failed in call to ‘supported_device’: function body not available
most probaly indicate that the function 'supported_device' is defined after ‘add_netdev’. You could try to apply the patch posted on the site mentioned above. Or, if the patch is not applicable to your version of interceptor.c, you could just manually cut & paste the function declaration of 'supported_device' before the one of 'add_netdev'.
an idea
You probably resolved the problem already, but I thought it might be helpful for others reading the post. I found the idea at http://ubuntuforums.org/showthread.php?t=80798
The lines
home/p/vpnclient/interceptor.c: In function ‘add_netdev’:
/home/p/vpnclient/interceptor.c:59: sorry, unimplemented: inlining failed in call to ‘supported_device’: function body not available
most probaly indicate that the function 'supported_device' is defined after ‘add_netdev’. You could try to apply the patch posted on the site mentioned above. Or, if the patch is not applicable to your version of interceptor.c, you could just manually cut & paste the function declaration of 'supported_device' before the one of 'add_netdev'.
Hope this helps