* camel-url.c (camel_url_new_with_base): New URL parser with full RFC1808 relative URL support. Yum. (camel_url_new): Wrapper around camel_url_new_with_base now. Removed the CamelException since no one ever used it... * tests/Makefile.am: add misc subdir * tests/misc/url.c: relative URL test cases from RFC 1808 * camel-session.c (camel_session_get_service): Update camel_url_new call. svn path=/trunk/; revision=8933
22 lines
456 B
Makefile
22 lines
456 B
Makefile
|
|
INCLUDES = -I$(top_srcdir)/intl -I$(top_srcdir) -I$(top_srcdir)/camel \
|
|
-I$(includedir) \
|
|
-I$(top_srcdir)/camel/tests/lib \
|
|
-DG_LOG_DOMAIN=\"evolution-tests\"
|
|
|
|
LDADD = \
|
|
$(top_builddir)/camel/libcamel.la \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(top_builddir)/libibex/libibex.la \
|
|
$(GNOME_LIBDIR) \
|
|
$(top_builddir)/camel/tests/lib/libcameltest.a \
|
|
$(GNOMEUI_LIBS) $(INTLLIBS) $(EXTRA_GNOME_LIBS)
|
|
|
|
check_PROGRAMS = \
|
|
url
|
|
|
|
TESTS = url
|
|
|
|
|
|
|