~ubuntu-branches/ubuntu/quantal/linphone/quantal

« back to all changes in this revision

Viewing changes to oRTP/src/ortp.c

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2010-05-23 10:04:07 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100523100407-wev5qrmhwwbs0whh
* New upstream release

* debian/control: s/is a is an/is an/ (Closes: #582661)
* debian/control s/It main/Its main/ (Closes: #582665) 
* configure --disable-strict (Closes: 561708)
* Cleanup arches libv4l-dev libasound2-dev (Closes: #542595)
* Cleanup debian/watch
* Drop fix_desktop_section.dpatch - included upstream
* Drop desktop-icon.dpatch - included upstream
* Drop always_ipv4_for_ipv4_hosts.dpatch - included upstream
* Drop dpatch
* Upstream dropped /usr/bin/sipomatic

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#if defined(WIN32) || defined(_WIN32_WCE)
22
22
#include "ortp-config-win32.h"
23
 
#else
 
23
#elif HAVE_CONFIG_H
24
24
#include "ortp-config.h"
25
25
#endif
26
26
#include "ortp/ortp.h"
256
256
                        ortp_fatal("Bad level !");
257
257
        }
258
258
        msg=ortp_strdup_vprintf(fmt,args);
259
 
#ifdef _MSC_VER
 
259
#if defined(_MSC_VER) && !defined(_WIN32_WCE)
260
260
        OutputDebugString(msg);
261
261
        OutputDebugString("\r\n");
262
262
#else