]> git.sesse.net Git - vlc/blobdiff - Makefile.opts.in
* QNX RTOS plug-in by Jon Lech Johansen.
[vlc] / Makefile.opts.in
index b3e37be8bd69c78bafd4d5880a9808218a09f4c0..a072bf3dcbd44967a20d5c3e18447d5b24fe5a43 100644 (file)
@@ -35,6 +35,7 @@ ARCH = @ARCH@
 DEBUG = @DEBUG@
 STATS = @STATS@
 TRACE = @TRACE@
+PROFILING = @PROFILING@
 OPTIMS = @OPTIMS@
 GETOPT = @GETOPT@
 
@@ -45,6 +46,7 @@ CC = @CC@
 CFLAGS = @CFLAGS@
 SHELL = @SHELL@
 RANLIB = @RANLIB@
+WINDRES = @WINDRES@
 MOC = @MOC@
 
 # 
@@ -70,7 +72,9 @@ LIB_GLIDE = @LIB_GLIDE@
 LIB_GNOME = @LIB_GNOME@
 LIB_GTK = @LIB_GTK@
 LIB_IDCTALTIVEC = @LIB_IDCTALTIVEC@
+LIB_KDE = @LIB_KDE@
 LIB_MACOSX = @LIB_MACOSX@
+LIB_QNX = @LIB_QNX@
 LIB_NCURSES = @LIB_NCURSES@
 LIB_QT = @LIB_QT@
 LIB_TS = @LIB_TS@
@@ -107,6 +111,10 @@ ifeq ($(TRACE),1)
 PROGRAM_OPTIONS += TRACE
 DEFINE += -DTRACE
 endif
+ifeq ($(PROFILING),1)
+PROGRAM_OPTIONS += PROFILING
+DEFINE += -DPROFILING
+endif
 ifeq ($(STATS),1)
 PROGRAM_OPTIONS += STATS
 DEFINE += -DSTATS
@@ -124,6 +132,7 @@ endif
 
 # PROGRAM_VERSION is the current vlc version
 PROGRAM_VERSION=@VLC_VERSION@
+LIBDVDCSS_VERSION=@LIBDVDCSS_VERSION@
 
 # DEFINE will contain some of the constants definitions decided in Makefile, 
 # including SYS_xx. It will be passed to C compiler.
@@ -188,7 +197,11 @@ CFLAGS += -traditional-cpp
 endif
 
 ifneq (,$(findstring mingw32,$(SYS)))
-CFLAGS += -fnative-struct
+CFLAGS += -fnative-struct -D_OFF_T_ -D_off_t=long
+endif
+
+ifneq (,$(findstring bsd,$(SYS)))
+CFLAGS += -pthread
 endif
 
 # Optimizations : don't compile debug versions with them
@@ -196,8 +209,10 @@ ifeq ($(OPTIMS),1)
 CFLAGS += -O3
 CFLAGS += -ffast-math -funroll-loops
 ifneq ($(DEBUG),1)
+ifneq ($(PROFILING),1)
 CFLAGS += -fomit-frame-pointer
 endif
+endif
 
 # Optimizations for x86 familiy
 ifneq (,$(findstring 86,$(ARCH)))
@@ -235,7 +250,7 @@ LCFLAGS += @LCFLAGS@ $(LIB)
 LCFLAGS += -Wall
 #LCFLAGS += -s
 ifneq (,$(findstring mingw32,$(SYS)))
-LCFLAGS += -Xlinker --force-exe-suffix
+LCFLAGS += -mwindows -Xlinker --force-exe-suffix
 endif
 
 #
@@ -259,3 +274,7 @@ ifeq ($(DEBUG),1)
 CFLAGS += -g
 endif
 
+ifeq ($(PROFILING),1)
+CFLAGS += -pg
+endif
+