aboutsummaryrefslogtreecommitdiff
path: root/gnu/lib
Commit message (Collapse)AuthorAgeFilesLines
* Fix a bogon with ok/cancel callback usage.Jordan K. Hubbard1996-04-272-26/+24
| | | | Notes: svn path=/head/; revision=15406
* More custom hackery to deal with issues discovered in sysinstall.Jordan K. Hubbard1996-04-253-17/+14
| | | | Notes: svn path=/head/; revision=15382
* Allow some post-fire actions to be combined in ways that weren'tJordan K. Hubbard1996-04-253-16/+9
| | | | | | | possible before. Notes: svn path=/head/; revision=15380
* alloca() was being called with highly bogus arguments due to brainJordan K. Hubbard1996-04-252-2/+2
| | | | | | | fade. Fixed. Notes: svn path=/head/; revision=15376
* Cosmetic tweaks.Jordan K. Hubbard1996-04-232-4/+13
| | | | Notes: svn path=/head/; revision=15354
* Another bug fix for the DITEM_REDRAW case.Jordan K. Hubbard1996-04-202-4/+5
| | | | Notes: svn path=/head/; revision=15323
* Make the DITEM_RECREATE option work properly.Jordan K. Hubbard1996-04-203-22/+27
| | | | Notes: svn path=/head/; revision=15322
* Fix a bug which did not properly bias checklist items by their scrollJordan K. Hubbard1996-04-192-8/+10
| | | | | | | factor. Notes: svn path=/head/; revision=15306
* Remove a long-standing window leak I just noticed.Jordan K. Hubbard1996-04-183-2/+18
| | | | Notes: svn path=/head/; revision=15290
* Remove the special-case behavior for fire actions that returnJordan K. Hubbard1996-04-187-176/+104
| | | | | | | | | | | | | | DITEM_FAILURE - formerly they would simply act as an implicit "continue", but this is wrong. If you want this behavior, you should now return with the DITEM_CONTINUE flag set. Also make the semantics of DITEM_RESTORE quite a bit different - rather than restore the screen back to pre-menu state, we restore the menu itself. This is more correct for a variety of reasons when dealing with nested menus (whoops!). Notes: svn path=/head/; revision=15289
* More changes to attempt to make this whole new dialog scheme moreJordan K. Hubbard1996-04-1613-1246/+1367
| | | | | | | | | | | | robust. The new "fire" actions, while affording signficantly more interactivity to libdialog, come at a cost - if the fire action trashes the screen then you're not going to be in Kansas anymore when you come back to the menu and there had better be considerable extra smarts in place for coping with such a situation. These changes are my attempt to do just that. Notes: svn path=/head/; revision=15273
* Remove some of the grot I added to try and save/restore screen contents.Jordan K. Hubbard1996-04-131-27/+3
| | | | | | | This shouldn't be done here, it should be done in the client as needed. Notes: svn path=/head/; revision=15240
* Save screen before calling any fire() callbacks - you never know whatJordan K. Hubbard1996-04-081-360/+376
| | | | | | | they might do to the screen. Notes: svn path=/head/; revision=15143
* Refresh dialogs if a callback action fails.Jordan K. Hubbard1996-04-083-11/+33
| | | | Notes: svn path=/head/; revision=15142
* Make this properly respect obj dirs.Jordan K. Hubbard1996-04-071-35/+37
| | | | Notes: svn path=/head/; revision=15090
* Strive for a little more consistency with my examples.Jordan K. Hubbard1996-04-077-14/+14
| | | | Notes: svn path=/head/; revision=15089
* Add an `aux' field for some other gunk I'm doing.Jordan K. Hubbard1996-04-051-0/+1
| | | | Notes: svn path=/head/; revision=15044
* Make "make tests" actually work. This is an extremely crude hack, butMark Murray1996-03-041-9/+9
| | | | | | | I figure that as this is not part of any automated processes, WTH. Notes: svn path=/head/; revision=14377
* gnumalloc is gone.Poul-Henning Kamp1996-02-111-2/+2
| | | | Notes: svn path=/head/; revision=14032
* Remove libgnumalloc.Poul-Henning Kamp1996-02-1123-3185/+0
| | | | Notes: svn path=/head/; revision=14031
* Add some missing MLINKS, correct some cross references, correct someMike Pritchard1996-02-093-5/+6
| | | | | | | file locations and some minor formatting/style problems. Notes: svn path=/head/; revision=14003
* Added some missing MLINKS for section 3 man pages.Mike Pritchard1996-02-091-1/+15
| | | | | | | | | | Also corrected a few minor formatting errors, file location and cross references in some of the section 3 man pages. This shuts up a lot of the output from "manck" for section 3. Notes: svn path=/head/; revision=13987
* Minor tweak to this test.Jordan K. Hubbard1996-02-081-2/+2
| | | | Notes: svn path=/head/; revision=13969
* Fix small bug with negative item_no.Jordan K. Hubbard1996-01-101-1/+1
| | | | Notes: svn path=/head/; revision=13373
* Refresh before calling selection hook.Jordan K. Hubbard1996-01-052-2/+6
| | | | Notes: svn path=/head/; revision=13232
* Create individual tests for each dialog feature.Jordan K. Hubbard1996-01-0119-336/+1266
| | | | Notes: svn path=/head/; revision=13136
* Next round of changes - make dialog boxes drawable at arbitrary X,Y locationsJordan K. Hubbard1996-01-0111-84/+127
| | | | | | | | | and add selection traversal callbacks so context-sensitive behavior can even be implemented for individual menu items. These work around the two largest issues holding me back with some of my sysinstall changes. Notes: svn path=/head/; revision=13135
* This commit was generated by cvs2svn to compensate for changes in r13122,Peter Wemm1995-12-301-272/+0
| | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=13123
* recording cvs-1.6 file deathPeter Wemm1995-12-3026-15730/+0
| | | | Notes: svn path=/cvs2svn/branches/ATT/; revision=13122
* Add another test to round out the radiolist dialog suite.Jordan K. Hubbard1995-12-231-31/+107
| | | | | | | | Add more comments and attempt to make everything just that much more understandable. Notes: svn path=/head/; revision=12987
* o Add some test code.Jordan K. Hubbard1995-12-232-0/+265
| | | | Notes: svn path=/head/; revision=12984
* Add changes to:Jordan K. Hubbard1995-12-238-358/+1028
| | | | | | | | | | o Support a new, fully backwards-compatible API for controling individual items in dialog menus. o Write a man page. o Add some test code. Notes: svn path=/head/; revision=12983
* Add fixes from bash betaAndrey A. Chernov1995-12-0312-30/+41
| | | | | | | Back out trailing spaces changes Notes: svn path=/head/; revision=12586
* gets() -> fgets()Jordan K. Hubbard1995-12-012-2/+2
| | | | Notes: svn path=/head/; revision=12552
* Fixed beforeinstall rule. .CURDIR was spelled .SRCDIR.Bruce Evans1995-11-261-4/+3
| | | | | | | | | Changed beforeinstall rule to use `install -C' instead of `cmp -s' and `install -c'. `install -C' has exactly the right semantics for installing headers and should be used elsewhere. Notes: svn path=/head/; revision=12486
* Part two of a repository operation to sort out the libmp/libgmp builds.Peter Wemm1995-11-252-59/+28
| | | | | | | | After this commit, you should be able to build libmp and libgmp independently and without being forced to do a make depend first.. Notes: svn path=/head/; revision=12482
* BBild libgmp from the sources already in ../libmp.Mark Murray1995-11-131-0/+60
| | | | Notes: svn path=/head/; revision=12267
* Add libgmp.Mark Murray1995-11-131-2/+2
| | | | Notes: svn path=/head/; revision=12266
* Make the tests work. libmp and libgmp must be installed for thisMark Murray1995-11-132-2/+68
| | | | | | | to work. Notes: svn path=/head/; revision=12264
* Build the TeXinfo manualMark Murray1995-11-131-0/+7
| | | | Notes: svn path=/head/; revision=12263
* 1) Add the doc/subdirectory - this will get gmp.texi installedMark Murray1995-11-131-21/+2
| | | | | | | 2) Clean up the Makefile - libgmp is coming! Notes: svn path=/head/; revision=12262
* Add libmpMark Murray1995-11-121-2/+2
| | | | Notes: svn path=/head/; revision=12238
* BMake the multiprecision library, and fix as many of the -Wall warningsMark Murray1995-11-124-278/+376
| | | | | | | as is now feasable. Notes: svn path=/head/; revision=12237
* GNU MP (Multiprecision) library. This is needed by secure RPC (beingMark Murray1995-11-12131-0/+16601
| | | | | | | | done by Bill Paul) and various other BSD programs. Obtained from:FSF Notes: svn path=/vendor/misc-GNU/dist2/; revision=12234
* Change `install' to `${INSTALL}' so that default install flags can beBruce Evans1995-08-064-8/+8
| | | | | | | | | | specified in the top level Makefiles. Previously I missed dozens of Makefiles that skip the install after using `cmp -s' to decide that the install isn't necessary. Notes: svn path=/head/; revision=9970
* Update version infoAndrey A. Chernov1995-07-191-1/+1
| | | | | | | | | Reviewed by: Submitted by: Obtained from: Notes: svn path=/head/; revision=9580
* Sync with bash 1.4.5 versionAndrey A. Chernov1995-07-195-20/+18
| | | | | | | | | Check some null pointers before action, cosmetique fixes Submitted by: Obtained from: Notes: svn path=/head/; revision=9579
* Fix dependencies for regex.texi. It is constructed by merging a C headerBruce Evans1995-07-121-1/+1
| | | | | | | file with an info source file. Notes: svn path=/head/; revision=9498
* Define CPLUSPLUSLIB so that bsd.lib.mk will add c++rt0.o to callDoug Rabson1995-07-051-2/+3
| | | | | | | | | | constructors and destructors. Add -lgcc_pic to LDADD for the shared library since C++ code uses stuff from libgcc and we no longer have a shared libgcc. Should this be done by CPLUSPLUSLIB? Notes: svn path=/head/; revision=9409
* Remove trailing whitespace.Rodney W. Grimes1995-05-30139-2303/+2303
| | | | Notes: svn path=/head/; revision=8858