summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2013-04-26fixed typo enable_sqllite -> enable_sqliteAnas Nashif1-1/+1
2013-04-26fixed typoAnas Nashif1-1/+1
2013-04-26fixed sqlite optionAnas Nashif1-4/+4
2013-04-26disable gtkdocAnas Nashif1-1/+1
2013-04-26adapt configure scriptAnas Nashif1-0/+24
2013-04-242.42.2upstream/2.42.2LIBSOUP_2_42_22.42.2Dan Winship1-1/+1
2013-04-162.42.1LIBSOUP_2_42_12.42.1Dan Winship1-1/+1
2013-04-10tests: fix ntlm-test when built without ntlm_auth supportDan Winship1-0/+2
Don't try to use external NTLM auth if built without support for that. https://bugzilla.gnome.org/show_bug.cgi?id=697510
2013-04-08configure: require glib 2.36 (not just 2.35.x)Dan Winship1-1/+1
2013-03-252.42.0upstream/2.42.0LIBSOUP_2_42_02.42.0Dan Winship1-4/+4
2013-03-182.41.92upstream/2.41.92LIBSOUP_2_41_922.41.92Dan Winship1-1/+1
2013-03-052.41.91upstream/2.41.91LIBSOUP_2_41_912.41.91Dan Winship1-1/+1
2013-03-05build: Remove gio resource compiler definition from configure.acCarlos Garcia Campos1-6/+0
The variable GLIB_COMPILE_RESOURCES is already set by AM_PATH_GLIB_2_0 macro. Spotted by Csaba Osztrogonác. https://bugzilla.gnome.org/show_bug.cgi?id=694942
2013-02-23examples: move examples from tests/ to examples/Dan Winship1-0/+1
get, simple-httpd, and simple-proxy are more example code than test programs, so move them into a separate directory. Also, remove "dns", which was once a sort-of test of SoupAddress, but is now just a redundant sort-of test of GResolver.
2013-02-23build: remove some cruftDan Winship1-11/+7
Remove accumulated cruft, mostly from things we used to depend on but don't any more. Also a few minor drive-by configure cleanups
2013-02-19tests: do skipped tests properlyDan Winship1-8/+6
automake interprets exit code 77 as meaning "skipped", so have the various apache-dependent, php-dependent, and curl-dependent tests do that, and compile them unconditionally. (Although, to avoid "unused" warnings, we end up #ifdeffing out the whole file.)
2013-02-19tests: [CENSORED] [CENSORED] automake [CENSORED]Dan Winship1-1/+1
Specifying serial-tests in AM_INIT_AUTOMAKE breaks the build with automake 1.11, so the only way to support both 1.11 and 1.13 is to make the tests work under the parallel harness. Fortunately this wasn't that hard.
2013-02-19tests: fix under automake 1.13Dan Winship1-1/+1
The parallel test harness (which is the default as of automake 1.13) doesn't let you use make functions in the definition of TESTS. (It generates an invalid Makefile in this case.) Since the tests as currently written won't work with the parallel harness anyway (since each apache-based test stops apache when it's done), just force the serial harness for now. https://bugzilla.gnome.org/show_bug.cgi?id=694135
2013-02-182.41.90upstream/2.41.90LIBSOUP_2_41_902.41.90Dan Winship1-1/+1
2013-02-07tests: fix non-php apache tests to still work without phpDan Winship1-1/+1
Setting "IF_HAVE_PHP" to "#" actually sets it to "", because the "#" is treated as the start of a comment. We have to set it to "\#" if we want to cause the "#" to actually get substituted into httpd.conf https://bugzilla.gnome.org/show_bug.cgi?id=693311
2013-02-052.41.5upstream/2.41.5LIBSOUP_2_41_52.41.5Dan Winship1-1/+1
2013-01-142.41.4LIBSOUP_2_41_42.41.4Dan Winship1-1/+1
2013-01-08build: Do not use AM_GLIB_GNU_GETTEXTJavier1-1/+0
The po/Makefile.in.inis generated by intltoolize
2012-12-172.41.3LIBSOUP_2_41_32.41.3Dan Winship1-1/+1
2012-12-11Add SoupCookieJarDB to replace SoupCookieJarSqliteDan Winship1-10/+4
Move SoupCookieJarSqlite (and its sqlite3 dependency) into libsoup from libsoup-gnome, but rename it to SoupCookieJarDB so libsoup-gnome can keep using the old name. SoupCookieJarSqlite is now just a wrapper around SoupCookieJarDB.
2012-12-11SoupPasswordManager: killDan Winship1-10/+0
Deprecate and remove support for SoupPasswordManager; SoupPasswordManagerGNOME is now a dummy class, and the related SoupAuth methods are all no-ops. SoupSession also no longer has any special support for SoupPasswordManager. To avoid breaking old builds, the functions/types are still around, but are now marked as having always been deprecated (which, really, they were). https://bugzilla.gnome.org/show_bug.cgi?id=594377 https://bugzilla.gnome.org/show_bug.cgi?id=679866
2012-12-04tests/simple-httpd: use GMappedFile rather than mmapDan Winship1-1/+0
(fixing a fd leak in the process)
2012-11-192.41.2upstream/2.41.2LIBSOUP_2_41_22.41.2Dan Winship1-1/+1
2012-11-10configure.ac: add some missing quotesDan Winship1-3/+3
to fix error messages when apache wasn't installed
2012-10-222.41.1LIBSOUP_2_41_12.41.1Dan Winship1-1/+1
2012-10-22tests: add support for Apache 2.4Dan Winship1-7/+18
2012-10-22port to GTaskDan Winship1-2/+2
2012-10-22Add API to get version informationMartin Robinson1-1/+13
Expose API to get information about the soup version. This is useful because it allows applications to use API without actually depending on it completely. https://bugzilla.gnome.org/show_bug.cgi?id=684514
2012-10-20soup-request: Add support to handle gresource URI requestsCarlos Garcia Campos1-0/+3
GFile already supports gresource when using g_file_new_for_uri() with a resource:// URI. We can add "resource" as a valid scheme for SoupRequestFile and make sure the GFile is created with the gresource URI for gresource requests. https://bugzilla.gnome.org/show_bug.cgi?id=682721
2012-10-16Post-branch release bumpDan Winship1-1/+1
2012-10-162.40.1upstream/2.40.1LIBSOUP_2_40_12.40.1Dan Winship1-1/+1
2012-09-242.40.0LIBSOUP_2_40_02.40.0Dan Winship1-1/+1
2012-09-172.39.92LIBSOUP_2_39_92Dan Winship1-1/+1
2012-09-042.39.91LIBSOUP_2_39_91Dan Winship1-1/+1
2012-08-202.39.90LIBSOUP_2_39_90Dan Winship1-1/+1
2012-08-07post-release version bumpXan Lopez1-1/+1
2012-08-062.39.5LIBSOUP_2_39_5Dan Winship1-1/+1
2012-07-172.39.4.1LIBSOUP_2_39_4_1Dan Winship1-1/+1
2012-07-162.39.4LIBSOUP_2_39_4Dan Winship1-1/+1
2012-06-262.39.3LIBSOUP_2_39_3Dan Winship1-1/+1
2012-06-12Bump version to 2.39.2LIBSOUP_2_39_2Christophe Dumez1-1/+1
2012-05-012.39.1LIBSOUP_2_39_1Dan Winship1-1/+1
2012-04-28Reorganize proxy resolution, and support SOCKS and other proxy typesDan Winship1-2/+1
Push the proxy resolution code from SoupSession down into SoupConnection and SoupSocket. If using a SoupProxyResolverDefault, just enable proxy support on the GSocketClient instead (after adding "http" as an application protocol). This way we get support for SOCKS proxies (and any other proxies supported by GProxy types). https://bugzilla.gnome.org/show_bug.cgi?id=553269
2012-04-18belated version bump to 2.39.0Dan Winship1-1/+1
2012-04-17Add SoupFilterInputStreamDan Winship1-2/+3
SoupFilterInputStream is basically a subset of GDataInputStream, plus non-blocking read_line()/read_until(). Wrap the existing socket istream member with a SoupFilterInputStream, and use its buffering rather than doing the buffering in SoupSocket.