Bug 579517 - Part 6: Automated conversion of NSPR numeric types to stdint types in Gecko; r=mconley
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*/mozilla*" \
! -wholename "*ldap/sdks/c-sdk*" \
! -wholename "*/.hg*" \
! -wholename "obj-tb-dbg*" \
! -wholename "obj-sm-dbg*" \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
DEPTH = @DEPTH@
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
ifndef .PYMAKE
ifeq (,$(MAKE_VERSION))
$(error GNU Make is required)
endif
ifeq (,$(filter-out 3.78 3.79,$(MAKE_VERSION)))
$(error GNU Make 3.80 or higher is required)
endif
endif
include $(DEPTH)/config/autoconf.mk
default::
ifdef COMPILE_ENVIRONMENT
include $(topsrcdir)/$(MOZ_BUILD_APP)/build.mk
endif
include $(topsrcdir)/config/config.mk
default alldep all:: $(topsrcdir)/configure config.status
$(topsrcdir)/configure: $(topsrcdir)/configure.in
@echo "STOP! configure.in has changed, and your configure is out of date."
@echo "Please rerun autoconf and configure."
@echo "To ignore this message, touch 'configure' in the source directory."
@exit 1
config.status: $(topsrcdir)/configure
@echo "STOP! configure has changed and needs to be run in this build directory."
@echo "Please rerun configure."
@echo "To ignore this message, touch 'config.status' in the build directory."
@exit 1
default export libs clean realclean distclean alldep \
maybe_clobber_profiledbuild uploadsymbols all:: $(SUBMAKEFILES)
$(MAKE) -C mozilla $@
ifdef ENABLE_TESTS
check mochitest reftest crashtest xpcshell-tests:: $(SUBMAKEFILES)
$(MAKE) -C mozilla $@
mochitest-% :: $(SUBMAKEFILES)
$(MAKE) -C mozilla $@
check-sync-dirs::
@$(PYTHON) $(topsrcdir)/mozilla/js/src/config/check-sync-dirs.py \
$(topsrcdir)/build $(topsrcdir)/mozilla/build
check:: check-sync-dirs
ifndef MOZ_THUNDERBIRD
package-tests:: $(SUBMAKEFILES)
$(MAKE) -C mozilla $@
endif
endif
# http://bugzilla.mozilla.org/show_bug.cgi?id=450485
MAKE_SYM_STORE_PATH=dist/bin
ifeq ($(OS_ARCH),Darwin)
ifdef UNIVERSAL_BINARY
MAKE_SYM_STORE_PATH=dist/universal
endif
endif
include $(topsrcdir)/mozilla/toolkit/mozapps/installer/package-name.mk
ifeq ($(OS_ARCH),WINNT)
# PDB files don't get moved to dist, so we need to scan the whole objdir
MAKE_SYM_STORE_PATH=..
endif
buildsymbols :: $(SUBMAKEFILES)
$(MAKE) -C mozilla MAKE_SYM_STORE_PATH=$(MAKE_SYM_STORE_PATH) SYM_STORE_SOURCE_DIRS="$(topsrcdir)/mozilla/extensions/inspector $(topsrcdir)/ldap/sdks $(topsrcdir)/mozilla $(topsrcdir)" $@
include $(topsrcdir)/config/rules.mk
# defined in (mozilla/.../)package-name.mk
export MOZ_SOURCE_STAMP
DIST_GARBAGE = config.cache config.log config.status config-defs.h \
dependencies.beos config/autoconf.mk \
unallmakefiles comm-config.h \
$(topsrcdir)/.mozconfig.mk $(topsrcdir)/.mozconfig.out
distclean::
cat unallmakefiles | $(XARGS) rm -f
rm -f $(DIST_GARBAGE)