From: Jim Jagielski Date: Fri, 1 Mar 2013 15:29:30 +0000 (+0000) Subject: Move skiplist to core X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7864e655e17d297a7b875ebf41d8b3085879f178;p=thirdparty%2Fapache%2Fhttpd.git Move skiplist to core git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1451618 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/eventopt/skiplist.h b/include/ap_skiplist.h similarity index 100% rename from server/mpm/eventopt/skiplist.h rename to include/ap_skiplist.h diff --git a/server/Makefile.in b/server/Makefile.in index c2a36fd9ad2..5ff3ee7c794 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -18,7 +18,7 @@ LTLIBRARY_SOURCES = \ apreq_cookie.c apreq_error.c apreq_module.c \ apreq_module_cgi.c apreq_module_custom.c apreq_param.c \ apreq_parser.c apreq_parser_header.c apreq_parser_multipart.c \ - apreq_parser_urlencoded.c apreq_util.c + apreq_parser_urlencoded.c apreq_util.c skiplist.c LTLIBRARY_DEPENDENCIES = test_char.h diff --git a/server/mpm/eventopt/skiplist.c b/server/skiplist.c similarity index 100% rename from server/mpm/eventopt/skiplist.c rename to server/skiplist.c