about summary refs log tree commit diff stats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
...
* Release 0.8.0Michael Vetter2020-02-031-2/+2
|
* Check for fmod() functionMichael Vetter2019-12-121-0/+3
| | | | | | | | Instead of adding `profanity_LDADD = -lm` to Makefile.am or using `AC_CHECK_LIB()` in configurea.c I use `AC_SEARCH_LIBS()` in case the fmod() function is in the libc. See https://autotools.io/autoconf/finding.html
* Adjust tray configure switch to also include clipboardMichael Vetter2019-10-291-5/+5
| | | | General GTK.
* Include PYTHON_EXTRA_LIBS in libtool configMarko Zagožen2019-10-011-1/+1
| | | | Fixes compilation when using custom Python installed with pyenv.
* Set version to 0.7.1Michael Vetter2019-09-241-1/+1
|
* Set configure to develMichael Vetter2019-07-311-1/+1
|
* Release 0.7.0Michael Vetter2019-07-311-2/+2
|
* Update profanity repo URLMichael Vetter2019-05-031-1/+1
| | | | Move from github.com/boothj5/* to github.com/profanity-im/*
* Add libgcrypt minimum version in configure error logPaul Fariello2019-04-131-2/+2
|
* Look for gcry_md_extract (libgcrypt >= 1.7.0)Paul Fariello2019-04-131-1/+1
|
* Revert "Set C99 standard in configure"Michael Vetter2019-04-121-1/+1
| | | | This reverts commit 7be6158c80af09daf58e9b873263d9e98e36aff9.
* Set C99 standard in configureMichael Vetter2019-04-121-1/+1
| | | | | | | | We already use uint_32 from stdint.h which AFAIK is C99. I seem to remember there is more C99 in the code. Let's explicitly define it here. Also fixes build for https://github.com/boothj5/profanity/pull/1053
* OMEMO should be written uppercasePaul Fariello2019-04-101-5/+5
|
* Don't build OMEMO by defaultPaul Fariello2019-04-101-1/+2
|
* Add support for libsignal-protocol-c 2.3.2Paul Fariello2019-04-101-14/+18
|
* Get rid of libsodiumPaul Fariello2019-04-101-8/+0
|
* Add OMEMO message encryption and decryptionPaul Fariello2019-04-101-0/+8
|
* Move OMEMO initialization to profanity intializationPaul Fariello2019-04-101-2/+2
| | | | Also store identity keys into account
* Add crypto backend for signal-protocolPaul Fariello2019-04-081-0/+8
|
* Link against libsignal-protocol-cPaul Fariello2019-04-081-0/+13
|
* Set status to developmentMichael Vetter2019-02-181-1/+1
|
* Release 0.6.0 RC1Michael Vetter2019-01-221-1/+1
|
* autotools: use pkgconfig for libotrDmitry Podgorny2018-11-011-13/+11
|
* Merge pull request #1011 from jubalh/sha1Michael Vetter2018-09-191-3/+3
|\ | | | | Get rid of p_sha1 dependency
| * Require libmesode/libstrophe >= 0.9.2Michael Vetter2018-09-131-3/+3
| | | | | | | | The sha1 function `xmpp_sha1_digest()` from libmesode/libstrophe, that we now use instead of `p_sha1_hash() which depended on another third party sha1 lib is only avilable in version >= 0.9.2.
* | configure.ac: add proper check for gio-2.0Dmitry Podgorny2018-09-061-3/+7
|/ | | | | | | | PR #999 adds call of g_object_unref() which requires libgobject-2.0. The library is dependency of gio-2.0 and the problem is that current configure.ac simply adds -lgio-2.0 without dependencies. As fix, use pkg-config module.
* autoconf adjustments for OpenBSDRafael Sadowski2018-08-131-3/+12
| | | | | | | | | | | In OpenBSD we have two readline libs. On the one hand we have an old version in the base OS and on the other hand we have an new one in the ports tree. profanity needs the new one and should pick up the right one. readline from ports tree is prefixed as ereadline. Note: Original patch by Rafael Sadowski. Cleaned up by jubalh with heavy help of pasis.
* Update Glib dependency to 2.40James Booth2017-03-251-2/+2
|
* Update version to 0.6.0 developmentJames Booth2016-09-221-1/+1
|
* Set to development version 0.5.1James Booth2016-09-161-2/+2
|
* Release 0.5.0James Booth2016-09-151-1/+1
|
* configure.ac: remove outdated xml parser infoDmitry Podgorny2016-09-081-1/+0
|
* Disable C plugins on CygwinJames Booth2016-09-081-11/+15
|
* Fail configure when no pthread supportJames Booth2016-09-051-1/+1
|
* Include python plugins by default in buildJames Booth2016-07-241-6/+1
|
* Fix prof module init for python3James Booth2016-07-181-1/+0
|
* Added PYTHON3 defineJames Booth2016-07-141-0/+1
|
* Fix libcurl check in configure.ac for OS XDmytro Podgornyi2016-05-211-4/+2
| | | | | | | | OS X contains libcurl without a pkg-config file and ./configure reports error. Add AC_CHECK_LIB in order to find libcurl properly. Also remove manual adding -lncurses and -lcurl to LIBS, because AC_CHECK_LIB does this job.
* Only set CC to PTHREAD_CC when value presentJames Booth2016-04-271-1/+1
|
* Allow --disable-iconsJames Booth2016-04-271-7/+7
|
* Fix OSX compileJames Booth2016-04-261-0/+2
|
* Fixed cygwin compileJames Booth2016-04-261-3/+1
|
* Removed only add -lgio-2.0 manually on OSXJames Booth2016-04-261-0/+2
|
* Implement XEP-0363: HTTP File UploadDominik Heidler2016-04-261-0/+6
|
* Merge remote-tracking branch 'Dav1d23/master'James Booth2016-04-111-3/+16
|\ | | | | | | | | | | Conflicts: Makefile.am install-all.sh
| * libgtk is now optionalDavid2016-03-301-2/+7
| | | | | | | | Having the lib is no more needed.
| * Merge branch 'tray_icon' into HEADDavid2016-03-121-3/+11
| |\ | | | | | | | | | | | | | | | Let's thanks Aline <linuxine@gmail.com> for the icons. Enjoy!
| | * Use a folder to add iconsDavid2016-03-071-1/+5
| | | | | | | | | | | | | | | NOTE: it is not working in this release, I have to get how to retrieve icons from folder.
| | * Introduce Tray Icon for ProfanityDavid2016-03-061-2/+6
| | | | | | | | | | | | | | | Add tray icon for profanity based on Gtk StatusIcon. Different icon is displayed in case the user has unread messages.
* | | Added comment for AX_PREFIX_CONFIG_HJames Booth2016-03-311-0/+1
| | |