Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
BIRD Internet Routing Daemon
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
labs
BIRD Internet Routing Daemon
Commits
3140c8b2
Commit
3140c8b2
authored
Jul 28, 2018
by
Ondřej Zajíček
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move FreeBSD CFLAGS and LDFLAGS to configure
Backport of commit
09c1e370
.
parent
aa2ec912
Pipeline
#38206
passed with stages
in 7 minutes and 18 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
.gitlab-ci.yml
.gitlab-ci.yml
+0
-6
configure.ac
configure.ac
+6
-1
No files found.
.gitlab-ci.yml
View file @
3140c8b2
...
@@ -211,9 +211,6 @@ docker_ubuntu-16_04-amd64:
...
@@ -211,9 +211,6 @@ docker_ubuntu-16_04-amd64:
# TODO We want to copy these BSDs to our own virtual machines, to make sure someone doesn't update them by accident.
# TODO We want to copy these BSDs to our own virtual machines, to make sure someone doesn't update them by accident.
.freebsd-11-i386
:
&freebsd-11-i386_env
.freebsd-11-i386
:
&freebsd-11-i386_env
variables
:
CPPFLAGS
:
"
-I/usr/local/include"
LDFLAGS
:
"
-L/usr/local/lib"
tags
:
tags
:
-
freebsd
-
freebsd
-
i386
-
i386
...
@@ -223,9 +220,6 @@ docker_ubuntu-16_04-amd64:
...
@@ -223,9 +220,6 @@ docker_ubuntu-16_04-amd64:
#- tags
#- tags
.freebsd-11-amd64
:
&freebsd-11-amd64_env
.freebsd-11-amd64
:
&freebsd-11-amd64_env
variables
:
CPPFLAGS
:
"
-I/usr/local/include"
LDFLAGS
:
"
-L/usr/local/lib"
tags
:
tags
:
-
freebsd
-
freebsd
-
amd64
-
amd64
...
...
configure.ac
View file @
3140c8b2
...
@@ -216,9 +216,13 @@ else
...
@@ -216,9 +216,13 @@ else
;;
;;
ipv6:freebsd*)
ipv6:freebsd*)
sysdesc=bsd-v6
sysdesc=bsd-v6
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
LDFLAGS="$LDFLAGS -L/usr/local/lib"
;;
;;
ipv4:freebsd*)
ipv4:freebsd*)
sysdesc=bsd
sysdesc=bsd
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
LDFLAGS="$LDFLAGS -L/usr/local/lib"
;;
;;
ipv6:dragonfly*)
ipv6:dragonfly*)
sysdesc=bsd-v6
sysdesc=bsd-v6
...
@@ -419,4 +423,5 @@ AC_MSG_RESULT([ Debugging: $enable_debug])
...
@@ -419,4 +423,5 @@ AC_MSG_RESULT([ Debugging: $enable_debug])
AC_MSG_RESULT([ POSIX threads: $enable_pthreads])
AC_MSG_RESULT([ POSIX threads: $enable_pthreads])
AC_MSG_RESULT([ Routing protocols: $protocols])
AC_MSG_RESULT([ Routing protocols: $protocols])
AC_MSG_RESULT([ Client: $enable_client])
AC_MSG_RESULT([ Client: $enable_client])
rm -f $objdir/.*-stamp
\ No newline at end of file
rm -f $objdir/.*-stamp
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