diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | bgpd/bgp_debug.c | 2 | ||||
-rw-r--r-- | bgpd/bgp_main.c | 2 | ||||
-rw-r--r-- | isisd/isis_main.c | 2 | ||||
-rw-r--r-- | lib/command.c | 2 | ||||
-rw-r--r-- | lib/print_version.c | 2 | ||||
-rw-r--r-- | lib/smux.c | 2 | ||||
-rw-r--r-- | lib/vty.c | 2 | ||||
-rw-r--r-- | ospf6d/ospf6_lsa.c | 2 | ||||
-rw-r--r-- | ospf6d/ospf6_main.c | 2 | ||||
-rw-r--r-- | ospf6d/ospf6d.h | 2 | ||||
-rw-r--r-- | ospfclient/ospf_apiclient.c | 2 | ||||
-rw-r--r-- | ospfd/ospf_main.c | 2 | ||||
-rw-r--r-- | ripd/rip_main.c | 2 | ||||
-rw-r--r-- | ripngd/ripng_main.c | 2 | ||||
-rw-r--r-- | vtysh/vtysh_main.c | 2 | ||||
-rw-r--r-- | zebra/main.c | 2 |
17 files changed, 22 insertions, 16 deletions
@@ -1,3 +1,9 @@ +2004-03-16 David Young <dyoung@pobox.com> + + * (many) reference <lib/version.h> rather than "version.h", + because version.h is a generated file and not present in the + source tree when using objdir builds. + 2004-03-03 PC Drew <pc@superiorcomm.net> * lib/keychain.c: typecast time_t function to long, fixes compile diff --git a/bgpd/bgp_debug.c b/bgpd/bgp_debug.c index bb1a6107..e6f64312 100644 --- a/bgpd/bgp_debug.c +++ b/bgpd/bgp_debug.c @@ -20,7 +20,7 @@ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA #include <zebra.h> -#include "version.h" +#include <lib/version.h> #include "prefix.h" #include "linklist.h" #include "stream.h" diff --git a/bgpd/bgp_main.c b/bgpd/bgp_main.c index effddddb..0ba19c2f 100644 --- a/bgpd/bgp_main.c +++ b/bgpd/bgp_main.c @@ -25,7 +25,7 @@ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA #include "command.h" #include "getopt.h" #include "thread.h" -#include "version.h" +#include <lib/version.h> #include "memory.h" #include "prefix.h" #include "log.h" diff --git a/isisd/isis_main.c b/isisd/isis_main.c index b952c00c..12007506 100644 --- a/isisd/isis_main.c +++ b/isisd/isis_main.c @@ -27,7 +27,7 @@ #include "getopt.h" #include "thread.h" #include "log.h" -#include "version.h" +#include <lib/version.h> #include "command.h" #include "vty.h" #include "memory.h" diff --git a/lib/command.c b/lib/command.c index 24113062..8b6ae3d0 100644 --- a/lib/command.c +++ b/lib/command.c @@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA. */ #include "memory.h" #include "log.h" -#include "version.h" +#include <lib/version.h> #include "thread.h" #include "vector.h" #include "vty.h" diff --git a/lib/print_version.c b/lib/print_version.c index 4c9be047..1873faaf 100644 --- a/lib/print_version.c +++ b/lib/print_version.c @@ -21,7 +21,7 @@ #include <zebra.h> -#include "version.h" +#include <lib/version.h> void print_version (char *progname) @@ -33,7 +33,7 @@ #include "thread.h" #include "linklist.h" #include "command.h" -#include "version.h" +#include <lib/version.h> #include "memory.h" #include "sockunion.h" #include "smux.h" @@ -25,7 +25,7 @@ #include "linklist.h" #include "thread.h" #include "buffer.h" -#include "version.h" +#include <lib/version.h> #include "command.h" #include "sockunion.h" #include "memory.h" diff --git a/ospf6d/ospf6_lsa.c b/ospf6d/ospf6_lsa.c index b14979ff..712aa686 100644 --- a/ospf6d/ospf6_lsa.c +++ b/ospf6d/ospf6_lsa.c @@ -23,7 +23,7 @@ #include <zebra.h> /* Include other stuffs */ -#include "version.h" +#include <lib/version.h> #include "log.h" #include "getopt.h" #include "linklist.h" diff --git a/ospf6d/ospf6_main.c b/ospf6d/ospf6_main.c index f0a23ebc..3b7cfc9a 100644 --- a/ospf6d/ospf6_main.c +++ b/ospf6d/ospf6_main.c @@ -23,7 +23,7 @@ #include "getopt.h" #include "thread.h" #include "log.h" -#include "version.h" +#include <lib/version.h> #include "command.h" #include "vty.h" #include "memory.h" diff --git a/ospf6d/ospf6d.h b/ospf6d/ospf6d.h index 8c7af99e..e867b1c1 100644 --- a/ospf6d/ospf6d.h +++ b/ospf6d/ospf6d.h @@ -27,7 +27,7 @@ #ifndef HEADER_DEPENDENCY /* Include other stuffs */ -#include "version.h" +#include <lib/version.h> #include "log.h" #include "getopt.h" #include "thread.h" diff --git a/ospfclient/ospf_apiclient.c b/ospfclient/ospf_apiclient.c index 3a62a423..96ccb8b4 100644 --- a/ospfclient/ospf_apiclient.c +++ b/ospfclient/ospf_apiclient.c @@ -22,7 +22,7 @@ #include <zebra.h> -#include "version.h" +#include <lib/version.h> #include "getopt.h" #include "thread.h" #include "prefix.h" diff --git a/ospfd/ospf_main.c b/ospfd/ospf_main.c index 3f1e4fda..43aa5a4f 100644 --- a/ospfd/ospf_main.c +++ b/ospfd/ospf_main.c @@ -22,7 +22,7 @@ #include <zebra.h> -#include "version.h" +#include <lib/version.h> #include "getopt.h" #include "thread.h" #include "prefix.h" diff --git a/ripd/rip_main.c b/ripd/rip_main.c index 8b0d2162..5d6b0ad4 100644 --- a/ripd/rip_main.c +++ b/ripd/rip_main.c @@ -21,7 +21,7 @@ #include <zebra.h> -#include "version.h" +#include <lib/version.h> #include "getopt.h" #include "thread.h" #include "command.h" diff --git a/ripngd/ripng_main.c b/ripngd/ripng_main.c index 3beb2279..d21ca307 100644 --- a/ripngd/ripng_main.c +++ b/ripngd/ripng_main.c @@ -22,7 +22,7 @@ #include <zebra.h> -#include "version.h" +#include <lib/version.h> #include "getopt.h" #include "vector.h" #include "vty.h" diff --git a/vtysh/vtysh_main.c b/vtysh/vtysh_main.c index f30aba43..ee092458 100644 --- a/vtysh/vtysh_main.c +++ b/vtysh/vtysh_main.c @@ -29,7 +29,7 @@ #include <readline/readline.h> #include <readline/history.h> -#include "version.h" +#include <lib/version.h> #include "getopt.h" #include "command.h" diff --git a/zebra/main.c b/zebra/main.c index a66734cc..07467bea 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -21,7 +21,7 @@ #include <zebra.h> -#include "version.h" +#include <lib/version.h> #include "getopt.h" #include "command.h" #include "thread.h" |