aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAge
* Added initial version of regex libMaximilian Szengel2012-03-22
|
* adding libgnunetpostgres for shared postgres functionality between postgres ↵Christian Grothoff2012-03-22
| | | | datastore/datacache backends
* -abstracting out mysql helper libraryChristian Grothoff2012-03-21
|
* add configure option --enable-javaports to open ports of services with Java ↵Christian Grothoff2012-03-19
| | | | bindings by default (#2228)
* -LRN: Have stat64 on W32 unconditionallyChristian Grothoff2012-03-19
| | | | | | | In case it's unavailable (only on W9x, which we don't support anyway), plibc will provide a wrapper.
* add gnsChristian Grothoff2012-02-28
|
* enabling libglpk detectionMatthias Wachs2012-02-27
|
* -version bumps in anticipation of releaseChristian Grothoff2012-02-27
|
* -updating readme and configureChristian Grothoff2012-02-23
|
* -adding namestore directory:Christian Grothoff2012-02-20
|
* -adding build system basics for stream libraryChristian Grothoff2012-02-03
|
* -starting TUN libChristian Grothoff2012-01-17
|
* -skeleton for new PT daemonChristian Grothoff2012-01-16
|
* improving code and build system to be in line with gnunet access control ↵Christian Grothoff2012-01-13
| | | | model for services as described at https://gnunet.org/gnunet-access-control-model
* change default configurations on systems with UNIX domain sockets to NOT ↵Christian Grothoff2012-01-13
| | | | specify any port for TCP-based IPC (and interpret that as no TCP-based IPC desired), as we can and want to use UNIX domain sockets in this case by default
* -towards new exit daemonChristian Grothoff2012-01-05
|
* -some code cleanupChristian Grothoff2012-01-01
|
* -add revision check for libunistringChristian Grothoff2012-01-01
|
* -use test for libunistring from gnulibChristian Grothoff2012-01-01
|
* -add test for libunistringChristian Grothoff2011-12-30
|
* -version bumps for releaseChristian Grothoff2011-12-26
|
* Adding optional compiler and linker hardening options as per suggestion from ↵Christian Grothoff2011-12-20
| | | | Jacob
* some very minor stylistic changes to gnunet-helper-nat-server based on ↵Christian Grothoff2011-12-16
| | | | suggestions from Jacob Applebaum
* Python version required to run tests is >= 2.6Matthias Wachs2011-12-15
|
* basics for integration testsMatthias Wachs2011-12-08
|
* releasing GNUnet 0.9.0Christian Grothoff2011-11-30
|
* Implementing Thomas Bushnell's suggestion to work around the signal race ↵Christian Grothoff2011-11-26
| | | | without needing special vfork semantics
* LRN: Add -lole32 (why had it worked without this untilChristian Grothoff2011-11-05
| | | | | now?)
* LRN: Compile against libgnurx (W32)Christian Grothoff2011-11-05
|
* LRN: Add '-Wl,' prefix to -no-undefinedChristian Grothoff2011-11-05
| | | | | | | | | | -no-undefined is not a valid compiler option as of GCC 4.6.x (it IS valid linker option). Note that this REQUIRES an extra -no-undefined to be passed to libtool (this is done by GN_LIB_LDLFAGS and GN_PLUGIN_LDFLAGS), because libtool does not understand -Wl,-no-undefined.
* fixing #1820Christian Grothoff2011-11-02
|
* reading for distingChristian Grothoff2011-10-30
|
* hmac issuesMatthias Wachs2011-10-25
|
* update messageChristian Grothoff2011-10-10
|
* kill malicious flag, legacy protocol numbersChristian Grothoff2011-10-10
|
* LRN's big logging rewrite (#1805):Christian Grothoff2011-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * GNUNET_BOTTOM_LOGLEVEL and GNUNET_TOP_LOGLEVEL set global levels Use bottom level to force logging to be more verbose than configured Use top level to force logging to be less verbose than configured Obviously, bottom <= top * GNUNET_LOG sets per-component levels GNUNET_LOG looks like this: name[/bottom[/top]]/... name starts with a non-digit character, must not include '/' bottom and top must consist only of digits, or be empty a description is only used if it matches the component exactly as a special exception (for now) the name '*' matches any component per-component loglevels override global loglevels global levels override whatever is given via arguments or in config Examples: test_client/8/8/ run test_client with DEBUG level (usually leads to a timeout, by the way) */2/2/core/8/8/transport/4/4 run everything with WARNING, core - with DEBUG, transport - with INFO *//1/peerinfo/4/ run everything with top loglevel ERROR, global/configured bottom loglevel, and peerinfo - with bottom loglevel INFO and global/configured top loglevel statistics/ does nothing * Added GNUNET_ERROR_TYPE_UNSPECIFIED enum value, to hold -1. Its corresponding string is NULL. * Changed the logger calls as Grothoff suggested - to use static int to hold the result of runtime evaluation of logability. Logging can be unconditionally disabled in advance by defining GNUNET_LOG_CALL_STATUS to 0, and enabled in advance by defining it to 1. * Added GNUNET_CULL_LOGGING, which, if defined, completely culls out all logging calls at compile time. * Log definition parsing is only done once, results are cached. * Changed definition format, now it looks like this: [component|*|];[file|*|];[function|*|];[from_line[-to_line]];level/[component...] All field separators are mandatory (but some fields could be empty or be '*'). Line definition must be either empty or "number" or "number-number" Level definition must not be empty, and is a string representation of the level (i.e. DEBUG, WARNING, INFO, etc). Definition entry must end with a slash, whether or not there's another entry after it. File name is matched to the end of __FILE__, which allows file name to match not only the base name, but also directories leading to it. * Removed default WARNING loglevel from program and service utility code. Now they default to NULL (UNSPECIFIED) level, which can be overriden by GNUNET_LOG definition, if no level is specified via config or commandline. Log levels from config or commandline are overriden by GNUNET_FORCE_LOG. If GNUNET_*LOG are undefined, and no levels came from config or commandline, logger internally defaults to WARNING level. Add --enable-logging configure option
* initial ATS service refactoringChristian Grothoff2011-08-12
|
* natnseChristian Grothoff2011-08-02
|
* nse hackingChristian Grothoff2011-07-23
|
* enable-ats configure optionChristian Grothoff2011-07-19
|
* infoChristian Grothoff2011-06-23
|
* dceChristian Grothoff2011-06-23
|
* moving monkeyChristian Grothoff2011-06-16
|
* (no commit message)Matthias Wachs2011-06-15
|
* simple switch to disable atsMatthias Wachs2011-06-15
|
* disabling ats for releaseMatthias Wachs2011-06-14
|
* bumpChristian Grothoff2011-06-10
|
* ship and install man pagesChristian Grothoff2011-06-10
|
* adding configure code for --enable-benchmarks, --enable-expensive-tests, ↵Christian Grothoff2011-06-10
| | | | some clean up
* pcap no longer neededChristian Grothoff2011-06-08
|