Commit d20f9989 authored by Olivier Teulière's avatar Olivier Teulière

* All: Compilation fixes for Solaris 9, courtesy of Mats Rojestal

parent 0702887b
...@@ -22,7 +22,7 @@ Bill Eldridge <bill@rfa.org> - documentation ...@@ -22,7 +22,7 @@ Bill Eldridge <bill@rfa.org> - documentation
Brieuc Jeunhomme <bbp@via.ecp.fr> - bug fixes Brieuc Jeunhomme <bbp@via.ecp.fr> - bug fixes
Bruno Vella <allevb@tin.it> - Italian localization Bruno Vella <allevb@tin.it> - Italian localization
Carlo Calabr <murray@via.ecp.fr> - Italian localization Carlo Calabr <murray@via.ecp.fr> - Italian localization
Carsten Gottbeht <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fixt <gottbehuet at active-elements dot de> - v4l hotplug fix Carsten Gottbeht <gottbehuet at active-elements dot de> - v4l hotplug fix
Christof Baumgaertner - dbox web intf Christof Baumgaertner - dbox web intf
Christopher Johnson <cjohnson@mint.net> - Qt fix in vlc.spec Christopher Johnson <cjohnson@mint.net> - Qt fix in vlc.spec
Colin Simmonds <colin_simmonds@Mac.lover.org> - compile fix for Mac OS X Colin Simmonds <colin_simmonds@Mac.lover.org> - compile fix for Mac OS X
...@@ -55,6 +55,7 @@ Mark Gritter <mgritter@kealia.com> - fix for netlist packet leak in demuxPSI ...@@ -55,6 +55,7 @@ Mark Gritter <mgritter@kealia.com> - fix for netlist packet leak in demuxPSI
Markus Kern <markus-kern at gmx dot net> - video output window fixes (win32) Markus Kern <markus-kern at gmx dot net> - video output window fixes (win32)
Markus Kuespert <ltlBeBoy@beosmail.com> - BeOS CSS support Markus Kuespert <ltlBeBoy@beosmail.com> - BeOS CSS support
Mathias Kretschmer <mathias@research.att.com> - IP Multicast support Mathias Kretschmer <mathias@research.att.com> - IP Multicast support
Mats Rojestal <mats.rojestal at bredband dot net> - compilation fixes for Solaris 9
Matthieu Lochegnies <lochegm1@cti.ecp.fr> - MPEG audio emphasis fix Matthieu Lochegnies <lochegm1@cti.ecp.fr> - MPEG audio emphasis fix
Max Rudberg <max_08 at mac.com> - Mac OS X controller art (v0.7.0) Max Rudberg <max_08 at mac.com> - Mac OS X controller art (v0.7.0)
Michael Mondragon <mammon@lokmail.net> - ncurses compilation fix Michael Mondragon <mammon@lokmail.net> - ncurses compilation fix
......
...@@ -1882,7 +1882,7 @@ then ...@@ -1882,7 +1882,7 @@ then
AC_MSG_RESULT(no) AC_MSG_RESULT(no)
AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}]) AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}])
fi fi
if ! grep -q "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
dnl The given libavcodec wasn't built with --enable-pp dnl The given libavcodec wasn't built with --enable-pp
AC_MSG_RESULT(no) AC_MSG_RESULT(no)
AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp]) AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp])
......
...@@ -34,6 +34,9 @@ ...@@ -34,6 +34,9 @@
#include "../events/evt_mouse.hpp" #include "../events/evt_mouse.hpp"
#include "../events/evt_scroll.hpp" #include "../events/evt_scroll.hpp"
#include "vlc_keys.h" #include "vlc_keys.h"
#ifdef sun
# include "solaris_specific.h" // for lrint
#endif
#define SCROLL_STEP 0.05 #define SCROLL_STEP 0.05
#define LINE_INTERVAL 1 // Number of pixels inserted between 2 lines #define LINE_INTERVAL 1 // Number of pixels inserted between 2 lines
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* bezier.cpp * bezier.cpp
***************************************************************************** *****************************************************************************
* Copyright (C) 2003 VideoLAN * Copyright (C) 2003 VideoLAN
* $Id: bezier.cpp,v 1.5 2004/03/03 22:57:15 asmax Exp $ * $Id$
* *
* Authors: Cyril Deguet <asmax@via.ecp.fr> * Authors: Cyril Deguet <asmax@via.ecp.fr>
* Olivier Teulire <ipkiss@via.ecp.fr> * Olivier Teulire <ipkiss@via.ecp.fr>
...@@ -24,6 +24,9 @@ ...@@ -24,6 +24,9 @@
#include "bezier.hpp" #include "bezier.hpp"
#include <math.h> #include <math.h>
#ifdef sun
# include "solaris_specific.h" // for lrintf
#endif
Bezier::Bezier( intf_thread_t *p_intf, const vector<float> &rAbscissas, Bezier::Bezier( intf_thread_t *p_intf, const vector<float> &rAbscissas,
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#ifdef X11_SKINS #ifdef X11_SKINS
#include <X11/Xlib.h>
#include <X11/Xutil.h> #include <X11/Xutil.h>
#include <X11/extensions/shape.h> #include <X11/extensions/shape.h>
......
...@@ -25,6 +25,8 @@ ...@@ -25,6 +25,8 @@
#ifdef X11_SKINS #ifdef X11_SKINS
#include <stdlib.h> #include <stdlib.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/extensions/shape.h> #include <X11/extensions/shape.h>
#include "x11_display.hpp" #include "x11_display.hpp"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment