summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2000-06-01Pull in some of the libtool-current changes to handle -Wl linker options,rh3-2/+33
making runtime library path settings work again. Bump version to 1.3.5nb1
2000-06-01Fix HOMEPAGErh1-2/+2
2000-05-31Update libtool to 1.3.5. Changes are mainly bugfixes. This also fixesrh4-9/+35
PRs 9902 by Geoff C. Wing and 10106 by Dave Sainty.
2000-05-30DEPEND -> DEPENDSdmcmahill1-2/+2
2000-05-30fix path to bsd.pkg.mkdmcmahill1-2/+2
2000-05-30update to 1.0.9drochner6-29/+45
(The ChangeLog is not useful.)
2000-05-29Update boost to 1.14.3 since old distfile is gone from master site.jlam6-376/+14
* Remove limits and memory. Just depend on SGI STL package which has much better versions of these files. * Minor fixes and enhancements in the documentation.
2000-05-27Prevent infinite loop in mkid if it encounters an assembly source file whichsommerfeld2-5/+14
ends in a preprocessor directive not followed by a newline. (test case: rev 1.1 of syssrc/sys/lib/libkern/arch/arm26/byte_swap_2.S) Patch mailed to GNU maintainer; however, last release of this package was ~4 years ago, so..
2000-05-26Version 3.79hubertf3-7/+14
* GNU make optionally supports internationalization and locales via the GNU gettext (or local gettext if suitable) package. See the ABOUT-NLS file for more information on configuring GNU make for NLS. * Previously, GNU make quoted variables such as MAKEFLAGS and MAKEOVERRIDES for proper parsing by the shell. This allowed them to be used within make build scripts. However, using them there is not proper behavior: they are meant to be passed to subshells via the environment. Unfortunately the values were not quoted properly to be passed through the environment. This meant that make didn't properly pass some types of command line values to submakes. With this version we change that behavior: now these variables are quoted properly for passing through the environment, which is the correct way to do it. If you previously used these variables explicitly within a make rule you may need to re-examine your use for correctness given this change. * A new psuedo-target .NOTPARALLEL is available. If defined, the current makefile is run serially regardless of the value of -j. However, submakes are still eligible for parallel execution. * The --debug option has changed: it now allows optional flags controlling the amount and type of debugging output. By default only a minimal amount information is generated, displaying the names of "normal" targets (not makefiles) were deemed out of date and in need of being rebuilt. Note that the -d option behaves as before: it takes no arguments and all debugging information is generated. * The `-p' (print database) output now includes filename and linenumber information for variable definitions, to help debugging. * The wordlist function no longer reverses its arguments if the "start" value is greater than the "end" value. If that's true, nothing is returned. * Hartmut Becker provided many updates for the VMS port of GNU make. See the readme.vms file for more details.
2000-05-26Update glib to 1.2.8. Overview of changes:rh5-21/+20
* GArray zero initialization bug fixed * Fix for upper bound calculation of formatted strings * Improved GCC detection * AIX dynamic modules fix to retrive symbols from shared libraries for the main program. * Miscellaneous other minor bug fixes
2000-05-24bump to 0.16, which includes Jason Thorpe's mutex changesexplorer4-7/+10
2000-05-24Correct path for distfilejlam1-2/+2
2000-05-24Add and enable sgi-stl and sgi-stl-docsjlam1-1/+3
2000-05-24SGI Standard Template Library Programmer's Guidejlam5-0/+375
2000-05-24SGI Standard Template Libraryjlam8-0/+164
2000-05-21CVS has moved.kim2-6/+6
2000-05-19Update to 15.0bl2.wiz13-194/+35
Changes: Bugfixes, better man page, code cleanup. Fixes pkg/10153.
2000-05-18Update to 1.4.1. Changes include:mjl2-4/+4
New intrinsic function: strreplace. SLang_roll_stack and SLang_reverse_stack functions made public. SLang_free_function added. src/slrline.c: Keybindings for ESC O A, etc added. src/slsmg.c: SLsmg_write_nstring: avoid many loops if an extremely large value is passed (> 0x7FFFFFFF). src/slregexp.c made thread safe src/slsmg.c: Cursor was not always properly positioned when after SLsmg_touch_lines called. If terminal does not have erase to eol capability, then use spaces. doc/tm/strops.sl: doc for strcat updated to reflect its ability to concatenate N strings. src/slsmg.c: bug involving SLsmg_set_screen_start fixed. src/slparse.c: parser was failing to catch misplaced `}'.
2000-05-14Fix some of the patches - some RCS IDs did sneak in!hubertf4-37/+18
Need a smarter pkgdiff...! - Hubert
2000-05-12Remove obsolete "corba" category.tron1-2/+2
2000-05-12Install a library containing implementation objects. Make this actuallyjlam8-94/+522
usable by installing <limits> and <memory> which implement parts of the Standard C++ Library missing from the NetBSD toolchain.
2000-05-10Make sure text files are installed stripped of CR.jlam1-3/+9
2000-05-10Add and enable gtljlam1-1/+2
2000-05-10GTL - C++ graph data structure library based on the STLjlam7-0/+168
2000-05-09Add and enable boost.jlam1-1/+2
2000-05-09boost 1.14.1: free C++ libraries designed to work well with standard libsjlam5-0/+189
2000-05-07Jump to PTL-2.1.2msaitoh6-38/+17
Changes between PTL2-current-990622 and PTL-2.1.2 * support NetBSD/arm32. * fix a configure.in bug which fails if $MACHINE != $MACHINE_ARCH. * src/io_udp.c (send_timedwait, sendto_timedwait, sendmsg_timedait): While underlying system calls return with EWOULDBLOCK, continue writing. * src/signal.c (_pthread_signal_init): On system that PTL can set the stack pointer without using sigstack(), SIGUSR2 can be used for user's purpose. * src/internal.h (END_CRITICAL): fixed: signal interruptions are lost in certain situation theoretically. * src/io.c: use O_NONBLOCK rather than O_NDELAY in SunOS5. * Util/Makefile.in: version number of libPTL.so is changed to 2.0. * src/specific.c (pthread_key_create, pthread_setspecific): if fail to allocate the memory, returns ENOMEM. * src/cond.c, src/mutex.c, include/sys/types.h: pthread_mutex_t and pthread_cond_t are changed from `pointer to struct' to `struct'. * src/cond-attr.c, include/sys/types.h: pthread_condattr_t is changed from integer handle to struct. * src/cond.c, src/mutex.c, src/pthread.c: pthread_{mutex_,cond_,}setname_np returns ENOMEM if malloc() returns NULL. * src/cancel.c (pthread_setcancelstate): if FLAG_CLEANUP_HANDLER is set, do not call pthread_exit() even if PTHREAD_CANCEL_ENABLE is specified and the thread is already cancel requested. (pthread_testcancel): similar to above. * src/internal.h (FLAG_CLEANUP_HANDLER): this flag shows that the thread is currently executing cleanup handlers. * src/sched.c (after_csw): Clear FLAG_DO_CANCEL flag before executing cleanup handlers to prevent entering executing cleanup handlers loop. * src/io.c (_pthread_pdb_iostat): Implement `iostat' command into PDB.
2000-05-05Update kdevelop to 1.2wulf9-248/+339
2000-05-04 * splithubertf10-210/+180
* don't change the name of cbreak to crmode if sun is not defined Hint by Brett Lymn <blymn@baesystems.com.au>, sent to me by Thomas Klausner.
2000-05-02Remove patches to deal with two bugs involving configure's handling ofdanw12-125/+16
INSTALL which have both been worked around in bsd.pkg.mk now.
2000-05-02Update to libgtop-1.0.7. Incorporate fix submitted by R. C. Dowdeswellfredb15-146/+73
in PR pkg/8691, to make it build on m68k. Also, kvm_uread() -> kvm_read(). This may fix the other problems alluded to in the PR. LibGTop-1.0.7 is a bug fix release, no details available. LibGTop-1.06 incorporated some *BSD fixes (including some pkg patches), and updated the reference manual somewhat.
2000-05-01ignore this pkg on -current systems where <getop.h> is presenthubertf1-1/+5
2000-04-26Update to pcre-2.08, notable changes:kim2-4/+4
1. When startoffset was not zero and the pattern began with ".*", PCRE was not trying to match at the startoffset position, but instead was moving forward to the next newline as if a previous match had failed. 2. pcretest was not making use of PCRE_NOTEMPTY when repeating for /g and /G, and could get into a loop if a null string was matched other than at the start of the subject.
2000-04-26Place the distfile in its own unique directory, since maintenanceagc2-3/+5
release numbers are not added to the distfile name.
2000-04-21Avoid compile-time warnings caused by redefinition of curses.h macros.bouyer2-4/+14
2000-04-21Update global to 3.55sakamoto10-40/+84
Fixes pkg/9668 by nagae@tk.airnet.ne.jp What's New since 3.54 The -g and -s option are optimized. Above serious bug is fixed. What's New since 3.5 Ported to Cygwin tools for WIN32 environment. (You need Cygwin tools Release B20.1) Gozilla ported to WIN32 environment.(You need Borland C compiler) Gtags.el was improved. Ported to Solaris. What's New since 3.44 C++ supported. XEmacs supported. Ported to WIN32 environment.(You need Borland C++ compiler 4.5 or 5.0)
2000-04-21install manpagehubertf2-2/+6
2000-04-20Added a patch to address pkg/9941.elric2-1/+12
2000-04-20add devel/cscope.itojun1-1/+2
"interactive C program browser"
2000-04-20remove $Id$ in patch.itojun2-11/+6
2000-04-20cscope 13.0, interactive C program browseritojun8-0/+255
2000-04-18re-release 0.15 -- minor typo in a source fileexplorer1-2/+2
2000-04-18bump up to 0.15 to implement p{read,write}{,v}explorer2-4/+4
2000-04-18Update ddd to 3.2.1. Changes are some minor bug fixes and major LessTifrh2-4/+4
bug workarounds: - [LessTif] Helpers (such as uncompressing the DDD manual) works fine. - [LessTif] The `Print' dialog (esp. printing to file) works fine. - [LessTif] Restarting DDD (while saving settings) works fine. - [LessTif] Small fixes for building with LessTif on SGI. - [Perl] In the data display, Perl hash keys are properly quoted. - [Ladebug] More Ladebug variants are supported. - [Ladebug] `Edit -> Ladebug settings' should work. - A string pointer error on 64 bit machines has been fixed. - Minor bugs with clustered displays have been fixed. - DDD makes more attempts in locating the initial main function. - DDD PostScript documentation can be printed on multiple pages per sheet.
2000-04-18Update pth to 1.3.5. According to the author, "this is a bugfix releaserh2-5/+5
which fixes a nasty -related bug introduced in 1.3.4". No further information is available.
2000-04-17Update pth to 1.3.4. Changes are a lot of back-ported bugfixes from therh4-22/+19
Pth development branch.
2000-04-14bump to 0.14 -- handle signals a little better. Bugs are still there, but ↵explorer2-4/+4
at least they _work_ now.
2000-04-12fix path to Qt.dmcmahill1-3/+4
2000-04-12Fix function prototype that differs with our current version of gdk andrh2-1/+16
make this compile again. Thanks to Hubert and his scripts for discovering this.
2000-04-07bump to 0.13 -- fixes sigaction() brokennessexplorer2-4/+4