diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2004-12-12 13:51:28 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2004-12-12 13:51:28 +0000 |
commit | dbdcb15d3e50484f1349748fe2cbe102320e032b (patch) | |
tree | 820a358140313eb0ed631522a78f399a21e7a880 /src/xine-utils/xineutils.h | |
parent | 1de00c1f9d0f1eba90be53b8dd9635b79b68dc2a (diff) | |
download | xine-lib-dbdcb15d3e50484f1349748fe2cbe102320e032b.tar.gz xine-lib-dbdcb15d3e50484f1349748fe2cbe102320e032b.tar.bz2 |
Check absolute path in $ac_aux_dir (just reflected from gxine).
Compilation fixes for cross-compiling with MinGW32.
CVS patchset: 7231
CVS date: 2004/12/12 13:51:28
Diffstat (limited to 'src/xine-utils/xineutils.h')
-rw-r--r-- | src/xine-utils/xineutils.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/xine-utils/xineutils.h b/src/xine-utils/xineutils.h index 21070a1a9..eb4897db1 100644 --- a/src/xine-utils/xineutils.h +++ b/src/xine-utils/xineutils.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xineutils.h,v 1.95 2004/10/29 23:11:38 miguelfreitas Exp $ + * $Id: xineutils.h,v 1.96 2004/12/12 13:51:30 valtri Exp $ * */ #ifndef XINEUTILS_H @@ -27,6 +27,10 @@ extern "C" { #endif +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdlib.h> #include <string.h> #include <stdarg.h> @@ -40,6 +44,11 @@ extern "C" { # include "xine_buffer.h" # include "configfile.h" #else +# ifdef WIN32 +# include <winsock.h> +# else +# include <sys/time.h> +# endif # include <xine/os_types.h> # include <xine/attributes.h> # include <xine/compat.h> @@ -48,10 +57,6 @@ extern "C" { # include <xine/configfile.h> #endif -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - #include <stdio.h> #include <string.h> |