| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |
|
|
| |
Notes:
svn path=/projects/openssl111/; revision=338815
|
| |
|
|
| |
Notes:
svn path=/projects/openssl111/; revision=338766
|
| |
|
|
| |
Notes:
svn path=/projects/openssl111/; revision=338764
|
| |
|
|
| |
Notes:
svn path=/projects/openssl111/; revision=338763
|
| |
|
|
| |
Notes:
svn path=/projects/openssl111/; revision=338747
|
| |
|
|
| |
Notes:
svn path=/projects/openssl111/; revision=338746
|
| |
|
|
|
|
|
| |
Note the files are not automatically generated for now.
Notes:
svn path=/projects/openssl111/; revision=338674
|
| |
|
|
| |
Notes:
svn path=/projects/openssl111/; revision=338673
|
| |
|
|
| |
Notes:
svn path=/projects/openssl111/; revision=338672
|
| |
|
|
|
|
|
| |
Note the manual pages are not automatically generated for now.
Notes:
svn path=/projects/openssl111/; revision=338671
|
| |
|
|
| |
Notes:
svn path=/projects/openssl111/; revision=338667
|
| |
|
|
| |
Notes:
svn path=/projects/openssl111/; revision=338665
|
| |
|
|
| |
Notes:
svn path=/projects/openssl111/; revision=338664
|
| |
|
|
|
|
|
| |
Approved by: re (kib@)
Notes:
svn path=/head/; revision=338561
|
| |
|
|
| |
Notes:
svn path=/head/; revision=337791
|
| |
|
|
| |
Notes:
svn path=/head/; revision=333490
|
| |
|
|
|
|
|
|
|
| |
This completely removes client-side support for the SSH 1 protocol,
which was already disabled in 12 but is still enabled in 11. For that
reason, we will not be able to merge 7.6p1 or newer back to 11.
Notes:
svn path=/head/; revision=333389
|
| |
|
|
| |
Notes:
svn path=/head/; revision=331627
|
| |
|
|
|
|
|
| |
MFC after: 3 days
Notes:
svn path=/head/; revision=329024
|
| |
|
|
| |
Notes:
svn path=/head/; revision=326662
|
| |
|
|
| |
Notes:
svn path=/head/; revision=325328
|
| |
|
|
|
|
|
| |
Sponsored by: Dell EMC Isilon
Notes:
svn path=/head/; revision=325188
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
directories to SUBDIR.${MK_TESTS} idiom
This is being done to pave the way for future work (and homogenity) in
^/projects/make-check-sandbox .
No functional change intended.
MFC after: 1 weeks
Notes:
svn path=/head/; revision=321912
|
| |
|
|
| |
Notes:
svn path=/head/; revision=318899
|
| |
|
|
|
|
|
|
| |
MFC after: 1 week
Sponsored by: Dell EMC Isilon
Notes:
svn path=/head/; revision=317998
|
| |
|
|
| |
Notes:
svn path=/head/; revision=314720
|
| |
|
|
|
|
|
|
|
|
| |
This simplifies make logic/output
MFC after: 1 month
Sponsored by: Dell EMC Isilon
Notes:
svn path=/head/; revision=314658
|
| |
|
|
| |
Notes:
svn path=/head/; revision=314527
|
| |
|
|
| |
Notes:
svn path=/head/; revision=312825
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
MK_KERBEROS_SUPPORT != no
This fixes the odd case where someone specified MK_GSSAPI=no and
MK_KERBEROS_SUPPORT=yes (which admittedly, probably doesn't make sense,
but the build system doesn't prevent this case today, and it didn't when
I filed the bug back in 2011 either).
MFC after: 2 weeks
PR: 159745
Notes:
svn path=/head/; revision=311140
|
| |
|
|
| |
Notes:
svn path=/head/; revision=307977
|
| |
|
|
| |
Notes:
svn path=/head/; revision=307976
|
| |
|
|
| |
Notes:
svn path=/head/; revision=306342
|
| |
|
|
| |
Notes:
svn path=/head/; revision=306193
|
| |
|
|
| |
Notes:
svn path=/head/; revision=304640
|
| |
|
|
| |
Notes:
svn path=/head/; revision=304638
|
| |
|
|
|
|
|
| |
MFC after: 1 week
Notes:
svn path=/head/; revision=304636
|
| |
|
|
|
|
|
|
|
|
|
| |
instructions. For example, GCC 4.2.1 + binutils 2.17.50 does not support
AVX instructions.
Reported by: bde
MFC after: 2 weeks
Notes:
svn path=/head/; revision=304320
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
glibc has a pretty nice function called crypt_r(3), which is nothing
more than crypt(3), but thread-safe. It accomplishes this by introducing
a 'struct crypt_data' structure that contains a buffer that is large
enough to hold the resulting string.
Let's go ahead and also add this function. It would be a shame if a
useful function like this wouldn't be usable in multithreaded apps.
Refactor crypt.c and all of the backends to no longer declare static
arrays, but write their output in a provided buffer.
There is no need to do any buffer length computation here, as we'll just
need to ensure that 'struct crypt_data' is large enough, which it is.
_PASSWORD_LEN is defined to 128 bytes, but in this case I'm picking 256,
as this is going to be part of the actual ABI.
Differential Revision: https://reviews.freebsd.org/D7306
Notes:
svn path=/head/; revision=303920
|
| |
|
|
| |
Notes:
svn path=/head/; revision=299481
|
| |
|
|
|
|
|
| |
assembler/compiler capabilities, e.g., AVX instructions.
Notes:
svn path=/head/; revision=299480
|
| |
|
|
| |
Notes:
svn path=/head/; revision=299479
|
| |
|
|
|
|
|
|
| |
Reviewed by: jkim
Differential Revision: https://reviews.freebsd.org/D6237
Notes:
svn path=/head/; revision=299464
|
| |
|
|
|
|
|
|
|
| |
is position independent on all platforms since r299389.
Submitted by: kib
Notes:
svn path=/head/; revision=299462
|
| |
|
|
| |
Notes:
svn path=/head/; revision=299389
|
| |
|
|
|
|
|
|
|
| |
We'll need to properly generate PIC/non-PIC from the source .pl files.
Reported by: jkim
Notes:
svn path=/head/; revision=299172
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Prior to this change libcrypto ended up with a .text relocation.
Submitted by: Rafael Espíndola (earlier version)
Reviewed by: kib
Approved by: so (glebius)
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D6164
Notes:
svn path=/head/; revision=299139
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
after r298107
Summary of changes:
- Replace all instances of FILES/TESTS with ${PACKAGE}FILES. This ensures that
namespacing is kept with FILES appropriately, and that this shouldn't need
to be repeated if the namespace changes -- only the definition of PACKAGE
needs to be changed
- Allow PACKAGE to be overridden by callers instead of forcing it to always be
`tests`. In the event we get to the point where things can be split up
enough in the base system, it would make more sense to group the tests
with the blocks they're a part of, e.g. byacc with byacc-tests, etc
- Remove PACKAGE definitions where possible, i.e. where FILES wasn't used
previously.
- Remove unnecessary TESTSPACKAGE definitions; this has been elided into
bsd.tests.mk
- Remove unnecessary BINDIRs used previously with ${PACKAGE}FILES;
${PACKAGE}FILESDIR is now automatically defined in bsd.test.mk.
- Fix installation of files under data/ subdirectories in lib/libc/tests/hash
and lib/libc/tests/net/getaddrinfo
- Remove unnecessary .include <bsd.own.mk>s (some opportunistic cleanup)
Document the proposed changes in share/examples/tests/tests/... via examples
so it's clear that ${PACKAGES}FILES is the suggested way forward in terms of
replacing FILES. share/mk/bsd.README didn't seem like the appropriate method
of communicating that info.
MFC after: never probably
X-MFC with: r298107
PR: 209114
Relnotes: yes
Tested with: buildworld, installworld, checkworld; buildworld, packageworld
Sponsored by: EMC / Isilon Storage Division
Notes:
svn path=/head/; revision=299094
|
| |
|
|
|
|
|
| |
Relnotes: yes
Notes:
svn path=/head/; revision=298998
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fix a related typo while here.
Note, this change results in the Kyuafile inclusion in the runtime
package, which needs to be fixed, however addresses the PR as far
as I can tell in my tests.
PR: 209114
Submitted by: ngie
Sponsored by: The FreeBSD Foundation
Notes:
svn path=/head/; revision=298768
|