Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
78ec3548
Commit
78ec3548
authored
May 12, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support consistent --disable-* syntax
parent
d1aaf702
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
configure
configure
+40
-0
No files found.
configure
View file @
78ec3548
...
@@ -390,6 +390,46 @@ while [ $# -ne 0 ]; do
...
@@ -390,6 +390,46 @@ while [ $# -ne 0 ]; do
append_cache_entry CAF_ENABLE_ADDRESS_SANITIZER BOOL
yes
append_cache_entry CAF_ENABLE_ADDRESS_SANITIZER BOOL
yes
append_cache_entry CAF_ENABLE_TYPE_ID_CHECKS BOOL
yes
append_cache_entry CAF_ENABLE_TYPE_ID_CHECKS BOOL
yes
;;
;;
# "overloads" for forward compatibility with new 0.18 disable-* syntax
--disable-memory-management
)
append_cache_entry CAF_NO_MEM_MANAGEMENT BOOL
yes
;;
--disable-compiler-check
)
append_cache_entry CAF_NO_COMPILER_CHECK BOOL
yes
;;
--disable-auto-libc
++
)
append_cache_entry CAF_NO_AUTO_LIBCPP BOOL
yes
;;
--disable-exceptions
)
append_cache_entry CAF_NO_EXCEPTIONS BOOL
yes
;;
--disable-examples
)
append_cache_entry CAF_NO_EXAMPLES BOOL
yes
;;
--disable-curl-examples
)
append_cache_entry CAF_NO_CURL_EXAMPLES BOOL
yes
;;
--disable-testing
)
append_cache_entry CAF_NO_UNIT_TESTS BOOL
yes
;;
--disable-opencl
)
append_cache_entry CAF_NO_OPENCL BOOL
yes
;;
--disable-openssl
)
append_cache_entry CAF_NO_OPENSSL BOOL
yes
;;
--disable-tools
)
append_cache_entry CAF_NO_TOOLS BOOL
yes
;;
--disable-io
)
append_cache_entry CAF_NO_IO BOOL
yes
;;
--disable-python
)
append_cache_entry CAF_NO_PYTHON BOOL
yes
;;
--disable-summary
)
append_cache_entry CAF_NO_SUMMARY BOOL
yes
;;
*
)
*
)
echo
"Invalid option '
$1
'. Try
$0
--help to see available options."
echo
"Invalid option '
$1
'. Try
$0
--help to see available options."
exit
1
exit
1
...
...
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