2016-07-08 20:11:43 +08:00
|
|
|
# Ignore editor artefacts
|
2015-09-01 03:45:56 +08:00
|
|
|
/.dir-locals.el
|
2013-01-19 20:20:21 +08:00
|
|
|
|
2013-01-07 00:47:36 +08:00
|
|
|
# Top level excludes
|
2019-10-20 01:35:16 +08:00
|
|
|
/Makefile
|
2013-02-27 05:50:40 +08:00
|
|
|
/MINFO
|
2015-03-17 05:36:19 +08:00
|
|
|
/TABLE
|
2013-01-07 00:47:36 +08:00
|
|
|
/*.pc
|
|
|
|
/rehash.time
|
2013-06-13 22:39:23 +08:00
|
|
|
/inc.*
|
|
|
|
/makefile.*
|
|
|
|
/out.*
|
|
|
|
/tmp.*
|
Refactor file writing - introduce template driven file writing
apps/CA.pl and tools/c_rehash are built from template files. So far,
this was done by Configure, which created its own problems as it
forced everyone to reconfigure just because one of the template files
had changed.
Instead, have those files created as part of the normal build in apps/
and in tools/.
Furthermore, this prepares for a future where Configure may produce
entirely other build files than Makefile, and the latter can't be
guaranteed to be the holder of all information for other scripts.
Instead, configdata.pm (described below) becomes the center of
configuration information.
This introduces a few new things:
%config a hash table to hold all kinds of configuration data
that can be used by any other script.
configdata.pm a perl module that Configure writes. It currently
holds the hash tables %config and %target.
util/dofile.pl a script that takes a template on STDIN and outputs
the result after applying configuration data on it.
It's supposed to be called like this:
perl -I$(TOP) -Mconfigdata < template > result
or
perl -I$(TOP) -Mconfigdata templ1 templ2 ... > result
Note: util/dofile.pl requires Text::Template.
As part of this changed, remove a number of variables that are really
just copies of entries in %target, and use %target directly. The
exceptions are $target{cflags} and $target{lflags}, they do get copied
to $cflags and $lflags. The reason for this is that those variable
potentially go through a lot of changes and would rather deserve a
place in %config. That, however, is for another commit.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
2015-05-19 04:35:23 +08:00
|
|
|
/configdata.pm
|
2013-01-07 00:47:36 +08:00
|
|
|
|
|
|
|
# Links under apps
|
2013-01-07 03:06:40 +08:00
|
|
|
/apps/CA.pl
|
2016-04-06 22:04:55 +08:00
|
|
|
/apps/tsget
|
2016-06-08 20:08:53 +08:00
|
|
|
/apps/tsget.pl
|
2013-01-07 03:06:40 +08:00
|
|
|
/apps/md4.c
|
2013-01-07 00:47:36 +08:00
|
|
|
|
|
|
|
# Auto generated headers
|
2013-01-07 03:06:40 +08:00
|
|
|
/crypto/buildinf.h
|
2019-09-28 06:45:33 +08:00
|
|
|
/include/crypto/*_conf.h
|
Add better support for using deprecated symbols internally
OPENSSL_SUPPRESS_DEPRECATED only does half the job, in telling the
deprecation macros not to add the warning attribute. However, with
'no-deprecated', the symbols are still removed entirely, while we
might still want to use them internally.
The solution is to permit <openssl/opensslconf.h> macros to be
modified internally, such as undefining OPENSSL_NO_DEPRECATED in this
case.
However, with the way <openssl/opensslconf.h> includes
<openssl/macros.h>, that's easier said than done. That's solved by
generating <openssl/configuration.h> instead, and add a new
<openssl/opensslconf.h> that includes <openssl/configuration.h> as
well as <openssl/macros.h>, thus allowing to replace an inclusion of
<openssl/opensslconf.h> with this:
#include <openssl/configuration.h>
#undef OPENSSL_NO_DEPRECATED
#define OPENSSL_SUPPRESS_DEPRECATED
#include <openssl/macros.h>
Or simply add the following prior to any other openssl inclusion:
#include <openssl/configuration.h>
#undef OPENSSL_NO_DEPRECATED
#define OPENSSL_SUPPRESS_DEPRECATED
Note that undefining OPENSSL_NO_DEPRECATED must never be done by
applications, since the symbols must still be exported by the
library. Internal test programs are excempt of this rule, though.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/10608)
2019-12-11 21:36:36 +08:00
|
|
|
/include/openssl/configuration.h
|
2019-10-20 01:35:16 +08:00
|
|
|
/include/openssl/opensslv.h
|
2013-01-07 00:47:36 +08:00
|
|
|
|
2019-10-13 05:45:56 +08:00
|
|
|
# Auto generated doc files
|
2020-02-27 05:45:31 +08:00
|
|
|
doc/man1/openssl-*.pod
|
2019-10-13 05:45:56 +08:00
|
|
|
|
2020-04-08 19:14:41 +08:00
|
|
|
# Auto generated der files
|
2020-05-22 23:21:11 +08:00
|
|
|
providers/common/der/der_digests_gen.c
|
|
|
|
providers/common/der/der_dsa_gen.c
|
|
|
|
providers/common/der/der_ec_gen.c
|
|
|
|
providers/common/der/der_rsa_gen.c
|
2020-04-08 19:14:41 +08:00
|
|
|
providers/common/include/prov/der_dsa.h
|
|
|
|
providers/common/include/prov/der_ec.h
|
|
|
|
providers/common/include/prov/der_rsa.h
|
2020-05-14 21:21:40 +08:00
|
|
|
providers/common/include/prov/der_digests.h
|
2020-04-08 19:14:41 +08:00
|
|
|
|
2017-06-08 03:12:03 +08:00
|
|
|
# error code files
|
|
|
|
/crypto/err/openssl.txt.old
|
|
|
|
/engines/e_afalg.txt.old
|
|
|
|
/engines/e_capi.txt.old
|
|
|
|
/engines/e_dasync.txt.old
|
|
|
|
/engines/e_ossltest.txt.old
|
|
|
|
|
2013-01-07 00:47:36 +08:00
|
|
|
# Executables
|
2013-01-07 03:06:40 +08:00
|
|
|
/apps/openssl
|
|
|
|
/test/sha256t
|
|
|
|
/test/sha512t
|
2013-01-20 01:41:44 +08:00
|
|
|
/test/gost2814789t
|
2016-04-06 22:04:55 +08:00
|
|
|
/test/ssltest_old
|
2013-01-07 03:06:40 +08:00
|
|
|
/test/*test
|
|
|
|
/test/fips_aesavs
|
|
|
|
/test/fips_desmovs
|
|
|
|
/test/fips_dhvs
|
|
|
|
/test/fips_drbgvs
|
|
|
|
/test/fips_dssvs
|
|
|
|
/test/fips_ecdhvs
|
|
|
|
/test/fips_ecdsavs
|
|
|
|
/test/fips_rngvs
|
|
|
|
/test/fips_test_suite
|
2016-04-06 22:03:06 +08:00
|
|
|
/test/ssltest_old
|
2016-05-23 20:48:22 +08:00
|
|
|
/test/x509aux
|
2016-06-08 23:37:06 +08:00
|
|
|
/test/v3ext
|
2018-04-04 23:54:33 +08:00
|
|
|
/test/versions
|
2016-10-12 19:07:33 +08:00
|
|
|
/test/ossl_shim/ossl_shim
|
2018-09-17 06:09:25 +08:00
|
|
|
/test/rsa_complex
|
2019-11-13 01:41:29 +08:00
|
|
|
/test/confdump
|
2020-01-06 07:14:24 +08:00
|
|
|
/test/bio_prefix_text
|
2020-06-16 23:15:52 +08:00
|
|
|
/test/evp_extra_test2
|
2016-07-08 20:11:43 +08:00
|
|
|
|
|
|
|
# Certain files that get created by tests on the fly
|
2020-02-13 03:22:42 +08:00
|
|
|
/test-runs
|
2016-07-08 20:11:43 +08:00
|
|
|
/test/buildtest_*
|
2020-02-26 05:27:24 +08:00
|
|
|
/test/provider_internal_test.cnf
|
|
|
|
/test/fipsmodule.cnf
|
|
|
|
/providers/fipsmodule.cnf
|
2016-07-08 20:11:43 +08:00
|
|
|
|
|
|
|
# Fuzz stuff.
|
|
|
|
# Anything without an extension is an executable on Unix, so we keep files
|
|
|
|
# with extensions. And we keep the corpora subddir versioned as well.
|
|
|
|
# Anything more generic with extensions that should be ignored will be taken
|
|
|
|
# care of by general ignores for those extensions (*.o, *.obj, *.exe, ...)
|
|
|
|
/fuzz/*
|
|
|
|
!/fuzz/README*
|
|
|
|
!/fuzz/corpora
|
|
|
|
!/fuzz/*.*
|
2013-01-07 00:47:36 +08:00
|
|
|
|
|
|
|
# Misc auto generated files
|
2018-12-03 22:37:07 +08:00
|
|
|
/doc/man7/openssl_user_macros.pod
|
2013-01-07 03:06:40 +08:00
|
|
|
/tools/c_rehash
|
2016-06-08 20:08:53 +08:00
|
|
|
/tools/c_rehash.pl
|
2016-09-12 00:47:39 +08:00
|
|
|
/util/shlib_wrap.sh
|
2016-01-22 20:06:26 +08:00
|
|
|
/tags
|
|
|
|
/TAGS
|
2018-10-02 21:05:14 +08:00
|
|
|
*.map
|
|
|
|
*.ld
|
2020-03-03 02:05:03 +08:00
|
|
|
/apps/progs.c
|
|
|
|
/apps/progs.h
|
2015-01-09 18:19:10 +08:00
|
|
|
|
2016-06-08 20:08:53 +08:00
|
|
|
# Windows (legacy)
|
2015-04-01 17:36:18 +08:00
|
|
|
/tmp32
|
|
|
|
/tmp32.dbg
|
2015-01-09 18:19:10 +08:00
|
|
|
/tmp32dll
|
2015-01-10 07:01:20 +08:00
|
|
|
/tmp32dll.dbg
|
2015-04-01 17:36:18 +08:00
|
|
|
/out32
|
|
|
|
/out32.dbg
|
2015-01-09 18:19:10 +08:00
|
|
|
/out32dll
|
2015-01-10 07:01:20 +08:00
|
|
|
/out32dll.dbg
|
2015-01-09 18:19:10 +08:00
|
|
|
/inc32
|
|
|
|
/MINFO
|
2016-01-22 20:06:26 +08:00
|
|
|
/ms/bcb.mak
|
|
|
|
/ms/libeay32.def
|
|
|
|
/ms/nt.mak
|
|
|
|
/ms/ntdll.mak
|
|
|
|
/ms/ssleay32.def
|
|
|
|
/ms/version32.rc
|
2015-05-22 16:28:43 +08:00
|
|
|
|
|
|
|
# Files created on other branches that are not held in git, and are not
|
|
|
|
# needed on this branch
|
2016-01-22 20:06:26 +08:00
|
|
|
/include/openssl/asn1_mac.h
|
|
|
|
/include/openssl/des_old.h
|
|
|
|
/include/openssl/fips.h
|
|
|
|
/include/openssl/fips_rand.h
|
|
|
|
/include/openssl/krb5_asn.h
|
|
|
|
/include/openssl/kssl.h
|
|
|
|
/include/openssl/pq_compat.h
|
|
|
|
/include/openssl/ssl23.h
|
|
|
|
/include/openssl/tmdiff.h
|
|
|
|
/include/openssl/ui_compat.h
|
|
|
|
/test/fips_aesavs.c
|
|
|
|
/test/fips_desmovs.c
|
|
|
|
/test/fips_dsatest.c
|
|
|
|
/test/fips_dssvs.c
|
|
|
|
/test/fips_hmactest.c
|
|
|
|
/test/fips_randtest.c
|
|
|
|
/test/fips_rngvs.c
|
|
|
|
/test/fips_rsagtest.c
|
|
|
|
/test/fips_rsastest.c
|
|
|
|
/test/fips_rsavtest.c
|
|
|
|
/test/fips_shatest.c
|
|
|
|
/test/fips_test_suite.c
|
|
|
|
/test/shatest.c
|
2016-07-08 20:11:43 +08:00
|
|
|
|
2016-09-01 04:56:02 +08:00
|
|
|
# Generated docs directories
|
|
|
|
/doc/html
|
|
|
|
/doc/man
|
|
|
|
|
2016-07-08 20:11:43 +08:00
|
|
|
##### Generic patterns
|
|
|
|
# Auto generated assembly language source files
|
|
|
|
*.s
|
|
|
|
!/crypto/*/asm/*.s
|
|
|
|
/crypto/arm*.S
|
|
|
|
/crypto/*/*.S
|
|
|
|
*.asm
|
|
|
|
!/crypto/*/asm/*.asm
|
|
|
|
|
|
|
|
# Object files
|
|
|
|
*.o
|
|
|
|
*.obj
|
|
|
|
|
|
|
|
# editor artefacts
|
|
|
|
*.swp
|
|
|
|
.#*
|
|
|
|
\#*#
|
|
|
|
*~
|
|
|
|
|
|
|
|
# Certificate symbolic links
|
|
|
|
*.0
|
|
|
|
|
2017-04-26 00:29:04 +08:00
|
|
|
# All kinds of libraries and executables
|
|
|
|
*.a
|
2016-07-08 20:11:43 +08:00
|
|
|
*.so
|
|
|
|
*.so.*
|
|
|
|
*.dylib
|
|
|
|
*.dylib.*
|
|
|
|
*.dll
|
|
|
|
*.dll.*
|
|
|
|
*.exe
|
|
|
|
*.pyc
|
|
|
|
*.exp
|
|
|
|
*.lib
|
|
|
|
*.pdb
|
|
|
|
*.ilk
|
|
|
|
*.def
|
|
|
|
*.rc
|
|
|
|
*.res
|
|
|
|
|
|
|
|
# Misc generated stuff
|
|
|
|
Makefile.save
|
|
|
|
/crypto/**/lib
|
|
|
|
/engines/**/lib
|
|
|
|
/ssl/**/lib
|
|
|
|
*.bak
|
|
|
|
cscope.*
|
|
|
|
*.d
|
2020-02-19 00:08:30 +08:00
|
|
|
*.d.tmp
|
2016-08-04 01:53:21 +08:00
|
|
|
pod2htmd.tmp
|
|
|
|
|
|
|
|
# Windows manifest files
|
|
|
|
*.manifest
|
2017-01-12 21:20:54 +08:00
|
|
|
doc-nits
|