Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix a printf("%b", ..) example. | roam | 2004-08-06 | 1 | -2/+2 |
| | | | | | | PR: 68849 Submitted by: Michel Lavondes <fox@vader.aacc.cc.md.us> MFC after: 1 week | ||||
* | Add Giorgos's description of the ftp-chroot login.conf option. | roam | 2004-08-06 | 1 | -0/+10 |
| | | | | | | Reported by: Bill Moran <wmoran@potentialtech.com> Submitted by: keramida MFC after: 2 weeks | ||||
* | Join the 21st century: Cryptography is no longer an optional component | cperciva | 2004-08-06 | 7 | -10/+0 |
| | | | | | | | | | | of releases. The -DNOCRYPT build option still exists for anyone who really wants to build non-cryptographic binaries, but the "crypto" release distribution is now part of "base", and anyone installing from a release will get cryptographic binaries. Approved by: re (scottl), markm Discussed on: freebsd-current, in late April 2004 | ||||
* | Don't use type unknown for partitions that we don't care about because | marcel | 2004-08-05 | 1 | -2/+2 |
| | | | | | | the chunk will never be added to the list in that case. Use type mbr for GPT nested MBRs and use type part for any partition we don't know or care about. Since the subtype is 0, this should not cause confusion. | ||||
* | Only use rfs and wfs if ARM_HARD_FLOAT is defined, and use stubs if it is not, | cognet | 2004-08-05 | 1 | -2/+7 |
| | | | | | | in order to unbreak arm make world. The right way to do it with soft floats will be figured out later. Discussed with: das | ||||
* | Replace s_isnan.c and s_isnanf.c with the more compact s_isnan.c from | das | 2004-08-05 | 3 | -67/+53 |
| | | | | | | | libc. The externally-visible effect of this is to add __isnanl() to libm, which means that libm.so.2 can once again link against libc.so.4 when LD_BIND_NOW is set. This was broken by the addition of fdiml(), which calls __isnanl(). | ||||
* | Use isnormal() instead of fpclassify() to avoid dependency on libc.so.5. | das | 2004-08-05 | 2 | -6/+2 |
| | |||||
* | Fix Skinny and PPTP NAT'ing after the introduction of the {ip,tcp,udp}_next | marcus | 2004-08-04 | 2 | -2/+2 |
| | | | | | | | | | functions. Basically, the ip_next() function was used to get the PPTP and Skinny headers when tcp_next() should have been used instead. Symptoms of this included a segfault in natd when trying to process a PPTP or Skinny packet. Approved by: des | ||||
* | Move libbsnmp.so to /lib so that it is available to atmconfig. | harti | 2004-08-04 | 1 | -0/+1 |
| | | | | | | At the moment the only dependency on this library is bsnmpd. Approved by: silence on re@ | ||||
* | Correct the names and descriptions of the man pages. | kientzle | 2004-08-04 | 1 | -1/+3 |
| | |||||
* | Add stubs for TLS functions. These will be replaced at runtime by the | dfr | 2004-08-03 | 2 | -3/+73 |
| | | | | functional versions in rtld. | ||||
* | s/TMDF_DONOTRUNUSER/TMDF_SUSPEND/g | davidxu | 2004-08-03 | 7 | -11/+11 |
| | | | | Dicussed with: deischen | ||||
* | Typo in comment. | le | 2004-08-02 | 1 | -1/+1 |
| | |||||
* | Ignore geom_vinum providers. | le | 2004-08-02 | 1 | -0/+2 |
| | |||||
* | Remove an implicit int parameter by using prototypes. | stefanf | 2004-08-02 | 1 | -9/+3 |
| | |||||
* | Don't pass function pointers via a void * parameter. | stefanf | 2004-08-02 | 1 | -4/+4 |
| | |||||
* | For the "portable" distribution, the configure script will overwrite | kientzle | 2004-08-01 | 1 | -159/+1 |
| | | | | | | "Makefile," so I'm moving all the FreeBSD build machinery to "Makefile.freebsd", with the default "Makefile" containing a single include. | ||||
* | C standard does not permit empty initializer list. | kientzle | 2004-08-01 | 1 | -6/+6 |
| | | | | Thanks to: Stefan Farfeleder | ||||
* | Add missing thread suspension/resumption code, fix a bug in pt_thr_sstep, | davidxu | 2004-08-01 | 1 | -11/+115 |
| | | | | don't overwrite other debug flags. | ||||
* | Add code to implement register structure converter. | davidxu | 2004-08-01 | 1 | -1/+56 |
| | |||||
* | Reflect changes in sendmail 8.13 source tree | gshapiro | 2004-08-01 | 1 | -1/+1 |
| | |||||
* | Expand the license referenced indirectly inline. | imp | 2004-07-31 | 2 | -6/+40 |
| | |||||
* | Save context in kernel fashion, so it can be restored by | davidxu | 2004-07-31 | 2 | -4/+10 |
| | | | | kse_switchin syscall. | ||||
* | Remove unused field. | davidxu | 2004-07-31 | 2 | -2/+0 |
| | |||||
* | Macro optimize, this increases context switch speed about 2% on my | davidxu | 2004-07-31 | 2 | -4/+4 |
| | | | | athlon64 machine. | ||||
* | 1. Use correct alignment mask, -15 != ~15 | davidxu | 2004-07-31 | 1 | -2/+2 |
| | | | | 2. Make end of frames | ||||
* | Use #include <unistd.h> rather than the explicit externs in the | imp | 2004-07-31 | 1 | -2/+1 |
| | | | | | | example. The externs haven't been needed in about 10 years, so there's no reason to have them other than for hysterical raisins. And the California Rasins haven't been around for a long time... | ||||
* | o Assertions to catch that stuff that shouldn't happen is not happening. | mtm | 2004-07-30 | 3 | -20/+19 |
| | | | | | | | | | | o In the rwlock code: move a duplicated check inside an if..else to after the if...else clause. o When initializing a static rwlock move the initialization check inside the lock. o In thr_setschedparam.c: When breaking out of the trylock...retry if busy loop make sure to reset the mtx pointer to null if the mutex is nolonger in a queue. | ||||
* | Conditionalize the bzip2/gzip compression/decompression | kientzle | 2004-07-30 | 5 | -0/+29 |
| | | | | | | | | | | | code on the existence of the relevant libraries (actually, the existence of the include files). This will allow the library to be easily ported to systems that don't have these libraries. (Of course, it also means that clients using the library on such systems will not be able to take advantage of the automatic compression format detection.) | ||||
* | Re-word the COMPATIBILITY section, taking care to use the word "deprecated" | tjr | 2004-07-29 | 12 | -98/+74 |
| | | | | | | to describe the 4.4BSD extension of accepting arguments outside the range of unsigned char. This gives us freedom to remove this extension when we remove the <rune.h> interface in FreeBSD 6. | ||||
* | Use newly added __used attribute to keep static function symbols from being | kan | 2004-07-29 | 1 | -8/+8 |
| | | | | eliminated by compiler optimizer. | ||||
* | Change a couple of comments so that GCC doesn't think that they contain | scottl | 2004-07-29 | 1 | -3/+3 |
| | | | | tri-graphs. | ||||
* | Remove unnecessary #include directives. | tjr | 2004-07-29 | 3 | -8/+0 |
| | |||||
* | Prefer <runetype.h> to <rune.h>, since the latter is going away soon. | tjr | 2004-07-29 | 5 | -5/+5 |
| | |||||
* | Remove useless checks for characters longer than INT_MAX bytes. | tjr | 2004-07-29 | 3 | -12/+0 |
| | |||||
* | Add support for multibyte characters. | tjr | 2004-07-29 | 1 | -30/+84 |
| | |||||
* | Add a paragraph break in the STANDARDS section to improve readability. | tjr | 2004-07-29 | 1 | -0/+1 |
| | |||||
* | Add support for multibyte characters. | tjr | 2004-07-29 | 1 | -49/+112 |
| | |||||
* | Document incorrect handling of multibyte characters due to limitations | tjr | 2004-07-28 | 1 | -1/+6 |
| | | | | of sh(1). | ||||
* | Set fpu context flags to known values, zero is illegal. | davidxu | 2004-07-28 | 1 | -0/+2 |
| | |||||
* | ANSIfy and constify; this now builds with GCC 3.4. | des | 2004-07-28 | 1 | -22/+19 |
| | |||||
* | Work around known GCC 3.4.x problem and use ANSI prototype for dremf(). | kan | 2004-07-28 | 1 | -2/+2 |
| | |||||
* | Downgrade WARNS level for GCC 3.4.2. | kan | 2004-07-28 | 3 | -2/+3 |
| | |||||
* | Avoid casts as lvalues. | kan | 2004-07-28 | 1 | -2/+2 |
| | |||||
* | Downgrage WARNS level for GCC 3.4.x. | kan | 2004-07-28 | 1 | -1/+1 |
| | |||||
* | Remove stale code protected by #ifdef sparc. GCC 3.4.x adds sparc to | kan | 2004-07-28 | 1 | -9/+0 |
| | | | | predefined symbols on all SPARC platforms and FreeBSD follows the crowd. | ||||
* | s/round/fpround/ to avoid naming clash with GCC builtin function. | kan | 2004-07-28 | 1 | -8/+8 |
| | |||||
* | Add UTF-8-specific implementations of mbsnrtowcs() and wcsnrtombs(). | tjr | 2004-07-27 | 1 | -0/+163 |
| | | | | | | These convert plain ASCII characters in-line, making them only slightly slower than the single-byte ("NONE" encoding) version when processing ASCII strings. | ||||
* | Enclose .Fa fn with ``The ... function'' at the beginning of sentences. | charnier | 2004-07-26 | 1 | -4/+8 |
| | |||||
* | When writing "pax" format, readers are supposed to ignore fields | kientzle | 2004-07-26 | 5 | -25/+117 |
| | | | | | | | | | | | | | | | | | | in the regular ustar header that are overridden by the pax extended attributes. As a result, it makes perfect sense to use numeric extensions in the regular ustar header so that readers that don't understand pax extensions but do understand some other extensions can still get useful information out of it. This is especially important for filesizes, as the failure to read a file size correctly can get the reader out of sync. This commit introduces a "non-strict" option into the internal function to format a ustar header. In non-strict mode, the formatter will use longer octal values (overwriting terminators) or binary ("base-256") values as needed to ensure that large file sizes, negative mtimes, etc, have the correct values stored in the regular ustar header. |