summary refs log tree commit diff stats
path: root/configure.ac
AgeCommit message (Collapse)Author
2013-10-10Fix configure output when python disabledTingPing
2013-10-03More improvements to libsexyTingPing
- Add option for showing attributes in input - Improve attribute parsing - Fix detecting iso-codes on unix - Improve getting default langs from $LANG - Fix warnings
2013-10-03Update to gtkspell3's iso code lookupTingPing
This no longer requires libxml so now there is no reason for this to be optional
2013-10-03Remove gtkspell supportTingPing
2013-09-29Reorganize files and migrate images to gresourceTingPing
2013-09-27Replace xtext's transparency with full window transparencyTingPing
Xtext's transparency barely worked on windows, didn't work on any modern linux wm and used fake transparency. This uses gtk's built in window opacity that works on more systems and is real transparency. Text area only transparency may return with a transition to cairo, if it works on Windows.
2013-09-26Remove XFT, SHM, and MMXTingPing
2013-09-26Remove whats left of gconfTingPing
2013-09-11Bump Version to 2.9.6TingPing
2013-08-28BUILD: use thememan.in instead of Makefile echohasufell
2013-08-28BUILD: add --with-theme-manager configure optionhasufell
2013-08-27BUILD: use a blacklist rather than a whitelist for python versionshasufell
2013-08-27STYLE: tabs, not whitespaceshasufell
2013-08-27BUILD: consistently use PKG_CONFIGhasufell
2013-08-26STYLE: add missing commahasufell
2013-08-26BUILD: use pkg-config to detect pythonhasufell
2013-08-02Merge pull request #677 from hasufell/masterTingPing
CONFIGURE: add "--enable-minimal-flags"
2013-07-26Use system's libsexy by defaultTingPing
It will still fallback to static
2013-07-12MAKE: backwards compat for old libtoolhasufell
2013-07-11CONFIGURE: add "--enable-minimal-flags"hasufell
This will turn off automagic adding of flags that might be unwanted such as "-g" or "-pipe".
2013-06-15Fix building with static spellTingPing
2013-06-15Add configure patch from gentooTingPing
2013-06-01configure.ac: Use pkg-config's CFLAGS for libxml2 instead of guessing our own.Arnav Singh
2013-05-12Reduce GLib requirementBerke Viktor
2013-05-12g_slist_copy_deep() requires GLib 2.34Berke Viktor
2013-05-11Fix connect commandsBerke Viktor
2013-05-11GtkComboBoxText requires GTK+ 2.24, dump code for older versionsBerke Viktor
2013-05-08stop using gconfTingPing
2013-05-09CONFIGURE: fix undefined reference to `g_type_init'hasufell
These two assignments have no place here and will overwrite the previous COMMON_LIBS="$COMMON_LIBS -lgmodule-2.0 -lgobject-2.0". This can lead to build failure during linking stage depending on the chosen configure options.
2013-05-03Add python3 pluginTingPing
2013-04-28Install a pkgconfig .pc file. This allows external plugins to findChristoph J. Thompson
where the header file is located, where Hexchat expects to find plugins so it can load them at startup and which version of Hexchat is installed. The path where pkgconfig files are stored is determined by a macro available in newer versions of pkgconfig which can be overridden by the --with-pkgconfig= configure switch. However, if this macro is unavailable (older versions of pkgconfig) then m4ifdef will make it fallback to simply use ${libdir}/pkgconfig (which is the default). modified: configure.ac modified: share/Makefile.am new file: share/pkgconfig/Makefile.am new file: share/pkgconfig/hexchat-plugin.pc.in
2013-04-28Don't hardcode "plugins" as the subdirectory for plugins in manyChristoph J. Thompson
places. modified: config-win32.h modified: configure.ac modified: plugins/checksum/Makefile.am modified: plugins/doat/Makefile.am modified: plugins/fishlim/Makefile.am modified: plugins/perl/Makefile.am modified: plugins/python/Makefile.am modified: plugins/sysinfo/Makefile.am modified: plugins/xdcc/Makefile.am modified: src/common/plugin.c modified: src/fe-text/fe-text.c
2013-04-27Use regular canberra not gtkTingPing
2013-04-27Escape all the thingsTingPing
2013-04-27use libcanberra for beepsTingPing
2013-04-27Get rid of bundled beepBerke Viktor
2013-04-22Fix Ubuntu build warnings by using gcc flag -Wno-unused-resultRichardHitt
2013-04-17g_file requires gioTingPing
2013-04-17Install sound file on unixTingPing
for #542
2013-04-14G_FILE_COPY_TARGET_DEFAULT_PERMS requires GLib 2.20+Berke Viktor
2013-04-13Nuke last Tcl and SASL remnantsBerke Viktor
2013-04-02Enable cast checksBerke Viktor
2013-04-02Merge pull request #496 from bviktor/toplevel-includesTingPing
Only include top level includes from GTK+, GLib and GDK-PixBuf Closes #486
2013-04-02Set up CFLAGS on Unix tooBerke Viktor
2013-04-03gtk_show_uri() requires GTK+ 2.14Berke Viktor
2013-04-02Fix textfe with dbus disabledTingPing
2013-04-02Version bumpBerke Viktor
2013-04-01Fix detecting python3TingPing
2013-04-01add missing fiTingPing
2013-03-31CONFIGURE: allow to pass specific python versionhasufell
This is useful if distros support installing multiple python versions in parallel such as: 2.5, 2.6, 2.7. For python3.* we will get syntax error during the imports, so the checks will successfully disable it. It defaults to python2.