pkgsrc-WIP-cvs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: wip/libupnp



Module name:    wip
Committed by:   obache
Date:           Tue Jun 12 04:27:51 UTC 2007

Modified Files:
        wip/libupnp: Makefile PLIST distinfo
        wip/libupnp/patches: patch-aa patch-ac patch-ae patch-ag
Removed Files:
        wip/libupnp/patches: patch-ab patch-ad

Log Message:
Update libupnp to 1.6.0rc1.
*******************************************************************************
Version 1.6.0
*******************************************************************************

2007-06-10 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * More fixes to Mac OS X and NetBSD from Rene Hexel:
        [pupnp-devel] NetBSD & Mac OS X packages and patches

          Okay, I found a couple more things.  I have attached a patch file
        against the trunk (version 206) that make the repository code compile
        and run on both Mac OS X and NetBSD.

        This fixes the following issues:

           upnp/src/api/upnpapi.c: SIOCGIFCONF didn't work properly, use
        getifaddrs() instead (on BSD systems).

          threadutil/src/ThreadPool.c: priorities only work if
        _POSIX_PRIORITY_SCHEDULING is defined (and greater than 0).

          threadutil/src/LinkedList.c and threadutil/src/iasnprintf.c: use
        stdlib.h instead of malloc.h on all BSD systems (not just FreeBSD).
        This is important, because malloc.h does not exist on Darwin/Mac OS X.

          Cheers
              ,
           Rene

2007-06-09 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * [pupnp-devel] NetBSD & Mac OS X packages and patches.
        Rene Hexel's <rh%netbsd.org@localhost> patch to compile in NetBSD and 
Mac OS X.

2007-05-26 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Updated the macro files acx_pthread.m4, ax_cflags_gcc_option.m4,
        ax_cflags_warn_all.m4, m4/ax_cflags_warn_all_ansi.m4,
        m4/type_socklen_t.m4.

2007-05-26 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Fixed an issue with the instalation of the file upnpdebug.h. Since
        the last modifications that removed the macro DEBUV_ONLY, this file
        must be installed even on a non-debug build.

2007-05-26 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * SF Bug Tracker [ 1711325 ] Bad DestAddr in Upnp_Discovery structure
        Submitted By: Bob Ciora
        The field DestAddr of the structure Upnp_Discovery is now a full
        SOCKADDRIN instead of a pointer to SOCKADDRIN. Commented code sugests
        that in a previous moment, the function ssdp_handle_ctrlpt_msg() did
        not use a postponed thread to call ctrlpt_callback(). Now the code
        uses a thread, and most probably the original data would get lost and
        the pointer would point to an invalid memory region. This fix caused
        an interface change in the library and the minor library version was
        bumped. Also, the libtool library numbers were changed accordingly.

2007-05-26 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Added support for the Basic Device
        (http://www.upnp.org/standardizeddcps/basic.asp) as suggested by
        Titus Winters.

2007-05-25 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Fixed the file libupnp.pc.in to generate a correct path for the
        include files.

2007-05-25 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Removing the Dbg_Level, InitLog, SetLogFileNames and CloseLog
        defines. These were just aliases, no reason to keep them.

2007-05-25 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Changed the comments of the include files that expose the UPnP API
        to use only C89 comments and no C99 comments.

2007-05-24 Nektarios K. Papadopoulos <npapadop(at)inaccessnetworks.com>
        * Added tvcombo sample that demonstrates coexistence of a device and a
        control point in the same application.

2007-05-24 Nektarios K. Papadopoulos <npapadop(at)inaccessnetworks.com>
        * SF Tracker FR [ 1570020 ].
        * Enable both device and control point in the same application. Resolve
        deadlock in the SSDP processing threads.
        * Fix Threadpool expansion condition.
        Thanks to Siva Chandran P. for the original patch.

2007-05-24 Nektarios K. Papadopoulos <npapadop(at)inaccessnetworks.com>
        * Modified tvdevice (control and picture) service descriptions to make
        compatible with WinXP/IE control point. 'in' arguments must appear 
before
        'out' arguments in argument list.
        Thanks to Martin Tremblay for pointing out the solution originally 
provided
        by MORIOKA Yasuhiro.

2007-05-21 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * More MSVC fixes, using XINLINE instead of inline, MSVC has troubles
        with inline. Thanks to David Maass for reporting.
        * Changed XINLINE to UPNP_INLINE.

2007-05-21 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Added the file build/inc/msvc/inttypes.h. This file is for use with
        MSVC only, because it does not provide C99 compatibility.

2007-05-18 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Removed all uses of the DEVICEONLY(x) macro.

2007-05-17 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Removed all uses of the DBGONLY(x) macro. A static inline empty
        function now is used and the compiler takes care of optimizing it out.

2007-05-17 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Fixed a bug in UpnpPrintf, function could call va_start() and return
        befor calling va_end().

2007-05-15 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * EXPORT_SPEC missing on some declarations in ixml/inc/ixml.h.
        Thanks to David Maass.

2007-05-15 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * sizeof is unsigned, so %zu is more adequate than %zd.

2007-05-15 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Using an invented printf directive PRIzu that on MSVC
        expands to "lu", and on normal C99 compilers expands to "zu".

2007-05-15 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Rewrote raw_find_str. Now it no longer uses strcasestr(), but it
        transforms the first input buffer into lowercase.

2007-05-08 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Fix for debug printf format strings. size_t are not expected
        in a string format like "%.*s".

2007-05-08 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Added inttypes.h as a header requirement in configure.ac.

2007-05-11 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
        * Moved upnp_tv_ctrlpt and upnp_tv_device executables from folder
        upnp to folder upnp/sample. Moved folder upnp/sample/tvdevice/web
        to folder upnp/sample/web. This way, if someone compiles the
        tarball and executes upnp_tv_device from its creation directory,
        there will be no error -108 for not finding directory web.


To generate a diff of this commit:
cvs -z3 rdiff -u -r1.12 -r1.13 wip/libupnp/distinfo
cvs -z3 rdiff -u -r1.14 -r1.15 wip/libupnp/Makefile
cvs -z3 rdiff -u -r1.4 -r1.5 wip/libupnp/PLIST
cvs -z3 rdiff -u -r1.5 -r0 wip/libupnp/patches/patch-ab \
    wip/libupnp/patches/patch-ad
cvs -z3 rdiff -u -r1.5 -r1.6 wip/libupnp/patches/patch-ae
cvs -z3 rdiff -u -r1.7 -r1.8 wip/libupnp/patches/patch-aa \
    wip/libupnp/patches/patch-ac wip/libupnp/patches/patch-ag

To view a diff of this commit:
http://pkgsrc-wip.cvs.sourceforge.net/pkgsrc-wip/wip/libupnp/distinfo?r1=1.12&r2=1.13
http://pkgsrc-wip.cvs.sourceforge.net/pkgsrc-wip/wip/libupnp/Makefile?r1=1.14&r2=1.15
http://pkgsrc-wip.cvs.sourceforge.net/pkgsrc-wip/wip/libupnp/PLIST?r1=1.4&r2=1.5
http://pkgsrc-wip.cvs.sourceforge.net/pkgsrc-wip/wip/libupnp/patches/patch-ab?r1=1.5&r2=0
http://pkgsrc-wip.cvs.sourceforge.net/pkgsrc-wip/wip/libupnp/patches/patch-ad?r1=1.5&r2=0
http://pkgsrc-wip.cvs.sourceforge.net/pkgsrc-wip/wip/libupnp/patches/patch-ae?r1=1.5&r2=1.6
http://pkgsrc-wip.cvs.sourceforge.net/pkgsrc-wip/wip/libupnp/patches/patch-aa?r1=1.7&r2=1.8
http://pkgsrc-wip.cvs.sourceforge.net/pkgsrc-wip/wip/libupnp/patches/patch-ac?r1=1.7&r2=1.8
http://pkgsrc-wip.cvs.sourceforge.net/pkgsrc-wip/wip/libupnp/patches/patch-ag?r1=1.7&r2=1.8

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
pkgsrc-wip-cvs mailing list
pkgsrc-wip-cvs%lists.sourceforge.net@localhost
https://lists.sourceforge.net/lists/listinfo/pkgsrc-wip-cvs



Home | Main Index | Thread Index | Old Index