aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/c/Makefile.am
Commit message (Collapse)AuthorAge
* Start using symbol versioningGravatar Benjamin Barenblat2018-06-17
| | | | | | We now have enough users to make ABI compatibility worthwhile. Designate the current ABI as version 1 and begin maintaining `-version-info` for libtool.
* Remove redundant -WimplicitGravatar Benjamin Barenblat2017-08-07
| | | | -Wall implies -Wimplicit.
* Enable -Wunused-parameterGravatar Benjamin Barenblat2017-08-07
|
* Export fewer symbolsGravatar Benjamin Barenblat2016-08-05
| | | | Closes https://github.com/urweb/urweb/issues/43.
* Turn off GCC's fancy %n checking, because the performance cost is too highGravatar Adam Chlipala2014-02-07
|
* make dist: Use fewer wildcardsGravatar Anders Kaseorg2013-11-22
| | | | | | | | | | | | | | | The remaining ones only work by accident: http://www.gnu.org/software/automake/manual/html_node/Wildcards.html and they have some practical problems too (we don’t really want to distribute include/urweb/config.h or src/config.sml), but this is enough for now to pass ‘make distcheck’ as long as we don’t run it from a separate build directory. Signed-off-by: Anders Kaseorg <andersk@mit.edu> --- Makefile.am | 6 +++--- src/c/Makefile.am | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-)
* Allow building in a separate build directoryGravatar Anders Kaseorg2013-11-22
| | | | | | | | | | Signed-off-by: Anders Kaseorg <andersk@mit.edu> --- Makefile.am | 30 +++--- src/c/Makefile.am | 2 +- src/compiler.mlb | 2 +- src/sources | 302 +++++++++++++++++++++++++++--------------------------- 4 files changed, 168 insertions(+), 168 deletions(-)
* Add missing inter-library dependenciesGravatar Anders Kaseorg2013-11-21
| | | | | | | | | | | | | | | | | This is needed, at least on recent Ubuntu, to fix these linker errors when compiling any Ur/Web application: liburweb.so: undefined reference to `lround' liburweb.so: undefined reference to `ceil' liburweb.so: undefined reference to `RAND_bytes' liburweb.so: undefined reference to `DES_fcrypt' liburweb.so: undefined reference to `SHA256_Init' liburweb.so: undefined reference to `SHA256_Final' liburweb.so: undefined reference to `SHA256_Update' Signed-off-by: Anders Kaseorg <andersk@mit.edu> --- src/c/Makefile.am | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-)
* Add support for -boot flag, which allows in-tree execution of Ur/WebGravatar Edward Z. Yang2012-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The boot flag rewrites most hardcoded paths to point to the build directory, and also forces static compilation. This is convenient for developing Ur/Web, or if you cannot 'sudo make install' Ur/Web. The following changes were made: * Header files were moved to include/urweb instead of include; this lets FFI users point their C_INCLUDE_PATH at this directory at write <urweb/urweb.h>. For internal Ur/Web executables, we simply pass -I$PATH/include/urweb as normal. * Differentiate between LIB and SRCLIB; SRCLIB is Ur and JavaScript source files, while LIB is compiled products from libtool. For in-tree compilation these live in different places. * No longer reference Config for paths; instead use Settings; these settings can be changed dynamically by Compiler.enableBoot () (TODO: add a disableBoot function.) * config.h is now generated directly in include/urweb/config.h, for consistency's sake (especially since it gets installed along with the rest of the headers!) * All of the autotools build products got updated. * The linkStatic field in protocols now only contains the name of the build product, and not the absolute path. Future users have to be careful not to reference the Settings files to early, lest they get an old version (this was the source of two bugs during development of this patch.)
* Turn off warnings about deprecated functions, to placate silly OpenSSL ↵Gravatar Adam Chlipala2011-10-26
| | | | change for OS X
* Generated pretty-printed HTML for a simple tutorial source fileGravatar Adam Chlipala2011-07-15
|
* Fixes to work nicely with OS X and Clang (thanks to Austin Seipp)Gravatar Adam Chlipala2011-06-17
|
* Switch from libmhash to OpenSSLGravatar Adam Chlipala2010-12-26
|
* Switch to gcc -WallGravatar Adam Chlipala2010-01-28
|
* First attempt to switch to Automake, to get shared libraries built in OSXGravatar Adam Chlipala2010-01-28