summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2007-03-08Update to 0.3.9:wiz2-6/+6
Version 0.3.9 (released 2007-03-02) - In generated code, config.h is pulled in if HAVE_CONFIG_H. - Development changes: changed from CVS to GIT as an experiment. I push my changes to <http://repo.or.cz/w/libtasn1.git>. - Autoconf 2.61 and automake 1.10 is required. Version 0.3.8 (released 2006-11-16) - Fix reading of binary files in asn1Decoding, for Windows. Version 0.3.7 (released 2006-10-19) - When asn1_der_coding encoded a TYPE_NULL and the output buffer is NULL, it would not increment the counter properly, so the size of the required buffer would be off by one. Fixed. Reported by Stephen Wrobleski <steve@localtoast.org>. - Fix configure to respect user-definable flags. Reported by "Diego 'Flameeyes' Pettenò" <flameeyes@gentoo.org>. - The --help and --version outputs from the tools have been improved. Version 0.3.6 (released 2006-08-13) - Fix man pages to use \- instead of - for negative signs (as in "-1"). - Add -I's when building in src/, so that unistd.h etc is found on systems that doesn't have them. - Valgrind isn't used for cross-compilation by default, and there is also --disable-valgrind-tests to unconditionally disable it. - Valgrind is invoked without parameters, put things you like into ~/.valgrindrc instead.
2007-03-08+ GConf2-2.18.0.1, cairo-1.4.0, cdl3-1.2.7 [pkg/35941], digikam-0.9.1,wiz1-7/+14
drraw-2.2a3, gimp-ufraw-0.11, glib2-2.12.10, libxml++2-2.18.0, liferea-1.2.7, nagios-3.0a1, ocaml-ssl-0.4.1 [pkg/35942], silc-client-1.0.4, socat-1.6.0.0.
2007-03-08dialog updated to 1.1.20070227.wiz2-3/+3
2007-03-08Update to 1.1.20070227:wiz3-7/+8
2007/02/27 + add dialog-config script, which provides applications with compile- and link-information for using the dialog library. [pkgsrc: not installed, since library is not installed] + move calls to dlg_trim_string() out of loop in dialog.c, so each string is trimmed once (report by Ivanov Makcim). + modify textbox.c to allow resizing while the search box is presented. This relies on bug-fix in ncurses 5.6 20070224. + use dgettext() rather than gettext() to allow libdialog to use the messages installed for dialog (patch by Vajna Miklos). + modify inputbox to position the cursor initially at the end of any initial-text (request by Klaus Knopper). + add configure --with-valgrind for testing. + add --trace option, for debugging. + add --ascii-lines and --no-lines options to control the way the line-drawing characters are rendered (request by Klaus Knopper). + add --keep-tite option, to override suppression of smcup/rmcup (termcap ti/te) strings which would switch to xterm's alternate screen (Debian #380665). + modify fselect/dselect to use space-character as a completion operator like tab in shells (patch by Yoram Bar Haim). + remove a redundant chunk from checklist.c which reported status a second time if the help-button was pressed but no item-help option was in effect (Andre C Barros). + fix return-status from "dialog --pause" (Debian #409254). + add --mixedform and --mixedgauge dialogs based on patch from Kiran Cherupally. + add some notes on compatibility to the manpage. + add editbox dialog (compatible with Xdialog, Debian #368478). + add dselect dialog (compatible with Xdialog). + remove an incorrect initialization of .text_flen from 2005/12/07 changes, which made all fields in a form editable (Debian #404045). + report error and exit if a filename given for the --file option cannot be opened (report by "Dog Walker"). + make --program-prefix, etc., work in configure script, e.g., to make program install as "cdialog". This does not alter the library name. + add install-bin, install-man (and uninstall) rules to makefile. + updates for configure script macros (originally vile, lynx, xterm): AM_PATH_PROG_WITH_TEST, AM_WITH_NLS, CF_CURSES_CPPFLAGS, CF_CURSES_LIBS, CF_INCLUDE_DIRS, CF_LARGEFILE, CF_MAKEFLAGS, CF_PATH_SYNTAX, CF_SUBDIR_PATH, CF_SUBST, CF_WITH_DBMALLOC, CF_WITH_DMALLOC, CF_WITH_LIBTOOL and CF_XOPEN_SOURCE. + updated config.guess, config.sub > adapted fixes from SuSE package (Werner Fink): + add some limit-checks in dlg_draw_shadow(). + make shadows resizable, using new dlg_move_window() in msgbox.c and yesno.c + add dialog_state.input, use this in end_dialog() to decide whether to close pipe inputs and call _exit(), or simply call exit(). + modify dlg_ctl_size() to check if the reason for failure is because shadows were used; retry in that case without shadows. + add signal catcher for SIGSEGV.
2007-03-08Shortened the code.rillig1-39/+11
2007-03-08Fix PLIST. Bump revision.joerg2-2/+4
2007-03-08Removed extra parentheses around simple return statements, to align withrillig14-439/+439
the current NetBSD version.
2007-03-08Merged the change from NetBSD's 1.51 to 1.52:rillig1-2/+3
EROFS is not a critical error in a "mkdir -p".
2007-03-08Documented the "regen" target.rillig1-3/+3
2007-03-08regenrillig2-88/+273
2007-03-08Added a caveat in the Makefiles section that I just stumbled upon.rillig2-3/+71
Added some questions regarding the tools framework.
2007-03-08Don't create ${.TARGET} unless no further error can occur. The make(1)rillig1-10/+11
manual page says that ${.TARGET} is removed automatically if make is interrupted, but it is _not_ removed if a command fails. This case may happen after an incomplete CVS update (I forgot the -d option). When running "make depends" for the first time, an error message is printed. When running it for the second time, an empty .depends file existed, so the build continued.
2007-03-08Fix HOMEPAGE linksborrill1-2/+2
2007-03-08Sorted and reindented.rillig1-11/+13
2007-03-08Added myself to bulk builds and unprivileged builds.rillig1-2/+3
2007-03-08Fixed these gcc error messages from PR 35948:rillig3-18/+21
Sun.c:8: error: static declaration of 'op' follows non-static declaration Sun.h:40: error: previous declaration of 'op' was here While here, also fixed the pkglint errors.
2007-03-08Using offsetof() instead of a null pointer dereference fixes a g++ errorrillig2-1/+20
message. Fixes PR 35950.
2007-03-08Added a testcase for offsetof. Reorganized the rest.rillig6-18/+54
2007-03-08Also expand X11BASE.joerg1-2/+2
2007-03-08Fixed a g++ error message from PR 35947. Patch provided by Gillesrillig4-13/+38
Dauphin. While here, fixed all pkglint warnings and modernized the buildlink3.mk file.
2007-03-08Fixed AWK interpreter in two scripts. PKGREVISION++rillig1-3/+4
2007-03-08NetBSD has <err.h>. Fixes PR 33036.rillig1-1/+2
2007-03-08Fixed the PLIST. PKGREVISION++rillig2-2/+5
2007-03-08make pwd workpooka2-11/+40
2007-03-07A hint to the real problem is a nice addition to an error message.rillig1-2/+4
2007-03-07Added the BULK_ID to BULK_BUILD_ID_FILE, so that multiple bulk builds canrillig1-2/+2
share the same pkgsrc tree in read-write mode. Fixes PR 35939.
2007-03-07Merge patch-dw from thunderbird to fix build on DragonFly.joerg2-1/+15
2007-03-07Added the flags to control diagnostics.rillig1-1/+7
2007-03-07Fix build on DragonFly as RNG_RNGInit was calling itself due to badjoerg2-1/+15
linkage. I love platform dependent magic in each Makefile.
2007-03-07Replaced sed(1) and mv(1) with the SUBST framework.rillig1-14/+9
2007-03-07note thunderbird/firefox/seamonkey pkgrevision bumpdmcmahill1-1/+9
2007-03-07Dynamically generate the part of the PLIST for libfreebl. This is becausedmcmahill19-83/+96
the exact names of the freebl libraries depends on the platform and they have a habit of changing even on minor releases. This causes these mozilla packages to be broken quite a lot on platforms other than NetBSD/i386. Hopefully this fix will last longer than previous ones. pkgrevision bumps all around.
2007-03-07Fixed the quoting for SUBST_VARS.*. Now every character gets replacedrillig1-2/+5
properly. The regression test passes.
2007-03-07Added a regression test for the SUBST framework, especially the newlyrillig3-1/+38
introduced SUBST_VARS.
2007-03-07Bah, not my day. Add the DragonFly patches as rest of the last commit.joerg4-0/+70
2007-03-07Allow this to build on DragonFly. Complete untested, feedback is welcome.joerg4-492/+568
If it is provided, it might be worth to fix the distribution name :-)
2007-03-07Fixed a segmentation fault on IRIX. Although IRIX provides therillig5-6/+87
REG_STARTEND macro, it doesn't work as expected. A simple test case is: printf '\0\n\0\n' | nbsed /a/d This test does not yet work as expected, but at least it doesn't cause segmentation faults anymore. Handling of '\0' bytes must be improved.
2007-03-07Fix booost::regex test. This feels like a deja-vu, not sure where I hitjoerg3-4/+16
this before. Most likly a broken upstream macro.
2007-03-07Fix build on DragonFly. XXX Make this use devel/libsigsegv.joerg2-1/+33
2007-03-07Let this also build on DragonFly.joerg14-50/+76
2007-03-07Fix build on systems which have pw_change but not _PASSWORD_CHGNOW.joerg2-1/+18
2007-03-07No Python 2.2 support.joerg1-2/+2
2007-03-07Don't assume time_t and long are the same (on sparc64, they aren't).gdt4-2/+49
Fixes ascii timestamps in greylist.db, but as this is solely for the benefit of humans looking at the file functionality is unchanged.
2007-03-07Sync PLIST and build instructions: force it to believe thatjoerg3-14/+25
texi2dvi and texi2html exist, so that configure believes that the documentation is wanted. Afterwards just patch the Makefile to not really use those as intended according.
2007-03-07Use INSTALLATION_DIRS to create directories.reed1-2/+3
This is for PR #35945.
2007-03-07IRIX has <alloca.h>.rillig1-1/+2
2007-03-07note update of p5-Net-RawIP to 0.21_03gson1-1/+2
2007-03-07Fix build on systems without wordexp(3). While wordexp returns thejoerg2-1/+15
pattern if nothing is matched, glob(3) by default considers that an error.
2007-03-07Updated to version 0.21_03 as version 0.2 no longer builds ongson2-8/+10
NetBSD-current. Changes since 0.2: 0.21_03 Fri Sep 15 11:26:17 IDT 2006 - Received official maintainership from Sergey - In Makefile.PL check for the location of the header file, report if it could not be found. 0.21_02 Sep 10 2006 - Cleaning up the C code (indentation) - More tests - Cleaning up the documentation, replacing the bad English of Sergey with the bad English of Gabor. - new() dies if wrong or duplicate protocols given All by Gabor Szabo 0.21_01 Sat Sep 9 23:59:07 IDT 2006 - Cleaning up many warnings that were probably due to using gcc 4+ - Cleaning up several assignment errors that were probably due to gcc 4+ - Lots of cleanup in the Perl code - Add tests All by Gabor Szabo
2007-03-07Fixed a GNU awk warning about quoting.rillig1-2/+2