Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
BIRD Internet Routing Daemon
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
labs
BIRD Internet Routing Daemon
Commits
abae6e9c
Commit
abae6e9c
authored
Apr 01, 1999
by
Martin Mareš
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
First few FreeBSD portability fixes.
parent
6accdf4f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
sysdep/unix/io.c
sysdep/unix/io.c
+5
-0
tools/Makefile-top.in
tools/Makefile-top.in
+1
-1
tools/Makefile.in
tools/Makefile.in
+1
-1
No files found.
sysdep/unix/io.c
View file @
abae6e9c
...
...
@@ -8,6 +8,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
...
...
@@ -216,6 +217,10 @@ tm_shot(void)
* Sockets
*/
#ifndef SOL_IP
#define SOL_IP IPPROTO_IP
#endif
static
list
sock_list
;
static
void
...
...
tools/Makefile-top.in
View file @
abae6e9c
...
...
@@ -8,7 +8,7 @@ all depend:
clean:
$(MAKE) -C $(objdir) clean
rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core -or -name depend -or -name .#*`
find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core -or -name depend -or -name .#* | xargs rm -f
distclean: clean
rm -rf $(objdir)
...
...
tools/Makefile.in
View file @
abae6e9c
...
...
@@ -25,7 +25,7 @@ $(exedir)/bird: $(addsuffix /all.o, $(static-dirs)) conf/all.o lib/birdlib.a
touch
.dep-stamp
clean
:
rm
-f
`
find
.
-name
"*.[oa]"
-or
-name
core
-or
-name
depend
`
find
.
-name
"*.[oa]"
-or
-name
core
-or
-name
depend | xargs
rm
-f
rm
-f
$(exedir)
/bird .dep-stamp
distclean
:
clean
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment