Skip to content

Commit

Permalink
2004-03-16 David Young <dyoung@pobox.com>
Browse files Browse the repository at this point in the history
	* (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.

(committed by gdt)
works fine with normal builds; didn't try objdir
  • Loading branch information
gdt committed Mar 16, 2004
1 parent 253e933 commit 5e4fa16
Show file tree
Hide file tree
Showing 17 changed files with 22 additions and 16 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion bgpd/bgp_debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion bgpd/bgp_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion isisd/isis_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lib/command.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lib/print_version.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include <zebra.h>

#include "version.h"
#include <lib/version.h>

void
print_version (char *progname)
Expand Down
2 changes: 1 addition & 1 deletion lib/smux.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lib/vty.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ospf6d/ospf6_lsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ospf6d/ospf6_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ospf6d/ospf6d.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ospfclient/ospf_apiclient.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#include <zebra.h>

#include "version.h"
#include <lib/version.h>
#include "getopt.h"
#include "thread.h"
#include "prefix.h"
Expand Down
2 changes: 1 addition & 1 deletion ospfd/ospf_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#include <zebra.h>

#include "version.h"
#include <lib/version.h>
#include "getopt.h"
#include "thread.h"
#include "prefix.h"
Expand Down
2 changes: 1 addition & 1 deletion ripd/rip_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include <zebra.h>

#include "version.h"
#include <lib/version.h>
#include "getopt.h"
#include "thread.h"
#include "command.h"
Expand Down
2 changes: 1 addition & 1 deletion ripngd/ripng_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#include <zebra.h>

#include "version.h"
#include <lib/version.h>
#include "getopt.h"
#include "vector.h"
#include "vty.h"
Expand Down
2 changes: 1 addition & 1 deletion vtysh/vtysh_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion zebra/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include <zebra.h>

#include "version.h"
#include <lib/version.h>
#include "getopt.h"
#include "command.h"
#include "thread.h"
Expand Down

0 comments on commit 5e4fa16

Please sign in to comment.