Skip to content
This repository was archived by the owner on Jan 12, 2022. It is now read-only.

Commit 8bd4dfc

Browse files
Added missing Makefile patch
1 parent 5f8c1bb commit 8bd4dfc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ Experiments on integration of Python extensions with C++ OSPF base implementatio
33

44
The base code is the Release 2.16 of the ospfd routing software created by John T. Moy, and described in the book [OSPF Complete Implementation](https://dl.acm.org/doi/book/10.5555/1481642).
55

6-
Executed in Docker containers running Ubuntu 16.04.
6+
Executed in Docker containers running Ubuntu 16.04 integrated with GNS3.
77

88
## See also
99

1010
* <http://www.ospf.org> - Original source code by John T. Moy, and respective patches
1111

12-
* <https://github.com/pfa/ospfd-diffs> - Most of required patches to run base code in Ubuntu 16.04
12+
* <https://github.com/pfa/ospfd-diffs> - Most of required changes to run base code in Ubuntu 16.04

linux/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ vpath %.C .:../src
33
vpath %.c ../src/contrib
44

55
INSTALL_DIR = /usr/sbin
6-
CGI_DIR = /home/httpd/cgi-bin
7-
CPPFLAGS = -I. -I../src -I/usr/local/include
6+
CGI_DIR = /usr/lib/cgi-bin
7+
CPPFLAGS = -I. -I../src -I/usr/local/include "-DUSE_INTERP_ERRORLINE" # ErrorLine is deprecated, requires flag
88
CXXFLAGS = -O -g -Wall -Woverloaded-virtual -Wcast-qual -Wuninitialized
99
CFLAGS = -O -g -Wall -Woverloaded-virtual -Wcast-qual -Wuninitialized
1010

0 commit comments

Comments
 (0)