summaryrefslogtreecommitdiffstats
path: root/tools/tools
Commit message (Collapse)AuthorAgeFilesLines
* Updates to support adding driver files outside the i386 area.msmith1998-05-062-92/+357
| | | | Submitted by: Daniel O'Connor <doconnor@gsoft.com.au>
* Install tclAppInit.c in the installhdrs step so that it isn't necessarybde1998-03-231-4/+4
| | | | to build libtcl twice in `make world'.
* Don't install the tcl implementation headers. The tcl distributionbde1998-01-171-10/+2
| | | | | | | | makefile doesn't install them, and they couldn't be used without lots of undocumented -I's in CFLAGS. tcl.h is still installed in /usr/include/tcl/. Note that rev.1.24 of tcl_bmake/mkMakefile.sh broke all the section 3 tcl man pages by putting it there instead of in /usr/include.
* Updated shlib version to 80.4 in the correct place.bde1998-01-171-3/+3
| | | | | Regenerated libtcl/Makefile. This adds -DHAVE_ST_BLKSIZE=1 to CFLAGS. It was broken by direct editing in rev.1.25.
* Add html-mv script. Html-mv rename HTML generated filenames towosch1997-11-092-1/+61
| | | | | | | | | | | | | | | | human readable filenames. E.g.: $ cd FAQ $ make FORMATS=html $ html-mv FAQ $ ls FAQ_ACKNOWLEDGMENTS.html FAQ_Any_restrictions_on_how_I_divide_the_disk_up_.html FAQ_Are_there_any_Database_systems_for_FreeBSD_.html FAQ_Are_there_any_commercial_high-performance_X_servers_.html FAQ_Books_on_FreeBSD.html FAQ_Can_FreeBSD_handle_multiport_serial_cards_sharing_irqs_.html [...]
* Update this little gadet to latest version.phk1997-10-261-38/+40
|
* Makes html table with all VOPs in it.phk1997-10-162-0/+173
|
* Do not suppress the first 5 lines of updated ports.wosch1997-10-041-2/+2
| | | | Detected by: Ville Eerola <ville@vlsi.fi>
* New shlib is 80.3phk1997-10-011-3/+3
|
* Add introduction. Add updated ports.wosch1997-09-291-7/+70
|
* Made this compile again (getopt moved to <unistd.h>).bde1997-09-011-3/+3
| | | | Fixed usage message.
* Split beforeinstall target so that headers can be installed withoutbde1997-08-211-5/+7
| | | | installing data files.
* Install tcl.h into /usr/include/tcl/ so that there's less chance of itpeter1997-08-161-3/+3
| | | | conflicting.
* Remove the original tweaks to make tcl75 work with the ports systempeter1997-08-121-24/+7
| | | | | | | before we make the same mistake with tcl8.0. This _should_ no longer conflict with a not-yet-imported tcl8.0 port and should allow the system and ports versions to be updated independently of each other (and tk) without the sky falling.
* Move tcl packages to libdata/pkgphk1997-08-011-4/+5
|
* The thing to do the trick to tcl.phk1997-07-251-7/+18
|
* Support message of last database update.wosch1997-07-051-8/+8
|
* Some helpful improvements :msmith1997-06-101-23/+41
| | | | | | - be smarter about locating driver description files. - be smarter about whether we are really looking at a kernel tree - fix option handling
* Add portsinfo, which generate list of new ports for last two weeks.wosch1997-04-252-1/+23
|
* Revert $FreeBSD$ to $Id$peter1997-02-228-9/+9
|
* Add a tools to get at the primary or grown defect list of a SCSI disk.joerg1997-02-023-0/+98
| | | | Submitted by: dufault
* Add KernelDriver.msmith1997-01-211-0/+2
|
* This commit was generated by cvs2svn to compensate for changes in r21912,msmith1997-01-212-0/+842
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * This is KernelDriver, a tool for automating the addition ofmsmith1997-01-212-0/+842
| | | | | | | | | third-party device-driver source to the FreeBSD kernel (at versions 2.2 and later). It can list and remove drivers it's added too. It can (should) be included by device-driver authors in their driver distributions, but is perhaps a little too specific to warrant a place in the mainstream distribution.
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-147-8/+8
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* epfe - extract printing filter examples from printing.sgmlwosch1996-12-281-0/+38
| | | | | | usage: $ cd /usr/share/examples/printing $ epfe < printing.sgml
* add epfe and tcl_bmakewosch1996-12-281-1/+5
|
* Fix the 'info sharedlibextention' output in tclsh which was caused by apeter1996-12-171-3/+3
| | | | | | | | | | | missing define during the libtcl build. This is needed to get Tclmidi 3.1 to work. This should close PR#2006 This should also go into 2.2, like the previous commit. Submitted by: A JOSEPH KOSHY <koshy@india.hp.com>
* Reverse the tcl configure's decision to "disable" the use of ranlib sincepeter1996-12-161-3/+4
| | | | | | | it's wrong. It "knows" that ranlib is not used on shared libraries, this is not a valid assumption since it exports this definition to the world via tclConfig.sh. :-( Hence, things like expect (to be updated) fall over because they were using ":" instead of "ranlib" on their static libraries.
* Back out a little more of the previous changes. No longer changepeter1996-10-311-4/+3
| | | | | | TCL_SHLIB_SUFFIX, since some tools use it for generating the name of shared objects for dlopen(), which do not have version numbers. This setting is back to "as distributed".
* Argh, I hate the tcl build/config environment. :-(peter1996-10-301-3/+4
| | | | | | | | | | It seems that some tools (eg: expect-5.21) use TCL_LIB_SPEC to generate their shared library suffix. This should be .so.1.0, not .so as ld can't use it. Revert part of the previous change here, it did too much. libtcl75.so.1.1 was bumped, but the rules to generate library names for _other_ packages were not supposed to be. Sigh.
* Along the way, the minor version number has been bumped (newer versionpeter1996-10-291-10/+15
| | | | | | | of tcl with new functions in the library), but the ports-compatable link name wasn't bumped as it should have been. Minor cleanups while here (including preserving the $Id: line)
* (reverse) sync with src/lib/libtcl/Makefile rev 1.9wosch1996-10-271-11/+22
| | | | | | | | | >Do not make symbolic links from obj directory into source tree, >it may break `make reinstall'. Use cp(1). > >Simplify Makefile. Requested by: Peter
* Actually tell people what ifinfo is.wollman1996-10-111-0/+2
|
* Add my little `ifinfo' program. This is sort of a cross between awollman1996-10-114-0/+441
| | | | | | diagnostic program for debugging the interface MIB and an example of how to use same. Someday, netstat should be updated to print this information in a prettier form.
* Fixed CLEANFILES. The *.3 links were missing.bde1996-09-201-9/+5
| | | | Removed ugly newlines.
* Bump minor number to 1phk1996-09-181-3/+3
|
* Oops, two tiny typos. Serves me right for making a "Just a tiny change!"peter1996-09-051-7/+7
| | | | | without testing right before committing... Also, get rid of some extra slashes in beforeinstall.
* Sigh. That darn tcl source tree is damn strange. I missed the fact thatpeter1996-09-051-3/+32
| | | | | the *.3 man pages are not installed with their distributed names, so all the links were messed up. :-(
* Fix the sed rule that I used to hammer out the TCL_BUILD_LIB_SPEC entrypeter1996-08-291-3/+3
| | | | from tclConfig.sh.. It needs to be valid for the tk41 port to use...
* Cause libtcl to install 5 include files for compibility with ports.chuckr1996-08-291-4/+12
| | | | | Also repair a small install bogon causing install of libtcl.so.0.0. Reviewed by: Peter Wemm
* More cleanup:peter1996-08-291-44/+46
| | | | | | | - don't install nroff tcl.macros in /usr/include.... :-] - set $MAN3 and $MANn in one go rather than a string of MAN3+= ... - cosmetic tweaks to make it more readable - no longer copy tcl.macros to the obj dir, install it from source dir
* Arrange to have libtcl automatically pull in libm since it's dependentpeter1996-08-291-2/+7
| | | | on it.
* Revamp the generated libtcl Makefile :-peter1996-08-281-21/+26
| | | | | | | Use the MANFILTER rather than generate rules for each page Use .PATH to source the man pages rather than copy them for build Install a tclConfig.sh with build params, may need more tweeks yet. Install libtcl.so.75.0 *and* libtcl75.so.1.0 for ports compat.
* delete a mkdir of /usr/libdata/tcl, this is mtree's job.peter1996-08-191-3/+2
|
* Update to use modern make meta-variables. Fix the $Id$ both.phk1996-06-301-5/+10
|
* This script will help bmake tcl.phk1996-06-261-0/+145
|
* Don't look in libkern, it went away.bde1995-12-291-2/+2
|
* The unref and undef counts in the summary were swapped.bde1995-12-151-3/+3
|
* Make this a real cross-ref listing.phk1995-12-151-6/+29
| | | | This is now a handy tool for finding symbols in the kernel.
OpenPOWER on IntegriCloud