Next | Query returned 88 messages, browsing 51 to 60 | Previous

History of commit frequency

CVS Commit History:


   2014-07-18 13:39:11 by Filip Hajny | Files touched by this commit (3)
Log message:
Update rudiments to 0.47.

Changes:
- fixed possible null-dereference in xmldomnode::safeAppend
- added charstring::inSetIgnoringCase
- xmldomnode::setAttributeValue does nothing when the null node is
  referenced now
- fixed a codetree bug that could cause indentation to attempt to go
  negative when using an unsigned number
- added a configure test to see if -Wno-format is needed
- configure tests for mlockall/munlockall attempt link now
- added sys/types.h before sys/un.h in sys/un.h test for older freebsd
- implemented stubs for pure virtual methods of client and server classes so
  instances of them could be created to attach already-open file descriptors
- unified usage of select/poll and prefer poll
- pushed all select/poll-related code into listener class
- removed problematic and unused useListener-related methods in
  filedescriptor class
- epoll is used in place of select/poll for systems that support it
- kqueue is used in place of select/poll for systems that support it
- consolidated getpagesize() calls to use sys::getPageSize()
- added detection and support for __vsnprintf for platforms that have
  that instead of vsnprintf
- added cancel and raiseSignal methods to the thread class
- fixed datetime memory leak
- added xmldomnode::clone method to clone a node
- renamed variablebuffer to bytebuffer
- renamed rawbuffer to bytestring
- refactored linkedlist
- added singlylinkedlist class
- added sort, detach, move and insert methods to linkedlist classes
- fixed file::open using O_CREAT without O_EXCL on windows
   2014-05-21 16:52:07 by Filip Hajny | Files touched by this commit (1)
Log message:
Use PTHREAD_AUTO_VARS, fixed pthread support in depending packages.
Bump PKGREVISION.
   2014-04-28 14:15:20 by Filip Hajny | Files touched by this commit (2)
Log message:
Fix build with -Woverloaded-virtual and Clang.
   2014-03-31 16:42:20 by Filip Hajny | Files touched by this commit (7) | Package updated
Log message:
Update rudiments to 0.46.

Changelog:

0.46
 - updated filedestination::open to take a permissions parameter
 - added deployment projects for windows
 - tweaked make.batch install target to install 32-bit files under
   C:\Program Files (x86)
 - wrapped waitpid() in process class
 - added #define _WINSOCKAPI_ before windows.h includes to prevent
   redefintion of winsock defs later
 - fixed O_RDONLY detection on windows in file::openInternal
 - fixed shared memory segment sizing error on windows
 - fixed O_CREAT without O_EXCL bug on windows
 - fixed backwards loaddependencies flag in dynamiclib for windows
 - added file::eightDotThree
 - added charstring::stripSet and updated charstring::strip to return
   true/false if stripping occurred or not
 - removed stubs for unimplemented classes

0.45
 - got the directory class working on windows
 - got the semaphoreset class working on windows
 - implemented passwd/groupentry::getSid and an internal id-name-sid map
   for windows
 - removed meaningless groupentry::getPassword
 - improved filesystem class implementation for Windows significantly
 - added a test for the memorymap class
 - got the memorymap class implementation working on Windows
 - got the sharedmemory class working on windows
 - added support for microseconds to the datetime class
 - build-tweaks for mingw32
 - added process::spawn that maps more cleanly on windows than fork/exec
 - added thread class
 - added send/receiveSocket methods to filedescriptor class for systems like
   Windows that distinguish between sockets and other file descriptors
 - improved file class implementation for Windows
 - fixed a bug that caused all connect-with-timeout calls to fail
 - fixed a bug that caused permissions::setFilePermissions to fail on
   directories

0.44.1
 - configure scripts attempts link for various _r functions now to catch
   cases where they're defined in the headers but not present in the library
 - tweaks for dlopen/dlsym on linux libc5
 - reordered netinet/in.h and netinet/tcp.h includes for linux libc5
 - configure script tweaks for OSR500
 - extern "C" wrapper around sys/times.h for OSR500
 - added xmldomnode::append/insertTag methods

0.44
 - fixed inet_aton test to attempt link, not just compile
 - fixed vsnprintf test to work on arm linux
 - filedescriptor::printf now uses vdprintf, if available, if writes are not
   being buffered, and vasprintf, if available, if writes are being buffered
 - fixed a memory leak in filedescriptor::printf
 - added multiarch detection
 - applied Simon Martin's getenv-related patch to reset errno and allow
   getenv to return NULL - fixed a situation where an infinte
   loop could occur if getenv returned NULL and the most recent
   error from another system call was EINTR
 - added missing print() for const char *'s in linkedlistutils
 - tweaks for OSR505
 - a few xmlsax optimization fixes
 - renamed *Data methods to *Value in linkedlist and dictionary classes
 - removed print methods and unlikely-to-be-used static methods from
   *entry classes
 - refactored the static convenience methods of the *entry classes
 - refactored xattr code a little to make it smaller
 - removed static methods from filesystem class to make it smaller
 - removed some static methods from file class to make it smaller
 - removed the clientserverfactory class
 - slight refactoring of linkedlist and dictionary classes
 - various process class fixes for Windows

0.43
 - added a workaround for platforms that don't support
   blocking/non-blocking modes for sockets
 - added *printf wrappers to charstring, filedescriptor and stringbuffer
   classes
 - added test/include for sys/signal.h for platforms that need it
 - added support for uadmin with int vs. char 3rd argument
 - added snooze and retry if fork fails with EAGAIN
 - moved safePrint and printBits methods into the filedescriptor class
 - added a test and handling for fsetxattr with non-const third parameter
 - "hid openssl" by abstracting SSL types and moving includes into \ 
.cpp files
 - fixed erroneous end-of-buffer address when creating a variablebufferis
   with initial contents
 - added option to disable string cache in xmldom class
 - added "data" member to xmldomnode class for attaching app-specific data
 - improved codetree speed
 - fixed a "char" on ARM issue
 - fixed a longstanding issue where variablebuffers could get extended
   too much sometimes
 - renamed system class to sys to avoid collisions
 - added -Werror to configure-time tests for older systems where g++
   doesn't return an error for an implicitly defined function
 - removed the rudiments namespace for compatibility with older compilers
 - replaced a bunch of unsigned long and long with [u]int(32|64)_t
 - removed the timezonefile class
 - renamed mutex class to threadmutex to avoid collisions
 - wrapped setsid() function
 - refactored and simplified dictionary and linkedlist classes
 - if thread detection fails it just disables threads now rather than
   erroring out
 - thread support is displayed in configure summary
 - refactored xmldomnnode::print() methods, added one to write to
   a filedescriptor
 - renamed memorypool methods malloc, calloc and free to allocate,
   allocateAndClear and deallocate to avoid collisions on
   platforms that define malloc and calloc using macros
 - fixed lots of cases where const char *'s were being deleted
 - renamed *serversocket to *socketserver
 - renamed *clientsocket to *socketclient
 - added 64-bit build support for Windows
 - refactored daemonprocess class and moved its methods into the process class
   2014-02-13 00:18:57 by Matthias Scheler | Files touched by this commit (1568)
Log message:
Recursive PKGREVISION bump for OpenSSL API version bump.
   2013-09-17 23:09:50 by Joerg Sonnenberger | Files touched by this commit (3)
Log message:
Don't bail out with Clang due to a unused private member. Fix infinite
loop. bump revision.
   2013-09-17 13:58:57 by Filip Hajny | Files touched by this commit (4)
Log message:
Fix build with -Woverloaded-virtual.
Add missing openssl & pcre dependencies. Bump PKGREVISION.
   2013-09-14 11:14:08 by Filip Hajny | Files touched by this commit (5) | Package updated
Log message:
Update rudiments to 0.42.

Changes
-------------------------
0.42 - made a "char" array in the charstring classh explicitly \ 
"signed char"
                for arm and similar platforms where "char" is actually
                "unsigned char"
        fixed variadic macros in codetree class for MSVC
        fixed rpm->rpmbuild in installation docs

0.41 - fixed a few bugs in the codetree class and improved its debug
        added comments to codetree class header
        added new search paths and default prefix for syllable
        initialized an uninitialized variable in clientsocket
        added support for syllable os

0.40 - fixed -pthread annoyance
        added -Werror to default build
        fixed various issues revealed by -Werror
        fixed hostentry::getAddressString() for numbers greater than 127
        fixed bugs that could lead to a crash when using the hostentry class
                with NULL hostnames
        reads that error out with EAGAIN are treated as successful reads of 0
                bytes now
        all sockets are manually set to blocking mode after creation now
        sockets created by accept() are set to the blocking/non-blocking mode
                of the socket that was accepted on
        fixed charstring::safeCopy to copy the NULL terminator
        made charstring::copy NULL-safe
        refactored windows make.bat script
        made crypt class salt NULL-safe

0.39 - filedescriptor::getPeerAddress returns NULL now for non-inet sockets
        added charstring::safeCopy methods
        made regularexpression::getSubstring* methods return const char *'s
        fixed a bug where xmldomnode::deleteAttribute() on a non-existent
                attribute name would crash
        added xmldomnode::getTree and xmldomnode::print methods
        added codetree class
        fixed a longstanding memory leak in dictionary::clear()

0.38 - included some contributed updates to chat, charstring and modemclient
        added several more wrappers to system class
        refactored configure/make for non-gnu make compatibility
        upated passFileDescriptor to dynamically allocate the control buffer
                for OS X 10.7 whos CMSG_LEN ultimately calls a function
        updated msvc build to create Release code rather than Debug by default
        added posix analogs (rewind, skip and read) to directory class
        updated filedescriptor debug so debugging of the buffering can be
                enabled/disabled
        integrated patches from Neowiz for:
                using -g3 if available when --enable-debug is specified
                testing the result of getaddrinfo for any non-zero result
                        when checking for EINTR, not just EAI_SYSTEM,
                        and also to reset errno between tries
                clientsocket to use WSAConnect and friends on windows
                disabling code that uses AF_UNIX sockets outright for windows
                inetserversocket::listen() to reuse addresses
        added process::exitImmediately
        updated error::getErrorString() to be thread safe when it uses
                strerror_r or strerror_s internally
        fixed charstring::isInteger/isNumber to return false when the string
                passed in is either - or . without any actual number
        changed longs in snooze class to uint32_t's

0.37 - updated logger to exclude : if header isn't supplied
        updated logger not to print double-returns after each log message
        added file::createPipe()
        fixed net-to-host and host-to-net byte order conversions for 64-bit
                integers on windows
        fixed charstring::copy that I'd broken in 0.36
        fixed missing [] in a delete in filedescriptor::read() with terminator
                that could cause leaks and corruption
        fixed a leak in filedescriptor::read() with terminator that could
                occur when it fell through with an error, timeout or 0-byte
                read
        applied Georgiy Kirichenko's fix to the safePoll call in
                filedescriptor::readFileDescriptor() - swapped true/false
                arguments so it would wait using POLLIN
        added xmldomnode::getPosition()
        fixed display of seconds from datetime::getString()
        fixed optimum buffer size calculation in xmlsax
        fixed several dlclose()-related bugs

0.36 - various fixes for SCO and Ultrix
        renamed some methods to avoid collisions with macros
        modified methods that take or return internal structures to take or
                return void pointers instead
        added charstring::replace methods
        renamed all .C files to .cpp for windows
        added msvc project and got most classes building natively on windows

0.35 - added ( to set of chars to capitalize after
        added methods to control whether semaphoreset operations are retried
                after they have been interrupted by a signal
        added charstring::findFirstOrEnd
        added character::inSet
   2012-10-31 12:19:55 by Aleksej Saushev | Files touched by this commit (1460)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
   2011-10-28 13:23:22 by Filip Hajny | Files touched by this commit (4) | Package updated
Log message:
Updated devel/rudiments to 0.34.

Changes in 0.34
* fixed some STATFS/FSTATFS that needed to be CHAR-versions of the calls
* added test for utime and utime.h
* utime is used on platforms that don't have utimes
* updated process class methods to return -1 and set ENOSUPP for
  process-group related calls on systems that don't have the
  concept of process-groups
* added a call to select() instead of poll() for file-descriptor passing
  for systems that don't support poll()
* added tests for timespec in various header files
* added test for dlopen
* updated configure script not to outright disable classes if the
  functions they're dependent on aren't found, but rather for
  the methods to return erros and set errno to ENOSYS
* added netapi32 on mingw
* updated vfstab detection to reflect minix/haiku-style rather than just
  haiku
* moved non-member variables and methods into daemonprocess class and
  its private class
* updated xmldomnode to output xml entities rather than raw characters
* fixed a bug that caused numeric xml entities greater than 127 to get
  set to 127
* updated mutex class to show a consistent interface on all platforms
* updated configure script to detect pthreads properly on minix
* cleaned up semaphoreset class
* lots of mingw32 compatibility fixes
* wrapped exit() in process class

Changes in 0.33
* removed configure tests for strlcpy and strlcat
* added test for pvt->_translatebyteorder to hostToNet/netToHost for
  64bit numbers
* made filedescriptor::hostToNet/netToHost public and static, moved
  translatebyteorder flag test out of them
* serviceentry and inet*socket classes use
  filedescriptor::hostToNet/netToHost rather than htonl/htons
* added charstring::printBits methods
* xmlsax class uses optimizations even when not using mmap now
* updated linkedlist class a good bit
* applied Renat Sabitov's logger patch
* fixed some bugs where filesystem.C wouldn't compile on platforms where
  statfs can return some strings
* haiku port
* implemented bswap for systems with nothing like it
* added #ifdef's in configure script for all header files
* fixed detection of several things on modern openbsd systems
* added definitions of (u)int(8|16|32|64)_t for systems that don't have
  them
* added randomnumber::getSeed() that uses /dev/urandom if available
* environment class prefers putenv to setenv to work around a memory
  leak that can occur when using setenv to set an environment
  variable over and over
* fixed 2 memory leaks in environment class
* fixed memrchr and strpbrk tests in configure script
* fixed a logger dependency on the permissions class in features.mk.in
* updated environment class to use malloc and free
* fixed reference-after-free by putenv in environment class
* applied patches from Renat Sabitov
* updated signalhandlers to have (void *)(int) signature
* added charstring::subString without an end parameter
* applied patch by Claudio Freire
* changed several %lf's to %Lf's in charstring long double parsers
* fixed uninitiaized nodename/nodevalue in xmldomnode
* fixed unterminated buffer after clear in stringbuffer
* removed "rebuild" target from all Makefiles
* added charstring::capitalize method
* made stringbuffer::terminate append a \0 unconditionally
* made stringbuffer::clear() terminate the buffer at position 0
* fixed a bug where xmldomnode::getFirstXXX() could crash if there was
  no first XXX
* added xmldomnode::moveChild
* fixed uninitialized _grp in groupentry class
* regularexpression class uses pcre_free rather than delete to free
  pcre_extra block now
* fixed printf %lld's in timezonefile class
* made several unsigned shorts use uint16_t in charstring class
* changed integerLength to return uint16_t rather than int
* added man page to rpm spec file

Changes in 0.32
* xmlsax does "sequential" and "only-once" hints when \ 
reading the file
* xmlsax/dom classes use optimal read and write buffers now
* added DESTDIR= to rudiments.pc.in
* added charstring::httpUnescape
* fixed a bug in datetime that would cause TZ to remain after doing a
  timezone conversion if TZ was unset to begin with
* fixed a bug in regularexpression that could cause a double-free

0.31 - added OSSwapLittleToHost/OSSwapHostToLittle for Mac OS X
* modified environment::clear() for mac os x
* regularexpression wasn't setting the match count correctly, fixed that
* added charstring::subString() method
* added missing lingerOnClose(), fixed dontLingerOnClose()
* added base64 encode/decode methods
* fixed charstring::parseNumber() for unsigned int's
* added /opt/csw to configure script's search path
* fixed a memory leak in xmldom::unCacheString()

Changes in 0.30
* changed commandline::value() to commandline::getValue()
* fixed a memory leak in dictionary
* added setHour/Minute/Second/etc. methods to datetime
* fixed readdir_r vulnerability
* added support for either "-arg value" or "--arg=value" to \ 
commandline
* added support for break and control characters to chat class
* added print method to environment class
* added close-on-exec methods to filedescriptor class
* added clear method to environment class
* made all methods in environment class static
* added wrappers for strspn/strcspn/strpbrk functions to charstring class
* fixed bug where datetime would set wrong timezone if it is initialized
  with a combined zone name like PST8PDT
* added directory::getChildCount()
* added datetime::validDateTime()
* xmldom class stores all strings found in the xml file in a stringlist
  and stores pointers to them in the xmldomnodes to reduce
  memory usage in xml files that have lots of duplicated strings
* added configure tests for dirfd/DIR.dd_fd/DIR.d_fd
* initialize addrinfo struct pointer to NULL in inetclientsocket.C

Next | Query returned 88 messages, browsing 51 to 60 | Previous