Commit 4eb64642 authored by Sam Hocevar's avatar Sam Hocevar

  * fixed headers for FreeBSD compilation.
  * fixed debian/rules for non-x86 packages (Closes: Debian bug #88583).
parent 2afb7240
vlc (0.2.63-2) unstable; urgency=low
* Glide shouldn't cause any non-x86 problems anymore (Closes: #88583).
-- Samuel Hocevar <sam@zoy.org> Mon, 5 Mar 2001 12:50:28 +0100
vlc (0.2.63-1) unstable; urgency=low
* New upstream release.
......
......@@ -95,9 +95,15 @@ binary-arch: build install
dh_installdeb
# dh_perl
dh_shlibdeps -Nvlc-glide
dh_gencontrol
dh_md5sums
dh_builddeb
if [ $(DEB_BUILD_ARCH) = i386 ]; then \
dh_gencontrol ;\
dh_md5sums ;\
dh_builddeb ;\
else \
dh_gencontrol -Nvlc-glide ;\
dh_md5sums -Nvlc-glide ;\
dh_builddeb -Nvlc-glide ;\
fi
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install
......@@ -2,7 +2,7 @@
* dvd_ioctl.c: DVD ioctl replacement function
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: dvd_ioctl.c,v 1.2 2001/02/26 12:16:28 sam Exp $
* $Id: dvd_ioctl.c,v 1.3 2001/03/05 11:53:44 sam Exp $
*
* Authors: Markus Kuespert <ltlBeBoy@beosmail.com>
* Samuel Hocevar <sam@zoy.org>
......@@ -27,6 +27,7 @@
*****************************************************************************/
#include "defs.h"
#include <sys/types.h>
#include <netinet/in.h>
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
......
......@@ -2,7 +2,7 @@
* input_ts.c: TS demux and netlist management
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: input_ts.c,v 1.6 2001/02/21 04:38:59 henri Exp $
* $Id: input_ts.c,v 1.7 2001/03/05 11:53:44 sam Exp $
*
* Authors:
*
......@@ -32,9 +32,9 @@
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/uio.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
......
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