-
Notifications
You must be signed in to change notification settings - Fork 38
ENT-12600: Document and refactor compile-options #1744
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Lars Erik Wik <[email protected]>
We don't really build with something else then lmdb. Hence, we don't need the option to build with something else. Signed-off-by: Lars Erik Wik <[email protected]>
Ticket: ENT-12600 Signed-off-by: Lars Erik Wik <[email protected]>
Thank you for submitting a pull request! Maybe @craigcomstock can review this? |
Ticket: ENT-12600 Signed-off-by: Lars Erik Wik <[email protected]>
Ticket: ENT-12600 Signed-off-by: Lars Erik Wik <[email protected]>
# HP-UX ships with ‘cc’ which invokes the ‘HP-UX bundled C compiler’ which | ||
# lacks some functionality we need to build things. Among the other things, | ||
# it doesn’t know how to link ‘.so’ files directly and it doesn’t recognize | ||
# them as valid input type. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# HP-UX ships with ‘cc’ which invokes the ‘HP-UX bundled C compiler’ which | |
# lacks some functionality we need to build things. Among the other things, | |
# it doesn’t know how to link ‘.so’ files directly and it doesn’t recognize | |
# them as valid input type. | |
# HP-UX ships with ‘cc’ which invokes the ‘HP-UX bundled C compiler’ which lacks some functionality we need to build things. Among the other things, it doesn’t know how to link ‘.so’ files directly and it doesn’t recognize them as valid input type. |
# Win32 does not support pthreads natively. The pthreads-w32 project provide | ||
# solution to this problem. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# Win32 does not support pthreads natively. The pthreads-w32 project provide | |
# solution to this problem. | |
# Win32 does not support pthreads natively. The pthreads-w32 project provide solution to this problem. |
# A port of the regex functionality from the glibc Library for use on | ||
# Windows platforms |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# A port of the regex functionality from the glibc Library for use on | |
# Windows platforms | |
# A port of the regex functionality from the glibc Library for use on Windows platforms. |
# libgcc_s.so is needed before we compile any other dependency | ||
# on some platforms! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# libgcc_s.so is needed before we compile any other dependency | |
# on some platforms! | |
# libgcc_s.so is needed before we compile any other dependencies on some platforms! |
Is it specifically libgcc_s.so or is it the gcc
command? Curious.
# Generic library that implements the Simple Authentication and Security | ||
# Layer (SASL) framework |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# Generic library that implements the Simple Authentication and Security | |
# Layer (SASL) framework | |
# Generic library that implements the Simple Authentication and Security Layer (SASL) framework |
# Library for managing Extended Attributes (xattrs) on filesystems | ||
var_append DEPS "libattr" | ||
|
||
# POSIX Access Control Lists (ACLs) on filesystems | ||
var_append DEPS "libacl" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
might be interesting to note if (and I think they are) dependencies of apache?
nova-s390*-*-*) | ||
ROLE=agent | ||
;; | ||
nova-*-centos-*) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This section could use a comment near the top. Why do we assume hub for platforms that support it? Interesting.
nova-*-debian-*) | ||
ROLE=hub | ||
;; | ||
nova-*-opensuse-*) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we don't support hub on opensuse.
nova-*-rhel-*) | ||
ROLE=hub | ||
;; | ||
nova-*-sles-*) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no support for sles hub
# We install in all Linux platforms, because it does no harm on platforms | ||
# without systemd, and it has the advantage of working out of the box on | ||
# platforms that adopt systemd later. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# We install in all Linux platforms, because it does no harm on platforms | |
# without systemd, and it has the advantage of working out of the box on | |
# platforms that adopt systemd later. | |
# We install in all Linux platforms, because it does no harm on platforms without systemd, and it has the advantage of working out of the box on platforms that adopt systemd later. |
Uh oh!
There was an error while loading. Please reload this page.