Fixed typos in comments

pull/65/head
Jeffrey Walton 2015-11-25 15:20:37 -05:00
parent f90a940e2e
commit ed6c1de915
2 changed files with 6 additions and 5 deletions

View File

@ -234,8 +234,9 @@ endif # CXXFLAGS
endif # USING_GLIBCXX endif # USING_GLIBCXX
endif # GNU Debug build endif # GNU Debug build
# List cryptlib.cpp first and cpu.o second in an attempt to tame C++ static initialization problems. The issue # List cryptlib.cpp first and cpu.cpp second in an attempt to tame C++ static initialization problems.
# spills into POD data types, so cpu.cpp is the second candidate for explicit initialization order. # The issue spills into POD data types of cpu.cpp due to the storage class of the bools, so cpu.cpp
# is the second candidate for explicit initialization order.
SRCS := cryptlib.cpp cpu.cpp $(filter-out cryptlib.cpp cpu.cpp pch.cpp simple.cpp winpipes.cpp cryptlib_bds.cpp,$(wildcard *.cpp)) SRCS := cryptlib.cpp cpu.cpp $(filter-out cryptlib.cpp cpu.cpp pch.cpp simple.cpp winpipes.cpp cryptlib_bds.cpp,$(wildcard *.cpp))
# No need for CPU or RDRAND on non-X86 systems. X32 is represented with X64. # No need for CPU or RDRAND on non-X86 systems. X32 is represented with X64.
@ -300,7 +301,7 @@ DOCUMENT_DIRECTORY := ref$(LIB_VER)
ifeq ($(wildcard Doxyfile),Doxyfile) ifeq ($(wildcard Doxyfile),Doxyfile)
DOXYGEN_DIRECTORY := $(strip $(shell $(EGREP) "OUTPUT_DIRECTORY" Doxyfile | grep -v "\#" | cut -d "=" -f 2)) DOXYGEN_DIRECTORY := $(strip $(shell $(EGREP) "OUTPUT_DIRECTORY" Doxyfile | grep -v "\#" | cut -d "=" -f 2))
endif endif
# Default directory (missing in config file) # Default directory (in case its missing in the config file)
ifeq ($(strip $(DOXYGEN_DIRECTORY)),) ifeq ($(strip $(DOXYGEN_DIRECTORY)),)
DOXYGEN_DIRECTORY := html-docs DOXYGEN_DIRECTORY := html-docs
endif endif
@ -330,7 +331,7 @@ endif
.PHONY: distclean .PHONY: distclean
distclean: clean distclean: clean
-$(RM) adhoc.cpp adhoc.cpp.copied GNUmakefile.deps benchmarks.html cryptest.txt cryptest-*.txt *.o *.ii *.s -$(RM) adhoc.cpp adhoc.cpp.copied GNUmakefile.deps benchmarks.html cryptest.txt cryptest-*.txt *.o *.ii *.s *~
ifneq ($(wildcard cryptopp$(LIB_VER)\.*),) ifneq ($(wildcard cryptopp$(LIB_VER)\.*),)
-$(RM) cryptopp$(LIB_VER)\.* -$(RM) cryptopp$(LIB_VER)\.*
endif endif

View File

@ -1,4 +1,4 @@
// cryptlib.cpp - written and placed in the public domain by Wei Dai // xtr.cpp - written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"