summary refs log tree commit diff stats
path: root/configure.ac
AgeCommit message (Collapse)Author
2016-04-07Bump glib requirement to 2.34Patrick Griffis
This is still rather old but does drop Ubuntu 12.04 support.
2016-04-03Import lua pluginPatrick Griffis
Written by @mniip
2016-03-31configure: Place auxiliary files in own dirPatrick Griffis
2016-03-12Bump version to 2.12.0Patrick Griffis
2016-03-06build: Keep macros newer than Ubuntu...Patrick Griffis
Mostly for travis
2016-03-06build: Don't store autoconf-archive macros in repoPatrick Griffis
The release tarballs will still have them
2016-03-06build: Use more secure flagsPatrick Griffis
2016-02-18build: Enable more warnings/errorsPatrick Griffis
2015-10-17configure: Default to generating xz-tarballs onlyRico Tzschichholz
2015-09-30configure: Clean up Python checkingPatrick Griffis
This fixes requiring to add a version every time a new release comes out...
2015-04-22configure: Simplify perl testsTingPing
2015-04-22configure: Better handling of missing pkgconfigTingPing
2015-04-22configure: Consistently use autoconf macros for conditionalsTingPing
2015-04-21configure: Target versions of Ubuntu 10.04TingPing
travis-ci uses it still...
2015-04-21configure: Replace --enable-minimial-flags with standard --disable-debugTingPing
2015-04-21configure: Some modernizationTingPing
2015-03-19Fixup 455fa24dTingPing
-Wformat=2 includes format-nonliteral
2015-03-19configure: Remove a warningTingPing
Used everywhere needs to be fixed
2015-03-19configure: Clean up testing warnings and add moreTingPing
2015-03-01configure: Don't depend on gtk-2.0.m4TingPing
It doesn't really add much value and it is possible to build fetext without gtk installed
2015-02-21Unify sysinfo plugins and add osx supportTingPing
This does remove the net* commands from the Unix version that may return at a later date with OSX and Windows support. This commit also makes numerious other changes such as code cleanup, reformatting, etc. Closes #829
2015-02-04Fix automake errorTingPing
2015-02-04Implement OSX notification backendTingPing
2014-12-28Remove option to use socks5 libraryTingPing
This was always disabled by default and is not required for the current socks support. I am not even sure this library is packaged by any distro?
2014-12-28Remove option to disable ipv6TingPing
It has been default for a while, is the only tested option, and will only get more common.
2014-12-28Remove MSProxy supportTingPing
It's not enabled anywhere, certainly not maintained
2014-12-28Fix building as c89TingPing
2014-12-17configure: Set glib min requirement to 2.32TingPing
and warn when using newer APIs
2014-12-15configure: Improve various build flagsTingPing
- Store openssl flags in own vars - Share some common flags for plugins - Fix building plugins on win32 - Store all glib flags in one var - Don't link against every lib for each plugin - Don't hardcode ldflags for sysinfo
2014-12-15checksum: Use glib for io/checksum and misc fixesTingPing
- Fixes support for large files. - Fixes filenames not being passed in the filename encoding. - Drops openssl dependency. - Code cleanup. - Fix 'unknown command' warning.
2014-12-02configure: Add option to run clang static analysisTingPing
2014-10-29configure: Fix checking for perlDan Molik
Closes #1196 Fixes #1197
2014-08-07Bump master to development release 2.11.0TingPing
To anybody confused this is not the next stable release, it is just a way to differentiate master from the 2.10 branch and next stable will be 2.12.0 similar to Gnome's versioning scheme.
2014-08-01osx: Create bundles using homebrewTingPing
Just easier to maintain than jhbuild. See https://github.com/TingPing/homebrew-gnome for deps.
2014-06-27configure: Improve python logichasufell
- add checks for python3.4 - only warn once for failure to find a version - only run pkg-config call if the .pc file was actually found - make unsupported python version non-fatal Closes #1006 Closes #989
2014-06-21Fix autotools warningTingPing
2014-06-21Clean up includes for gettextTingPing
It is always enabled.
2014-06-02Always use GModule for plugin supportTingPing
Also cleans up some dead code
2014-06-01Bump version to 2.10.0TingPing
2014-06-01Remove some hardcoded version numbersTingPing
- man page - makebundle.sh
2014-02-14Build with GTK_DISABLE_DEPRECATEDTingPing
2014-01-30osx: generate plist fileTingPing
2014-01-30More autotools cleanupTingPing
- Don't build msproxy if unused - Add resources to cleanfiles - Remove old extra_dist from plugins
2014-01-28configure: Don't error when python not foundTingPing
2014-01-16configiure: Fix testing compiler flags on anything other than gccTingPing
2014-01-16configure: add missing result messageTingPing
2014-01-16configure: Don't build python or perl plugin when plugins are disabledTingPing
2014-01-15Check for gio during configureTingPing
2014-01-14Build with gtk-mac-integrationTingPing
- Use HexChat logo for dock icon - Use appmenu (not finished)
2014-01-13configure.ac: Actually check the CFLAGS and LDFLAGS returned by ↵Arnavion
ExtUtils::Embed before deciding to compile the Perl plugin. - openSUSE has ExtUtils::Embed, EXTERN.h and perl.so in the base perl package. - Fedora has ExtUtils::Embed in a separate perl-devel package. - Mageia has ExtUtils::Embed in the base perl package but EXTERN.h in a separate perl-devel package. Without this package, the compiler complains about the missing header. - Debian has ExtUtils::Embed and EXTERN.h in the base perl package but perl.so in a separate libperl-dev package. Without this package, gcc compiles successfully but complains at link-time about -lperl (ExtUtils::Embed returns '-lperl' in ldopts but it's not actually installed). configure.ac already requires ExtUtil::Embed to enable perl. To handle the case of Mageia and Debian, this change uses AC_TRY_LINK to verify that the flags returned by ExtUtils::Embed can actually be used to compile before deciding to enable the perl plugin.