Commit 791fb4e0 authored by Sam Hocevar's avatar Sam Hocevar

  * ./debian/control: fixed Debian build-depends.
  * ./include/config.h: changed RELEASE to HAVE_RELEASE because RELEASE
    is already defined in <scsi/scsi.h> under Linux.
parent 7de4e1a3
...@@ -223,7 +223,7 @@ CFLAGS += -D_REENTRANT ...@@ -223,7 +223,7 @@ CFLAGS += -D_REENTRANT
CFLAGS += -D_GNU_SOURCE CFLAGS += -D_GNU_SOURCE
ifeq ($(RELEASE),1) ifeq ($(RELEASE),1)
CFLAGS += -DRELEASE CFLAGS += -DHAVE_RELEASE
endif endif
# flags needed for clean beos compilation # flags needed for clean beos compilation
......
...@@ -3,14 +3,15 @@ Section: graphics ...@@ -3,14 +3,15 @@ Section: graphics
Priority: optional Priority: optional
Maintainer: Samuel Hocevar <sam@zoy.org> Maintainer: Samuel Hocevar <sam@zoy.org>
Build-Depends: debhelper (>=2.2.0), Build-Depends: debhelper (>=2.2.0),
xlibs-dev, xlibs-pic xlibs-dev, xlibs-pic,
libgnome-dev, libgnome-dev,
libggi2-dev, libggi2-dev,
libglide2-dev [i386], libglide2-dev [i386],
libesd0-dev, libesd0-dev,
libsdl1.2-dev (>=1.2.2-3.1), libsdl1.2-dev (>=1.2.2-3.1),
libqt-dev, libqt-dev,
libasound2-dev [alpha arm hppa i386 ia64 m68k mips mipsel powerpc s390 sparc] (>=0.9.0beta7) libasound2-dev [alpha arm hppa i386 ia64 m68k mips mipsel powerpc s390 sparc] (>=0.9.0beta7),
libarts-dev
Standards-Version: 3.5.6 Standards-Version: 3.5.6
Package: vlc Package: vlc
......
...@@ -416,7 +416,7 @@ ...@@ -416,7 +416,7 @@
/* Optimization level, from 0 to 2 - 1 is generally a good compromise. Remember /* Optimization level, from 0 to 2 - 1 is generally a good compromise. Remember
* that raising this level dramatically lengthens the compilation time. */ * that raising this level dramatically lengthens the compilation time. */
#ifdef RELEASE #ifdef HAVE_RELEASE
# define VPAR_OPTIM_LEVEL 2 # define VPAR_OPTIM_LEVEL 2
#else #else
# define VPAR_OPTIM_LEVEL 1 # define VPAR_OPTIM_LEVEL 1
......
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