| Age | Commit message (Collapse) | Author | Files | Lines |
|
With many components disabled, configuration checked for many programs and
compiler flags that weren't actually used for anything. This is slow, and
makes simple builds look a lot more complicated than they are. So, rework
things to only check for tools and flags that will actually be used.
Mainly this is to make the package nice to use as a subproject.
|
|
These are now maintained in the separate "lv2-examples" project to keep the
dependencies of lv2 itself minimal.
|
|
|
|
|
|
|
|
|
|
In release builds, GCC 14.2.1 reports "error: writing 4 bytes into a region of
size between 18446744073709551581 and 3".
I'm pretty sure this is a compiler bug: the message suggests an underflow, the
flagged code does have an overflow check (being the whole point of the test),
and the test passes in both ASan and Valgrind.
|
|
|
|
The less time wasted with manual code formatting, the better.
|
|
|
|
|
|
|
|
|
|
|
|
Fedora takes issue with CC0. Although it doesn't really matter for this
stuff (dual licensed anyway, questionably "software", certainly not patentable,
and so on), this is simpler and more consistent with the ISC license used for
the actual software anyway.
|
|
|
|
This doesn't work because lv2_check_syntax.py uses serdi, and so would need to
call it with a wrapper. That's possible (and is how the test scripts work),
but this check doesn't need to run everywhere, so just disable it in cross
builds to avoid the issue.
|
|
Older versions of these tools can cause issues, but they are only useful for
development anyway. So, just disable them by default to avoid build issues for
users on ancient systems.
|
|
This allows the LV2 source distribution to be used as an include path for
compilers and an LV2_PATH for applications, at the expense of self-contained
bundles. That's a nice idea, but it made LV2 itself weird and annoying to
depend on. This rearranges things so that directories in the source tree
correspond more closely to installation directories.
To make this possible, the "aux" directory in the documentation output has been
changed to "style", to avoid the reserved name "aux" on Windows.
|
|
|