View | Details | Raw Unified
Collapse All | Expand All

(-) gnome-vfs-2.14.2/imported/neon/Makefile.am (-2 / +3 lines)
 Lines 53-60   NEON_BASE_SOURCES = ne_request.c ne_sess Link Here 
	ne_uri.c ne_dates.c ne_alloc.c  	\
	ne_uri.c ne_dates.c ne_alloc.c  	\
	ne_md5.c ne_utils.c    			\
	ne_md5.c ne_utils.c    			\
	ne_auth.c 				\
	ne_auth.c 				\
	ne_redirect.c		\
	ne_redirect.c				\
	ne_compress.c
	ne_compress.c				\
	ne_stubs.c
NEON_DAV_SOURCES = \
NEON_DAV_SOURCES = \
	ne_207.c ne_xml.c \
	ne_207.c ne_xml.c \
(-) gnome-vfs-2.14.2/imported/neon/ne_stubs.c (+28 lines)
Line 0    Link Here 
#include "ne_ssl.h"
#include "ne_request.h"
#include "ne_xml.h"
/*
 * Stubs so that the functions are not marked as UND in the global symbol
 * table.  Assuming that nothing that calls them are actually used in
 * gnome-vfs, they are bare.
 */
void ne_ssl_context_trustcert(ne_ssl_context *ctx, const ne_ssl_certificate *cert)
{
  NE_DEBUG(NE_DBG_SSL, "SSL: stub ne_ssl_context_trustcert() in use\n");
  return;
}
int ne_xml_parse_response(ne_request *req, ne_xml_parser *parser)
{
  NE_DEBUG(NE_DBG_XMLPARSE, "XML: stub ne_xml_parse_response() in use\n");
  return 0;
}
int ne_xml_dispatch_request(ne_request *req, ne_xml_parser *parser)
{
  NE_DEBUG(NE_DBG_XML, "XML: stub ne_xml_dispatch_request() in use\n");
  return 0;
}
(-) gnome-vfs-2.14.2/modules/libhttp.map (+6 lines)
Line 0    Link Here 
{
  local:
    # Neon symbols should not be global
    ne_*;
};
(-) gnome-vfs-2.14.2/modules/Makefile.am (-1 / +6 lines)
 Lines 44-50   EXTRA_DIST = \ Link Here 
	inotify-path.h				\
	inotify-path.h				\
	inotify-path.c				\
	inotify-path.c				\
	local_inotify.h				\
	local_inotify.h				\
	local_inotify_syscalls.h
	local_inotify_syscalls.h		\
	libhttp.map
###  Module setup
###  Module setup
if HAVE_CDDA
if HAVE_CDDA
 Lines 230-235   libhttp_la_SOURCES = \ Link Here 
	$(NULL)
	$(NULL)
libhttp_la_LDFLAGS = $(module_flags)
libhttp_la_LDFLAGS = $(module_flags)
if USE_HTTP_NEON
libhttp_la_LDFLAGS +=			\
        -Wl,--version-script,$(srcdir)/libhttp.map
endif
libhttp_la_LIBADD  = $(HTTP_LIBS)
libhttp_la_LIBADD  = $(HTTP_LIBS)
libtar_la_SOURCES = tar-method.c tarpet.h 
libtar_la_SOURCES = tar-method.c tarpet.h