Re: [Ekiga-devel-list] Mingw32 : Having problem with ffmpeg

2009-06-10 Thread Peter Robinson
 Now ptlib had been compiled, I have difficulties with opal. I have 2 errors
 when h264 and h263, I might disable those codecs, but it might be difficult
 to compile ekiga after ?
 I can disable h264 by adding --disable-h264 to confopal in the main
 Makefile, but I did  not find a similar option to disable  h263.
 Here is my error (it's above the same for h263) :

I'm not sure about windows but on Linux you can easily compile
ptlib/opal/ekiga without ffmepg at all. Due to legal issues ffmpeg
isn't allowed in Fedora and it compiles file with out ffmpeg. Same
goes for h264. It might be worthwhile seeing if you can get the whole
lot to compile and work without ffmpeg and then add it back in for a
later build.

Peter
___
Ekiga-devel-list mailing list
Ekiga-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/ekiga-devel-list


Re: [Ekiga-devel-list] Mingw32 : Having problem with ffmpeg

2009-06-10 Thread Michael Rickmann
Am Mittwoch, den 10.06.2009, 11:29 +0200 schrieb Hillereau Paul:
 Now ptlib had been compiled, I have difficulties with opal. I have 2 
 errors when h264 and h263, I might disable those codecs, but it might be 
 difficult to compile ekiga after ?
 I can disable h264 by adding --disable-h264 to confopal in the main 
 Makefile, but I did  not find a similar option to disable  h263.
 Here is my error (it's above the same for h263) :
 
 make[3]: Entering directory 
 `/home/devel/win32/ekiga/win32/opal/plugins/video/H.264'
 i586-mingw32msvc-g++ -gstabs -I../../../include 
 -I/home/devel/win32/ekiga/win32/include   -I../common -I../../ 
 -DLIB_DIR='/home/devel/win32/ekiga/win32/lib' 
 -DVC_PLUGIN_DIR='opal-3.7.0/codecs/video' -DLICENCE_MPL   -g3 -ggdb 
 -O0 -D_DEBUG -I/home/devel/win32/ekiga/win32/include -march=pentium-mmx 
 -DPTRACING -c h264-x264.cxx -o obj/h264-x264.o
 In file included from ../common/ffmpeg.h:67,
  from ../common/dyna.h:44,
  from h264-x264.cxx:53:
 ../common/vs-stdint.h:33:2: error: #error Use this header only with 
 Microsoft Visual C++ compilers!
snip

You are not alone with that. They have changed things again. I tried
last night and had exactly the same build errors. Find attached the
patch for ptlib and the two for opal. Place them into the diff directory
and make the copy sections of the Makefile look as in attached addtomake
file.

Regards
Michael
diff -ur src/ptlib/configure ptlib/configure
--- src/ptlib/configure	2009-06-09 17:47:00.637030459 +0200
+++ ptlib/configure	2009-06-09 20:01:25.481030439 +0200
@@ -4520,7 +4520,7 @@
 		   TARGETDIR=msos ;
 		   SHAREDLIBEXT=dll ;
 		   STDCCFLAGS=$STDCCFLAGS -mms-bitfields ;
-		   ENDLDLIBS=-lwinmm -lwsock32 -lsnmpapi -lmpr -lcomdlg32 -lgdi32 -lavicap32 -liphlpapi -lole32 ;
+		   ENDLDLIBS=-lwinmm -lwsock32 -lws2_32 -lsnmpapi -lmpr -lcomdlg32 -lgdi32 -lavicap32 -liphlpapi -lole32 ;
 		   NEEDS_PTHREADS=no ;
 		   { echo $as_me:$LINENO: checking for swab 5
 echo $ECHO_N checking for swab... $ECHO_C 6; }
diff -ur src/ptlib/configure.ac ptlib/configure.ac
--- src/ptlib/configure.ac	2009-06-09 17:47:00.653032217 +0200
+++ ptlib/configure.ac	2009-06-09 19:59:54.409031582 +0200
@@ -302,7 +302,7 @@
 		   TARGETDIR=msos ;
 		   SHAREDLIBEXT=dll ;
 		   STDCCFLAGS=$STDCCFLAGS -mms-bitfields ;
-		   ENDLDLIBS=-lwinmm -lwsock32 -lsnmpapi -lmpr -lcomdlg32 -lgdi32 -lavicap32 -liphlpapi -lole32 ;
+		   ENDLDLIBS=-lwinmm -lwsock32 -lws2_32 -lsnmpapi -lmpr -lcomdlg32 -lgdi32 -lavicap32 -liphlpapi -lole32 ;
 		   NEEDS_PTHREADS=no ;
 		   AC_CHECK_FUNC([swab], [AC_DEFINE([USE_SYSTEM_SWAB], [], [Use system swab()] )] )
 		   HAS_SHM_VIDEO=
diff -ur src/ptlib/src/ptlib/common/sockets.cxx ptlib/src/ptlib/common/sockets.cxx
--- src/ptlib/src/ptlib/common/sockets.cxx	2009-05-27 17:13:56.320289152 +0200
+++ ptlib/src/ptlib/common/sockets.cxx	2009-06-09 19:59:54.413033488 +0200
@@ -31,6 +31,11 @@
  * $Date: 2009-05-25 05:26:23 +0200 (Mo, 25. Mai 2009) $
  */
 
+#if defined(__MINGW32__)  (!defined(WINVER) || (WINVER == 0x500)) 
+#undef WINVER
+#define WINVER 0x501
+#endif  // __MINGW32__
+
 #include ptlib.h
 
 #include ptlib/sockets.h
@@ -60,8 +65,10 @@
 DWORD cbTransferred,
 LPWSAOVERLAPPED lpOverlapped,
 DWORD dwFlags);
-
 
+#if defined(__MINGW32__)  (WINVER  0x500)
+#undef AI_NUMERICHOST
+#endif  // __MINGW32__
 #endif  // _WIN32_WCE
 #endif  // _WIN32
 #endif // P_QOS
diff -ur src/opal/plugins/video/common/ffmpeg.h opal/plugins/video/common/ffmpeg.h
--- src/opal/plugins/video/common/ffmpeg.h	2009-06-09 17:47:35.337032739 +0200
+++ opal/plugins/video/common/ffmpeg.h	2009-06-09 22:07:03.941034240 +0200
@@ -63,7 +63,7 @@
 
 
 extern C {
-#ifdef _WIN32
+#if defined (_WIN32)  defined (_MSC_VER)
 #include vs-stdint.h
 #define LIBAVCODEC_HEADER   libavcodec\avcodec.h
 #pragma warning(push)
diff -ur opal.pre/plugins/video/H.263-1998/h263-1998.cxx opal/plugins/video/H.263-1998/h263-1998.cxx
--- opal.pre/plugins/video/H.263-1998/h263-1998.cxx	2009-06-09 22:08:50.361264887 +0200
+++ opal/plugins/video/H.263-1998/h263-1998.cxx	2009-06-09 22:26:29.357035570 +0200
@@ -46,6 +46,10 @@
 
  */
 
+#ifndef PLUGIN_CODEC_DLL_EXPORTS
+#include plugin-config.h
+#endif
+
 #define _CRT_SECURE_NO_DEPRECATE
 
 #include h263-1998.h
diff -ur opal.pre/plugins/video/H.263-1998/Makefile.in opal/plugins/video/H.263-1998/Makefile.in
--- opal.pre/plugins/video/H.263-1998/Makefile.in	2009-06-09 22:08:50.361264887 +0200
+++ opal/plugins/video/H.263-1998/Makefile.in	2009-06-09 22:24:50.941032598 +0200
@@ -33,6 +33,7 @@
 COMMONDIR	=../common
 PLUGINDIR	=../../
 OBJDIR 		=./obj
+PLUGINDIR	=../..
 
 CC	 	=...@cc@
 CFLAGS	 	=...@cflags@ 
@@ -42,6 +43,7 @@
 STDCCFLAGS	=...@stdccflags@
 libavcodec_cfla...@libavcodec_cflags@
 LDFLAGS		=...@ldflags@ -lavcodec -lavutil
+EXTRACFLAGS	=-I$(PLUGINDIR)
 have_libavcodec_rtp_mo...@have_libavcodec_rtp_mode@

Re: [Ekiga-devel-list] Mingw32 : Having problem with ffmpeg

2009-06-09 Thread Michael Rickmann
Am Dienstag, den 09.06.2009, 13:22 +0200 schrieb paul hillereau:
 
 I have looked through your logs. It appears that you have
 vfw.h 
snip ..snip
 
 First I am very thankfull for all of your answers, thanks you for
 spending some time on my problem.
 
 I installed the new mingw32 runtime on my debian lenny, and at least
 issues with vfw vere solved.
 But after changing the WINVER macro in
 ptlib/include/ptlib/msos/ptlib/contain.h from value 0x500 (windows 2k)
 to 0x501 (windows XP), which correct errors with getaddrinfo in
 ekiga/win32/ptlib/src/ptlib/common/sockets.cxx; now there is a linker
 error :
 
 [snip]
 /home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/obj_d/contain.o  
 /home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/obj_d/object.o  -lwinmm 
 -lwsock32 -lsnmpapi -lmpr -lcomdlg32 -lgdi32 -lavicap32 -liphlpapi -lole32 
 -lregex -lexpat  -ldsound -ldxerr9 -ldxguid -lstrmiids -lole32 -luuid 
 -loleaut32 -lquartz -ldnsapi
 
 /home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/obj_d/sockets.o: In
 function `_ZN11PHostByName7GetHostERK7PString':
 /home/devel/win32/ekiga/win32/ptlib/src/ptlib/common/sockets.cxx:532:
 undefined reference to `_getaddri...@16'
 /home/devel/win32/ekiga/win32/ptlib/src/ptlib/common/sockets.cxx:535:
 undefined reference to `_freeaddri...@4'
 collect2: ld returned 1 exit status
 make[3]: ***
 [/home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/libpt_d.dll.2.7-beta0] 
 Error 1
 make[3]: Leaving directory `/home/devel/win32/ekiga/win32/ptlib/src'
 make[2]: *** [debug] Error 2
 
Seems I will have to submit another patch to their build system. In the
meantime try to change into the directory from which the Makefile issued
the link command and repeat it by hand appending -lws2_32 without the
quotes. You will have to do that also when linking Ekiga.
Regards
Michael


___
Ekiga-devel-list mailing list
Ekiga-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/ekiga-devel-list


Re: [Ekiga-devel-list] Mingw32 : Having problem with ffmpeg

2009-06-08 Thread Michael Rickmann
I had trouble with ffmpeg as well. I realized that when doing an update-
sources every now and then a new file was downloaded from SVN though I
was requesting a specific SVN version. I think the ffmpeg guys have a
problem keeping their SVN and git repositories in synchrony. On the git
side they have a ffmpeg and a libswscale one. So I switched to ffmpeg
git and tried to guess which ffmpeg version corresponds to which
libswscale one, ffmpeg : d962d69f2ef1bcd3b4 and libswcale :
8c5952c02bfad4bfa6 is a good and rather recent pair. For reference how
to download, configure and build, I attach my current Makefile.
Regards
Michael

Am Freitag, den 05.06.2009, 12:47 -0400 schrieb e schmidbauer:
 I am getting the exact same error using ekiga svn on ubuntu jaunty. i
 have not found a solution either.
 
 On Fri, Jun 5, 2009 at 8:14 AM, paul hillereaupaul.hiller...@gmail.com 
 wrote:
  Hello,
 
  I am currently trying to cross-compile ekiga from git stable branch (gnome
  2-26), and it failed due to some errors with ffmpeg library. I did make
  update-sources, and then make; i had to change the version for libxml2,
  since version 2.6.26 is no more available from ftp, so i use 2.6.30.
  Now i have this problem:
 
  ek...@winnie:/home/devel/win32/ekiga/win32: make
snip


Makefile_162.gz
Description: GNU Zip compressed data
___
Ekiga-devel-list mailing list
Ekiga-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/ekiga-devel-list

Re: [Ekiga-devel-list] Mingw32 : Having problem with ffmpeg

2009-06-08 Thread paul hillereau
2009/6/8 Michael Rickmann mric...@gwdg.de

 I had trouble with ffmpeg as well. I realized that when doing an update-
 sources every now and then a new file was downloaded from SVN though I
 was requesting a specific SVN version. I think the ffmpeg guys have a
 problem keeping their SVN and git repositories in synchrony. On the git
 side they have a ffmpeg and a libswscale one. So I switched to ffmpeg
 git and tried to guess which ffmpeg version corresponds to which
 libswscale one, ffmpeg : d962d69f2ef1bcd3b4 and libswcale :
 8c5952c02bfad4bfa6 is a good and rather recent pair. For reference how
 to download, configure and build, I attach my current Makefile.
 Regards
 Michael


I do not have issue with ffmpeg so far, because i have an error when
cross-compiling PTLIB. I tried to change the version for PTLIB in your
Makefile but it does not solve my problem. I tried cross-compiling from
PTLIB 2.4.1, 2.6.1 and trunk i have got errors in vfw.cxx :

Version 2.4.1:

PTLIB_URL:=
https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/ptlib/branches/v2_4

make[3]: Entering directory `/home/devel/win32/ekiga/win32/ptlib/src'
i586-mingw32msvc-g++ -gstabs -I/home/devel/win32/ekiga/win32/include
-march=pentium-mmx -DPTRACING -DP_FORCE_STATIC_PLUGIN -mms-bitfields
-DPTRACING=1  -I/home/devel/win32/ekiga/win32/ekiga/win32/directx
-fno-exceptions  -Wall  -g3 -ggdb -O0 -D_DEBUG
-I/home/devel/win32/ekiga/win32/ptlib/include -c ptlib/common/vfakeio.cxx -o
/home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/obj_d/vfakeio.o
i586-mingw32msvc-g++ -gstabs -mms-bitfields -DPTRACING=1
-I/home/devel/win32/ekiga/win32/ekiga/win32/directx -fno-exceptions  -Wall
-g3 -ggdb -O0 -D_DEBUG -I/home/devel/win32/ekiga/win32/ptlib/include
-I/home/devel/win32/ekiga/win32/include -march=pentium-mmx -DPTRACING
-felide-constructors -Wreorder  -c ptlib/common/videoio.cxx -o
/home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/obj_d/videoio.o
i586-mingw32msvc-g++ -gstabs -mms-bitfields -DPTRACING=1
-I/home/devel/win32/ekiga/win32/ekiga/win32/directx -fno-exceptions  -Wall
-g3 -ggdb -O0 -D_DEBUG -I/home/devel/win32/ekiga/win32/ptlib/include
-I/home/devel/win32/ekiga/win32/include -march=pentium-mmx -DPTRACING
-felide-constructors -Wreorder  -c ptlib/common/vconvert.cxx -o
/home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/obj_d/vconvert.o
i586-mingw32msvc-g++ -gstabs -mms-bitfields -DPTRACING=1
-I/home/devel/win32/ekiga/win32/ekiga/win32/directx -fno-exceptions  -Wall
-g3 -ggdb -O0 -D_DEBUG -I/home/devel/win32/ekiga/win32/ptlib/include
-I/home/devel/win32/ekiga/win32/include -march=pentium-mmx -DPTRACING
-felide-constructors -Wreorder  -c ptlib/common/pvidchan.cxx -o
/home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/obj_d/pvidchan.o
i586-mingw32msvc-g++ -gstabs -mms-bitfields -DPTRACING=1
-I/home/devel/win32/ekiga/win32/ekiga/win32/directx -fno-exceptions  -Wall
-g3 -ggdb -O0 -D_DEBUG -I/home/devel/win32/ekiga/win32/ptlib/include
-I/home/devel/win32/ekiga/win32/include -march=pentium-mmx -DPTRACING
-felide-constructors -Wreorder  -c ptlib/common/tinyjpeg.cxx -o
/home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/obj_d/tinyjpeg.o
i586-mingw32msvc-g++ -gstabs -mms-bitfields -DPTRACING=1
-I/home/devel/win32/ekiga/win32/ekiga/win32/directx -fno-exceptions  -Wall
-g3 -ggdb -O0 -D_DEBUG -I/home/devel/win32/ekiga/win32/ptlib/include
-I/home/devel/win32/ekiga/win32/include -march=pentium-mmx -DPTRACING
-felide-constructors -Wreorder  -c ptlib/common/jidctflt.cxx -o
/home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/obj_d/jidctflt.o
i586-mingw32msvc-g++ -gstabs -mms-bitfields -DPTRACING=1
-I/home/devel/win32/ekiga/win32/ekiga/win32/directx -fno-exceptions  -Wall
-g3 -ggdb -O0 -D_DEBUG -I/home/devel/win32/ekiga/win32/ptlib/include
-I/home/devel/win32/ekiga/win32/include -march=pentium-mmx -DPTRACING
-felide-constructors -Wreorder  -c ptlib/msos/vfw.cxx -o
/home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/obj_d/vfw.o
ptlib/msos/vfw.cxx:163: error: expected initializer before
'capCreateCaptureWindowA'
ptlib/msos/vfw.cxx: In static member function 'static PStringArray
PVideoInputDevice_VideoForWindows::GetInputDeviceNames()':
ptlib/msos/vfw.cxx:820: error: 'capGetDriverDescriptionA' was not declared
in this scope
ptlib/msos/vfw.cxx: In static member function 'static LRESULT
PVideoInputDevice_VideoForWindows::VideoHandler(HWND__*, videohdr_tag*)':
ptlib/msos/vfw.cxx:900: warning: NULL used in arithmetic
ptlib/msos/vfw.cxx: In member function 'PBoolean
PVideoInputDevice_VideoForWindows::InitialiseCapture()':
ptlib/msos/vfw.cxx:931: error: 'capCreateCaptureWindowA' was not declared in
this scope
ptlib/msos/vfw.cxx:958: error: 'capGetDriverDescriptionA' was not declared
in this scope
ptlib/msos/vfw.cxx:971: error: 'capGetDriverDescriptionA' was not declared
in this scope
ptlib/msos/vfw.cxx: In member function 'virtual void
PVideoOutputDevice_Window::HandleDisplay(PThread, INT)':
ptlib/msos/vfw.cxx:1506: warning: comparison between signed and unsigned
integer expressions

Re: [Ekiga-devel-list] Mingw32 : Having problem with ffmpeg

2009-06-08 Thread Michael Rickmann
Am Montag, den 08.06.2009, 15:37 +0200 schrieb paul hillereau:
 2009/6/8 Michael Rickmann mric...@gwdg.de
 I had trouble with ffmpeg as well. I realized that when doing
 an update-
 sources every now and then a new file was downloaded from SVN
 though I
 was requesting a specific SVN version. I think the ffmpeg guys
 have a
 problem keeping their SVN and git repositories in synchrony.
 On the git
 side they have a ffmpeg and a libswscale one. So I switched to
 ffmpeg
 git and tried to guess which ffmpeg version corresponds to
 which
 libswscale one, ffmpeg : d962d69f2ef1bcd3b4 and libswcale :
 8c5952c02bfad4bfa6 is a good and rather recent pair. For
 reference how
 to download, configure and build, I attach my current
 Makefile.
 Regards
 Michael
 
 I do not have issue with ffmpeg so far, because i have an error when
 cross-compiling PTLIB. I tried to change the version for PTLIB in your
 Makefile but it does not solve my problem. I tried cross-compiling
 from PTLIB 2.4.1, 2.6.1 and trunk i have got errors in vfw.cxx :
 
 Version 2.4.1:
 
 PTLIB_URL:=
 https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/ptlib/branches/v2_4
 
 make[3]: Entering directory `/home/devel/win32/ekiga/win32/ptlib/src'
 i586-mingw32msvc-g++ -gstabs -I/home/devel/win32/ekiga/win32/include
 -march=pentium-mmx -DPTRACING -DP_FORCE_STATIC_PLUGIN -mms-bitfields
 -DPTRACING=1  -I/home/devel/win32/ekiga/win32/ekiga/win32/directx
 -fno-exceptions  -Wall  -g3 -ggdb -O0 -D_DEBUG
 -I/home/devel/win32/ekig

snip ... snip

 a/win32/ptlib/include -c ptlib/common/vfakeio.cxx
 [/home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/obj_d/vfw.o] Error
 1
 make[3]: Leaving directory `/home/devel/win32/ekiga/win32/ptlib/src'
 make[2]: *** [debug] Error 2
 make[2]: Leaving directory `/home/devel/win32/ekiga/win32/ptlib/src'
 make[1]: *** [debug] Error 2
 make[1]: Leaving directory `/home/devel/win32/ekiga/win32/ptlib'
 make: *** [/home/devel/win32/ekiga/win32/lib/libpt_d_s.a] Error 2
 
 I search for the vfw.h header file but i did not found it. I'm running
 out of idea to get a clean cross-compile, any hints ?
 
I have looked through your logs. It appears that you have vfw.h but in a
version too outdated for ptlib. If you work on a debian based system you
may try to install
http://wwwuser.gwdg.de/~mrickma/ekiga/mingwrt/mingw32-runtime_3.15-1_all.deb .
I know Fedora has it as well but cannot find it at the moment. Otherwise
you may consider to go to mingw.org, get the latest Win32 headers and
poke them into your system.
Regards
Michael

___
Ekiga-devel-list mailing list
Ekiga-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/ekiga-devel-list


Re: [Ekiga-devel-list] Mingw32 : Having problem with ffmpeg

2009-06-05 Thread e schmidbauer
I am getting the exact same error using ekiga svn on ubuntu jaunty. i
have not found a solution either.

On Fri, Jun 5, 2009 at 8:14 AM, paul hillereaupaul.hiller...@gmail.com wrote:
 Hello,

 I am currently trying to cross-compile ekiga from git stable branch (gnome
 2-26), and it failed due to some errors with ffmpeg library. I did make
 update-sources, and then make; i had to change the version for libxml2,
 since version 2.6.26 is no more available from ftp, so i use 2.6.30.
 Now i have this problem:

 ek...@winnie:/home/devel/win32/ekiga/win32: make
 make  -j1 DEBUG=1 debug -C /home/devel/win32/ekiga/win32/ptlib
 make[1]: Entering directory `/home/devel/win32/ekiga/win32/ptlib'
 make DEBUG=1 default_target
 make[2]: Entering directory `/home/devel/win32/ekiga/win32/ptlib'
 make[2]: Leaving directory `/home/devel/win32/ekiga/win32/ptlib'
 set -e; if test -e src/ptlib/msos ; then make -C src/ptlib/msos debug; fi;
 make[2]: Entering directory
 `/home/devel/win32/ekiga/win32/ptlib/src/ptlib/msos'
 make DEBUG=1 default_target
 make[3]: Entering directory
 `/home/devel/win32/ekiga/win32/ptlib/src/ptlib/msos'
 make[3]: Leaving directory
 `/home/devel/win32/ekiga/win32/ptlib/src/ptlib/msos'
 make[2]: Leaving directory
 `/home/devel/win32/ekiga/win32/ptlib/src/ptlib/msos'
 make[1]: Leaving directory `/home/devel/win32/ekiga/win32/ptlib'
 make DEBUG=1 -C /home/devel/win32/ekiga/win32/ptlib install
 make[1]: Entering directory `/home/devel/win32/ekiga/win32/ptlib'
 ( for dir in /home/devel/win32/ekiga/win32/lib \
          /home/devel/win32/ekiga/win32/bin \
          /home/devel/win32/ekiga/win32/include/ptlib \
  /home/devel/win32/ekiga/win32/include/ptlib/msos/ptlib
 \
  /home/devel/win32/ekiga/win32/include/ptclib \
  /home/devel/win32/ekiga/win32/share/ptlib/make ; \
         do mkdir -p $dir ; chmod 755 $dir ; \
     done )
 /usr/bin/install -c -m 444
 /home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/libpt_d.dll.2.4.1
 /home/devel/win32/ekiga/win32/lib
 /usr/bin/install -c -m 444
 /home/devel/win32/ekiga/win32/ptlib/lib_mingw_x86/libpt_d_s.a
 /home/devel/win32/ekiga/win32/lib
 (cd /home/devel/win32/ekiga/win32/lib ; \
         rm -f  libpt_d.dll.2.4 ; \
         ln -sf libpt_d.dll.2.4.1 libpt_d.dll.2.4 \
     )
 (cd /home/devel/win32/ekiga/win32/lib ; \
         rm -f  libpt_d.dll.2 ; \
         ln -sf libpt_d.dll.2.4.1 libpt_d.dll.2 \
     )
 (cd /home/devel/win32/ekiga/win32/lib ; \
         rm -f  libpt_d.dll ; \
         ln -sf libpt_d.dll.2.4.1 libpt_d.dll \
     )
 /usr/bin/install -c -m 444 include/ptlib.h
 /home/devel/win32/ekiga/win32/include
 /usr/bin/install -c -m 444 include/ptbuildopts.h
 /home/devel/win32/ekiga/win32/include
 (for fn in include/ptlib/*.h include/ptlib/*.inl; \
         do /usr/bin/install -c -m 444 $fn
 /home/devel/win32/ekiga/win32/include/ptlib; \
     done)
 (for fn in include/ptlib/msos/ptlib/*.h include/ptlib/msos/ptlib/*.inl ; \
         do /usr/bin/install -c -m 444 $fn
 /home/devel/win32/ekiga/win32/include/ptlib/msos/ptlib ; \
     done)
 (for fn in include/ptclib/*.h ; \
         do /usr/bin/install -c -m 444 $fn
 /home/devel/win32/ekiga/win32/include/ptclib; \
     done)
 (for fn in make/*.mak ; \
         do /usr/bin/install -c -m 444 $fn
 /home/devel/win32/ekiga/win32/share/ptlib/make; \
     done)
 /usr/bin/install -c -m 755 make/ptlib-config
 /home/devel/win32/ekiga/win32/share/ptlib/make/
 (cd /home/devel/win32/ekiga/win32/bin; rm -f ptlib-config ; ln -snf
 ../share/ptlib/make/ptlib-config ptlib-config)
 mkdir -p /home/devel/win32/ekiga/win32/lib/pkgconfig
 chmod 755 /home/devel/win32/ekiga/win32/lib/pkgconfig
 /usr/bin/install -c -m 644 ptlib.pc
 /home/devel/win32/ekiga/win32/lib/pkgconfig/
 make[1]: Leaving directory `/home/devel/win32/ekiga/win32/ptlib'
 make  -C /home/devel/win32/ekiga/win32/ffmpeg/libavutil
 make[1]: Entering directory `/home/devel/win32/ekiga/win32/ffmpeg/libavutil'
 make[1]: Nothing to be done for `all'.
 make[1]: Leaving directory `/home/devel/win32/ekiga/win32/ffmpeg/libavutil'
 make  -C /home/devel/win32/ekiga/win32/ffmpeg/libavcodec
 make[1]: Entering directory
 `/home/devel/win32/ekiga/win32/ffmpeg/libavcodec'
 i586-mingw32msvc-gcc -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64
 -D_LARGEFILE_SOURCE -D_ISOC9X_SOURCE -I..
 -I/home/devel/win32/ekiga/win32/ffmpeg
 -I/home/devel/win32/ekiga/win32/include -march=pentium-mmx -DPTRACING
 -fomit-frame-pointer -g -Wdeclaration-after-statement -Wall -Wno-switch
 -Wdisabled-optimization -Wpointer-arith -Wredundant-decls -Wno-pointer-sign
 -Wcast-qual -Wwrite-strings -O3 -fno-math-errno   -c -o imgresample.o
 imgresample.c
 In file included from imgresample.c:157:
 i386/mmx.h:24:2: warning: #warning Everything in this header is deprecated,
 use plain asm()! New code using this header will be rejected.
 imgresample.c:362: warning: 'ImgReSampleContext' is deprecated
 imgresample.c:429: warning: 'ImgReSampleContext' is deprecated