Replaced the old ugly ipv6 compilation hack by a conditional in Modules.

This commit is contained in:
Martin Mares 1999-01-23 21:08:59 +00:00
parent 2c2f67bd83
commit 294c182eb1
3 changed files with 7 additions and 8 deletions

View file

@ -2,10 +2,13 @@ birdlib.h
bitops.c
bitops.h
ip.h
ipv4.c
ipv4.h
#ifdef CONFIG_IPV6
ipv6.c
ipv6.h
#else
ipv4.c
ipv4.h
#endif
lists.c
lists.h
md5.c

View file

@ -6,11 +6,7 @@
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#ifdef IPV6
#include "nest/bird.h"
#include "lib/ip.h"
#error "Ought to implement these."
#endif

View file

@ -6,8 +6,8 @@
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#ifndef _BIRD_IPV4_H_
#define _BIRD_IPV4_H_
#ifndef _BIRD_IPV6_H_
#define _BIRD_IPV6_H_
#include <netinet/in.h>
#include <string.h>