aboutsummaryrefslogtreecommitdiff
path: root/gnu/lib/libdialog
Commit message (Collapse)AuthorAgeFilesLines
...
* Enforce style.Makefile(5).Tom Rhodes2005-04-221-1/+1
| | | | | | | Glanced at by: ru (some time ago). Notes: svn path=/head/; revision=145413
* Expand contractions.Ruslan Ermilov2005-02-151-1/+1
| | | | Notes: svn path=/head/; revision=141946
* Expand *n't contractions.Ruslan Ermilov2005-02-131-1/+1
| | | | Notes: svn path=/head/; revision=141846
* Sort sections.Ruslan Ermilov2005-01-181-10/+11
| | | | Notes: svn path=/head/; revision=140410
* Fix 'redraw' of checklist box. It is occurs in situation when size ofAlexey Zelkin2005-01-041-0/+9
| | | | | | | | | | | | checklist box is strictly set via command line, but amount of checklist items less than height of checklist box. In this case bottom part of box was not redrawn (occurs when passing focus behind of 'Cancel' button while configuring any FreeBSD port OPTIONS) MFC after: 3 days Notes: svn path=/head/; revision=139669
* NOHTML -> NO_HTMLRuslan Ermilov2004-12-211-1/+1
| | | | Notes: svn path=/head/; revision=139119
* Replaced afterinstall: with FILES.Ruslan Ermilov2004-10-181-5/+2
| | | | Notes: svn path=/head/; revision=136666
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-021-34/+68
| | | | Notes: svn path=/head/; revision=131490
* Removed trailing whitespace.Ruslan Ermilov2004-07-021-9/+9
| | | | Notes: svn path=/head/; revision=131472
* Test data before using it.Eric Melville2004-02-261-0/+4
| | | | | | | | | | | Of course, libdialog is still chock-full of similar bugs, but it's been multiple years and no one has any better suggestions so the bugs will just be dealt with case-by-case. PR: 28221 Notes: svn path=/head/; revision=126257
* Fixed style of DPADD and LDADD assignments as per style.Makefile(5).Ruslan Ermilov2004-02-051-2/+2
| | | | Notes: svn path=/head/; revision=125503
* The .Fn functionPhilippe Charnier2003-06-081-30/+60
| | | | Notes: svn path=/head/; revision=116020
* Use __FBSDID over rcsid[].David E. O'Brien2003-05-0332-80/+86
| | | | Notes: svn path=/head/; revision=114603
* This is WARNS=2 clean.David E. O'Brien2003-05-031-0/+1
| | | | Notes: svn path=/head/; revision=114602
* Disallow libdialog to be used in setugid applications; it is chock fullKris Kennaway2002-10-121-0/+8
| | | | | | | | | of buffer overflows. MFC after: 3 days Notes: svn path=/head/; revision=104997
* Zap now-unused SHLIB_MINORPeter Wemm2002-09-281-1/+0
| | | | Notes: svn path=/head/; revision=104073
* Quiet another annoying warning.Garrett Wollman2002-09-091-0/+1
| | | | Notes: svn path=/head/; revision=103140
* Drop support for COPY, -c has been the default mode of install(1)Ruslan Ermilov2002-07-291-1/+1
| | | | | | | | | for a long time now. Approved by: bde Notes: svn path=/head/; revision=100872
* s/${INSTALL} -c/${INSTALL} ${COPY}/Ruslan Ermilov2002-07-181-1/+1
| | | | Notes: svn path=/head/; revision=100313
* In addition to exiting the dialog via ESC, the user could also haveDoug Barton2002-06-131-1/+1
| | | | | | | | exited via \r, \n, or ' ' (space); all of which are valid, non-error responses. Notes: svn path=/head/; revision=98195
* Use POSIX macros for wait(2)-style status information instead of theMike Barcroft2002-06-031-3/+2
| | | | | | | | deprecated 4.2/4.3BSD wait union. Fix some nearby pid_t/int confusion. Notes: svn path=/head/; revision=97788
* Add used includes of <stdlib.h>.Garrett Wollman2002-05-302-0/+3
| | | | Notes: svn path=/head/; revision=97623
* Added new bsd.incs.mk which handles installing of header filesRuslan Ermilov2002-05-121-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | via INCS. Implemented INCSLINKS (equivalent to SYMLINKS) to handle symlinking include files. Allow for multiple groups of include files to be installed, with the powerful INCSGROUPS knob. Documentation to follow. Added standard `includes' and `incsinstall' targets, use them in Makefile.inc1. Headers from the following makefiles were not installed before (during `includes' in Makefile.inc1): kerberos5/lib/libtelnet/Makefile lib/libbz2/Makefile lib/libdevinfo/Makefile lib/libform/Makefile lib/libisc/Makefile lib/libmenu/Makefile lib/libmilter/Makefile lib/libpanel/Makefile Replaced all `beforeinstall' targets for installing includes with the INCS stuff. Renamed INCDIR to INCSDIR, for consistency with FILES and SCRIPTS, and for compatibility with NetBSD. Similarly for INCOWN, INCGRP, and INCMODE. Consistently use INCLUDEDIR instead of /usr/include. gnu/lib/libstdc++/Makefile and gnu/lib/libsupc++/Makefile changes were only lightly tested due to the missing contrib/libstdc++-v3. I fully tested the pre-WIP_GCC31 version of this patch with the contrib/libstdc++.295 stuff. These changes have been tested on i386 with the -DNO_WERROR "make world" and "make release". Notes: svn path=/head/; revision=96462
* Fixed memory leak in dialog_gauge(3).Ruslan Ermilov2001-11-291-0/+4
| | | | | | | | | PR: gnu/32260 Submitted by: Igor Pokrovsky <tiamat@telegraph.spb.ru> MFC after: 3 days Notes: svn path=/head/; revision=87087
* Fixed missing return type in synopsis.Bruce Evans2001-10-031-0/+1
| | | | Notes: svn path=/head/; revision=84397
* mdoc(7) police: Use the new .In macro for #include statements.Ruslan Ermilov2001-10-011-1/+1
| | | | Notes: svn path=/head/; revision=84306
* Properly move cursor when home and end keys are used.Eric Melville2001-08-312-4/+20
| | | | Notes: svn path=/head/; revision=82613
* Handle keys consistently.Eric Melville2001-08-092-2/+10
| | | | Notes: svn path=/head/; revision=81331
* dialog(3) -> dialog_noyes(3).Ruslan Ermilov2001-08-071-1/+2
| | | | Notes: svn path=/head/; revision=81232
* Update man page to actually match the source.Eric Melville2001-08-011-55/+73
| | | | | | | PR: 7456 Notes: svn path=/head/; revision=80844
* Properly update cursor position when the list is scrolled.Eric Melville2001-07-262-8/+12
| | | | Notes: svn path=/head/; revision=80375
* Handle keys consistently.Eric Melville2001-07-262-1/+4
| | | | Notes: svn path=/head/; revision=80372
* Improve the interface provided by libdialog. Move a cursor around overEric Melville2001-07-186-105/+280
| | | | | | | | | | the components and trigger actions based on its position. This reduces the need to remember the functions of various keys, and makes the interface more consistant across library. ~ Notes: svn path=/head/; revision=79843
* mdoc(7) police: removed HISTORY info from the .Os call.Ruslan Ermilov2001-07-101-1/+1
| | | | Notes: svn path=/head/; revision=79528
* Fix the type of the NULL arg to execl()Brian Somers2001-07-091-1/+3
| | | | | | | Idea from: Theo de Raadt <deraadt@openbsd.org> Notes: svn path=/head/; revision=79452
* mdoc(7) police: normalize .Nd.Ruslan Ermilov2001-04-181-1/+1
| | | | Notes: svn path=/head/; revision=75670
* MAN[1-9] -> MAN.Ruslan Ermilov2001-03-271-1/+1
| | | | Notes: svn path=/head/; revision=74861
* Properly orient the buttons for yes/no and no/yes so that POLA isJordan K. Hubbard2001-02-241-19/+11
| | | | | | | | | | observed. This fixes the "no/yes box jumps buttons around" problem. PR: gnu/24487 Submitted by: Gerhard Sittig <Gerhard.Sittig@gmx.net> Notes: svn path=/head/; revision=72986
* mdoc(7) police: split punctuation characters + misc fixes.Ruslan Ermilov2001-02-011-2/+13
| | | | Notes: svn path=/head/; revision=71895
* mdoc(7) police: Ft/Vt now accept punctuation-type arguments.Ruslan Ermilov2001-01-121-4/+4
| | | | Notes: svn path=/head/; revision=70974
* Prepare for mdoc(7)NG.Ruslan Ermilov2000-12-271-34/+33
| | | | Notes: svn path=/head/; revision=70395
* Add a new function, dialog_noyes(), for sysinstall to be able toJordan K. Hubbard2000-12-143-13/+45
| | | | | | | | | | present questinos with a different default answer. Somebody submitted a patch to me once which did something this but I lost it (my bad) so I'm just going to re-implement it with thanks to whomever it was who gave me the idea. Notes: svn path=/head/; revision=70004
* mdoc(7) police: Add a missing `.Sm on' request.Ruslan Ermilov2000-11-211-1/+2
| | | | Notes: svn path=/head/; revision=69000
* include <sys/types.h>Brian Somers2000-10-151-0/+4
| | | | Notes: svn path=/head/; revision=67176
* Remove unneded -lmytinfoAndrey A. Chernov2000-09-161-2/+2
| | | | Notes: svn path=/head/; revision=65915
* This is the second half of unbreaking the world build. Add a -DNOHTMLBrian Feldman2000-01-111-0/+2
| | | | | | | | | corollary for -DNOINFO and -DNOMAN. I'll fix this properly (add specific HTML doc magic) in the .mk files later; right now, just unbreak the world. Notes: svn path=/head/; revision=55816
* *draws his sword*Brian Feldman2000-01-111-0/+2
| | | | | | | | | | | | I smite thee, vile buildworld breakage! The story is that these were added to beforeinstall improperly. In our beforeinstall, a full mtree has not been populated. Since the tree is not populated, we explode from missing directories on doc install. It should not be done in beforeinstall (includes) anyway. Notes: svn path=/head/; revision=55813
* This change was mis-identified as the problem, sorry. It appears to beJordan K. Hubbard2000-01-111-0/+4
| | | | | | | an anomaly restricted only to the alpha in FreeBSD-current (weird). Notes: svn path=/head/; revision=55792
* Back out the previous change to install the examples - it breaks the release ↵Jordan K. Hubbard2000-01-111-4/+0
| | | | | | | builds. Notes: svn path=/head/; revision=55791
* Install contents of the TESTS subdirectory to /usr/share/examples/libdialogAlexey Zelkin2000-01-101-0/+9
| | | | Notes: svn path=/head/; revision=55755