summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/Makefile.am1
-rw-r--r--src/audio_out/Makefile.am4
-rw-r--r--src/video_out/Makefile.am4
-rw-r--r--src/xine-engine/Makefile.am8
4 files changed, 11 insertions, 6 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index 78923b1e5..25558f55b 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -4,7 +4,6 @@
EXTRA_DIST = xine.h.tmpl.in
-includedir = $(prefix)/include
include_HEADERS = xine.h
xine.h: xine.h.tmpl
diff --git a/src/audio_out/Makefile.am b/src/audio_out/Makefile.am
index 220f5991d..0e90b2028 100644
--- a/src/audio_out/Makefile.am
+++ b/src/audio_out/Makefile.am
@@ -2,6 +2,10 @@ CFLAGS = @GLOBAL_CFLAGS@ -DXINE_COMPILE
EXTRA_DIST = audio_alsa_out.c audio_esd_out.c
+LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
+
+libdir = $(XINE_PLUGINDIR)
+
if HAVE_ALSA
alsa_module = xineplug_ao_out_alsa.la
endif
diff --git a/src/video_out/Makefile.am b/src/video_out/Makefile.am
index 8d0c37c20..3ca9adb0a 100644
--- a/src/video_out/Makefile.am
+++ b/src/video_out/Makefile.am
@@ -1,5 +1,9 @@
CFLAGS = @GLOBAL_CFLAGS@ @X_CFLAGS@ -DXINE_COMPILE
+LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
+
+libdir = $(XINE_PLUGINDIR)
+
if HAVE_X11
## xshm and syncfb should be fixed first ;-)
## xshm_module = xineplug_vo_out_xshm.la
diff --git a/src/xine-engine/Makefile.am b/src/xine-engine/Makefile.am
index 007d07564..1ae2a2761 100644
--- a/src/xine-engine/Makefile.am
+++ b/src/xine-engine/Makefile.am
@@ -6,11 +6,9 @@ CFLAGS = @GLOBAL_CFLAGS@
lib_LTLIBRARIES = libxine.la
-##libxine_la_SOURCES = xine.c buffer.c metronom.c configfile.c \
-## monitor.c utils.c audio_decoder.c video_decoder.c load_plugins.c
-libxine_la_SOURCES = metronom.c configfile.c buffer.c monitor.c utils.c \
- cpu_accel.c load_plugins.c video_decoder.c audio_decoder.c \
- video_out.c
+libxine_la_SOURCES = xine.c metronom.c configfile.c buffer.c monitor.c \
+ utils.c cpu_accel.c load_plugins.c video_decoder.c \
+ audio_decoder.c video_out.c
libxine_la_DEPENDENCIES = libsdeps
libxine_la_LIBADD = \
## $(top_srcdir)/src/libmpeg2/libmpeg2.la \