Skip to content

Commit 3b4a93b

Browse files
committed
THRIFT-3664 Remove md5.c
Client: Compiler Patch: Nobuaki Sukegawa This closes apache#891
1 parent 3e5b9c2 commit 3b4a93b

File tree

7 files changed

+0
-506
lines changed

7 files changed

+0
-506
lines changed

LICENSE

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -225,32 +225,6 @@ For the aclocal/ax_boost_base.m4 and contrib/fb303/aclocal/ax_boost_base.m4 comp
225225
# modification, are permitted in any medium without royalty provided
226226
# the copyright notice and this notice are preserved.
227227

228-
--------------------------------------------------
229-
For the compiler/cpp/src/thrift/md5.[ch] components:
230-
231-
/*
232-
Copyright (C) 1999, 2000, 2002 Aladdin Enterprises. All rights reserved.
233-
234-
This software is provided 'as-is', without any express or implied
235-
warranty. In no event will the authors be held liable for any damages
236-
arising from the use of this software.
237-
238-
Permission is granted to anyone to use this software for any purpose,
239-
including commercial applications, and to alter it and redistribute it
240-
freely, subject to the following restrictions:
241-
242-
1. The origin of this software must not be misrepresented; you must not
243-
claim that you wrote the original software. If you use this software
244-
in a product, an acknowledgment in the product documentation would be
245-
appreciated but is not required.
246-
2. Altered source versions must be plainly marked as such, and must not be
247-
misrepresented as being the original software.
248-
3. This notice may not be removed or altered from any source distribution.
249-
250-
L. Peter Deutsch
251-
ghost@aladdin.com
252-
253-
*/
254228
--------------------------------------------------
255229
For the lib/nodejs/lib/thrift/json_parse.js:
256230

compiler/cpp/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,11 @@ add_library(libparse STATIC ${libparse_SOURCES})
4949
# Create the thrift compiler
5050
set( thrift_SOURCES
5151
src/main.cc
52-
src/md5.c
5352
src/generate/t_generator.cc
5453
src/generate/t_generator_registry.h
5554
src/globals.h
5655
src/main.h
5756
src/platform.h
58-
src/md5.h
5957
src/audit/t_audit.cpp
6058
src/parse/t_doc.h
6159
src/parse/t_type.h

compiler/cpp/Makefile.am

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ noinst_LIBRARIES = libparse.a
3232
thrift_OBJDIR = obj
3333

3434
thrift_SOURCES = src/main.cc \
35-
src/md5.c \
3635
src/generate/t_generator.cc \
3736
src/generate/t_generator_registry.h \
3837
src/globals.h \
3938
src/main.h \
4039
src/platform.h \
4140
src/logging.h \
42-
src/md5.h \
4341
src/audit/t_audit.cpp \
4442
src/audit/t_audit.h \
4543
src/parse/t_doc.h \

compiler/cpp/src/main.cc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1013,9 +1013,6 @@ void generate(t_program* program, const vector<string>& generator_strings) {
10131013
try {
10141014
pverbose("Program: %s\n", program->get_path().c_str());
10151015

1016-
// Compute fingerprints. - not anymore, we do it on the fly now
1017-
// generate_all_fingerprints(program);
1018-
10191016
if (dump_docs) {
10201017
dump_docstrings(program);
10211018
}

0 commit comments

Comments
 (0)