diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-12-08 14:50:10 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-12-08 14:50:10 +0000 |
commit | 708cf898e85bb1742870f6b3cabcc74b28f01c5f (patch) | |
tree | 022549fcd528cd742ef2fc6569ebd94a0030e97f /gst-libs/gst/idct | |
parent | 2a19514098f24c47f8642e7f0b4b762e5dc9d05d (diff) | |
download | gst-plugins-bad-708cf898e85bb1742870f6b3cabcc74b28f01c5f.tar.gz gst-plugins-bad-708cf898e85bb1742870f6b3cabcc74b28f01c5f.tar.bz2 gst-plugins-bad-708cf898e85bb1742870f6b3cabcc74b28f01c5f.zip |
parallel install fixes
Original commit message from CVS:
parallel install fixes
Diffstat (limited to 'gst-libs/gst/idct')
-rw-r--r-- | gst-libs/gst/idct/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gst-libs/gst/idct/Makefile.am b/gst-libs/gst/idct/Makefile.am index 8716bb71..1f3b1227 100644 --- a/gst-libs/gst/idct/Makefile.am +++ b/gst-libs/gst/idct/Makefile.am @@ -4,7 +4,7 @@ else GSTIDCTARCH_SRCS = endif -librarydir = $(libdir)/gst +librarydir = $(libdir)/gstreamer-@GST_MAJORMINOR@ library_LTLIBRARIES = libgstidct.la @@ -15,8 +15,9 @@ libgstidct_la_SOURCES = \ intidct.c \ $(GSTIDCTARCH_SRCS) -libgstidctincludedir = $(includedir)/@PACKAGE@-@VERSION@/gst/idct -libgstidctinclude_HEADERS = idct.h +## libgstidctincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/idct +## libgstidctinclude_HEADERS = idct.h +noinst_HEADERS = idct.h dct.h ## check_PROGRAMS = ieeetest @@ -25,7 +26,6 @@ libgstidctinclude_HEADERS = idct.h ## ieeetest_CFLAGS = $(GST_CFLAGS) ## ieeetest_LDFLAGS = $(GST_LIBS) -noinst_HEADERS = dct.h libgstidct_la_LIBADD = libgstidct_la_CFLAGS = $(GST_CFLAGS) -finline-functions -ffast-math |