mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
b09f58838f
Modified TProtocol.h et al to take collection size as unsigned int. This removes need to cast STL's default size_t to signed int and is more correct, since collection sizes cannot be < 0 by definition Moved compiler/Makefile to compiler/cpp.mk so it doesn't get trashed by automake git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664766 13f79535-47bb-0310-9956-ffa450edef68
37 lines
424 B
Bash
Executable File
37 lines
424 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf \
|
|
AUTHORS \
|
|
COPYING \
|
|
ChangeLog \
|
|
INSTALL \
|
|
Makefile \
|
|
Makefile.in \
|
|
Makefile.orig \
|
|
NEWS \
|
|
README \
|
|
aclocal.m4 \
|
|
autom4te.cache \
|
|
autoscan.log \
|
|
config.guess \
|
|
config.h \
|
|
config.hin \
|
|
config.log \
|
|
config.status \
|
|
config.sub \
|
|
configure \
|
|
configure.scan \
|
|
depcomp \
|
|
.deps \
|
|
install-sh \
|
|
.libs \
|
|
libtool \
|
|
ltmain.sh \
|
|
Makefile.in \
|
|
missing
|
|
|
|
aclocal
|
|
touch NEWS README AUTHORS ChangeLog
|
|
autoconf
|
|
automake -ac
|