aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAge
* -fix abd configMartin Schanzenbach2021-12-14
|
* - fix experimental flagMartin Schanzenbach2021-12-13
|
* ABD: Fix buildMartin Schanzenbach2021-12-03
|
* - added missing g for extra_logging vart3sserakt2021-11-30
|
* make LE optionalChristian Grothoff2021-11-26
|
* fix configure.ac issues with autoconf 2.69Christian Grothoff2021-11-25
|
* -also check for LaTeX packages used by gnunet-bcdAlessio Vanni2021-11-24
| | | | | | Just checking if the command is available is not enough; for example, some people might not have TikZ installed, a package required to draw the logo on the business cards.
* -accidentally broken uncrustify checkAlessio Vanni2021-11-22
|
* -do not build gnunet-bcd if pdflatex is missingAlessio Vanni2021-11-21
|
* -mallinfo is deprecated in favour of mallinfo2Alessio Vanni2021-11-21
|
* Update configure.ac and a few macros used by itAlessio Vanni2021-11-21
| | | | | | | | | | | | | The changes done to configure.ac are essentially divided in two categories: the first is made of changes to improve existing checks, even if it's merely in the message being printed during the check; the second category is made of updates aimed at bringing this file closer to Autoconf 2.71, which deprecated or even removed some stuff that was otherwise present either directly in configure.ac or in one of the macros it includes, which have been updated in this commit too. Actually, the generated configure script was created by Autoconf 2.71 during deveopment, so in a way it's already compatible with the latest version.
* Allow gnunet-qr to read codes from PNG picturesAlessio Vanni2021-11-21
|
* Convert indirect ‘AC_CHECK_FUNCS’ call to direct oneThien-Thi Nguyen2021-11-20
| | | | | | | | Later versions of Autoconf emit a warning about this. * configure.ac (funcstocheck): Convert shell var assignment to ‘AC_CHECK_FUNCS’ call. In later ‘AC_CHECK_FUNCS’ call, remove reference to ‘$funcstocheck’.
* Remove unnecessary double-quotes escapingThien-Thi Nguyen2021-11-20
| | | | | * configure.ac [user setup]: ...here, from "USERNAME". Later versions of Autoconf emit a warning about this.
* Remove m4-quoting from AC_CHECK_FUNCS argThien-Thi Nguyen2021-11-20
| | | | | * configure.ac (AC_CHECK_FUNCS): ...here. Later versions of Autoconf emit a warning about this.
* BUILD: Attempt fix longer file names in make distMartin Schanzenbach2021-10-12
|
* BUILD: Remove --disable-mysql-version-check. #7033Martin Schanzenbach2021-10-11
|
* BUILD: Remove --disable-testing. Issue #7033Martin Schanzenbach2021-10-11
|
* BUILD: Remove EXPENSIVE_TESTS (unused). Issue #7033Martin Schanzenbach2021-10-11
|
* BUILD: Remove SuperMUC code. Issue #7033Martin Schanzenbach2021-10-11
|
* -trim properlyMartin Schanzenbach2021-10-09
|
* -fix trMartin Schanzenbach2021-10-09
|
* BUILD: Add version from git tagsMartin Schanzenbach2021-10-09
|
* -bump version !tarballMartin Schanzenbach2021-08-29
|
* release GNUnet 0.15.3v0.15.3Christian Grothoff2021-08-28
|
* -remove dead ats-tests, fix strange Debian build issuesChristian Grothoff2021-08-24
|
* fixing misc. bugs in the configure scriptv0.15.1Christian Grothoff2021-08-23
|
* -bump versionChristian Grothoff2021-08-23
|
* -update changelog, bump versionMartin Schanzenbach2021-08-02
|
* -fix build macosMartin Schanzenbach2021-07-21
|
* DHTU: skeleton for pluginsChristian Grothoff2021-07-06
|
* -fix misc typosChristian Grothoff2021-04-26
|
* -do not require autotools >=2.71Martin Schanzenbach2021-04-26
|
* -towards #6851: autotools 2.70Martin Schanzenbach2021-04-26
|
* RECLAIM: Added libpabc credential support.dev/schanzen/pabcMartin Schanzenbach2021-04-24
|
* - added check for libsodium 1.0.18t3sserakt2021-04-20
|
* - fixed format for configure.ac git versionrexxnor2021-04-18
|
* - fixed format for configure.ac git versionrexxnor2021-04-18
|
* - fixed configure.ac to show last commit of current branchrexxnor2021-04-18
|
* -bumping versionv0.14.1Martin Schanzenbach2021-04-04
|
* UTIL/SCALARPRODUCT: Do not build ECC dlog or scalarproduct with incompatible ↵Martin Schanzenbach2021-03-30
| | | | libgcrypt versions (>=1.9.0)
* -handbook: no splitMartin Schanzenbach2021-03-03
|
* -another try. properly handle autoconf vs configure for HTMLFLAGSMartin Schanzenbach2021-02-28
|
* use AS_VERSION_COMPARE instead of AX_COMPARE_VERSIONThien-Thi Nguyen2021-01-30
| | | | (since the former is part of Autoconf proper)
* fix #6722: use AX_COMPARE_VERSIONThien-Thi Nguyen2021-01-30
| | | | | Also, the var ‘gl_libunistring_hexversion’ is not documented, so we switch to ‘LIBUNISTRING_VERSION’, which is.
* convert to GMT, not localtime in GNUNET_TIME_year_to_timeChristian Grothoff2021-01-07
|
* -warnings mostly formatMartin Schanzenbach2020-11-13
|
* -remerge branch 'jacki/messenger'TheJackiMonster2020-11-12
| | | | This reverts commit e11d1e59e4ae5f7d89c33df3ae9ca8f1ece990cf.
* postgres: drop use of 'WITH OIDS'Daniel Golle2020-10-05
| | | | | | | | | | | | | | | | | | | | | | PostgreSQL since version 12 no longer supports 'WITH OIDS': Previously, a normally-invisible oid column could be specified during table creation using WITH OIDS; that ability has been removed. Columns can still be explicitly declared as type oid. Operations on tables that have columns created using WITH OIDS will need adjustment. The system catalogs that previously had hidden oid columns now have ordinary oid columns. Hence, SELECT * will now output those columns, whereas previously they would be displayed only if selected explicitly. Drop 'WITH OIDS' as it was stated even on tables for plugins which didn't make any use of the then exposed 'oid' column. In the case of datacache and datastore the 'oid' column is used, so replace the 'WITH OIDS' statement with an explicit 'oid' column having 'OID' type and a corresponding sequence. No measures are taken to still work with PostgreSQL before version 12. Users should update PostgreSQL to version 12 or newer. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* Disable some diagnostic until TNG is availableAlessio Vanni2020-09-25
|