mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
header relocation
Original commit message from CVS: header relocation
This commit is contained in:
parent
65de555e54
commit
61a065eabd
7 changed files with 13 additions and 10 deletions
|
@ -4,7 +4,7 @@ library_LTLIBRARIES = libgstaudio.la
|
||||||
|
|
||||||
libgstaudio_la_SOURCES = audio.c
|
libgstaudio_la_SOURCES = audio.c
|
||||||
|
|
||||||
libgstaudioincludedir = $(includedir)/gst/audio
|
libgstaudioincludedir = $(includedir)/@PACKAGE@-@VERSION@/gst/audio
|
||||||
libgstaudioinclude_HEADERS = audio.h
|
libgstaudioinclude_HEADERS = audio.h
|
||||||
|
|
||||||
libgstaudio_la_LIBADD =
|
libgstaudio_la_LIBADD =
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
libgstfloatcastincludedir = $(includedir)/gst/floatcast
|
libgstfloatcastincludedir = $(includedir)/@PACKAGE@-@VERSION@/gst/floatcast
|
||||||
libgstfloatcastinclude_HEADERS = floatcast.h
|
libgstfloatcastinclude_HEADERS = floatcast.h
|
||||||
|
|
|
@ -15,7 +15,7 @@ libgstidct_la_SOURCES = \
|
||||||
intidct.c \
|
intidct.c \
|
||||||
$(GSTIDCTARCH_SRCS)
|
$(GSTIDCTARCH_SRCS)
|
||||||
|
|
||||||
libgstidctincludedir = $(includedir)/gst/idct
|
libgstidctincludedir = $(includedir)/@PACKAGE@-@VERSION@/gst/idct
|
||||||
libgstidctinclude_HEADERS = idct.h
|
libgstidctinclude_HEADERS = idct.h
|
||||||
|
|
||||||
## check_PROGRAMS = ieeetest
|
## check_PROGRAMS = ieeetest
|
||||||
|
|
|
@ -17,7 +17,7 @@ libgstresample_la_LIBADD =
|
||||||
libgstresample_la_CFLAGS = $(GST_CFLAGS) -ffast-math $(ARCHCFLAGS)
|
libgstresample_la_CFLAGS = $(GST_CFLAGS) -ffast-math $(ARCHCFLAGS)
|
||||||
libgstresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
libgstresampleincludedir = $(includedir)/gst/resample
|
libgstresampleincludedir = $(includedir)/@PACKAGE@-@VERSION@/gst/resample
|
||||||
libgstresampleinclude_HEADERS = resample.h
|
libgstresampleinclude_HEADERS = resample.h
|
||||||
|
|
||||||
noinst_HEADERS = private.h
|
noinst_HEADERS = private.h
|
||||||
|
|
|
@ -4,7 +4,7 @@ library_LTLIBRARIES = libgstriff.la
|
||||||
|
|
||||||
libgstriff_la_SOURCES = riffparse.c riffencode.c riffutil.c riff.c
|
libgstriff_la_SOURCES = riffparse.c riffencode.c riffutil.c riff.c
|
||||||
|
|
||||||
libgstriffincludedir = $(includedir)/gst/riff
|
libgstriffincludedir = $(includedir)/@PACKAGE@-@VERSION@/gst/riff
|
||||||
libgstriffinclude_HEADERS = riff.h
|
libgstriffinclude_HEADERS = riff.h
|
||||||
|
|
||||||
libgstriff_la_LIBADD =
|
libgstriff_la_LIBADD =
|
||||||
|
|
|
@ -106,10 +106,10 @@ GStreamer support libraries header files.
|
||||||
|
|
||||||
%files -n gstreamer-plugins-devel
|
%files -n gstreamer-plugins-devel
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
%{_includedir}/gst/audio/audio.h
|
%{_includedir}/gst-plugins-%{version}/gst/audio/audio.h
|
||||||
%{_includedir}/gst/idct/idct.h
|
%{_includedir}/gst-plugins-%{version}/gst/idct/idct.h
|
||||||
%{_includedir}/gst/resample/resample.h
|
%{_includedir}/gst-plugins-%{version}/gst/resample/resample.h
|
||||||
%{_includedir}/gst/riff/riff.h
|
%{_includedir}/gst-plugins-%{version}/gst/riff/riff.h
|
||||||
|
|
||||||
# Here are all the packages depending on external libs #
|
# Here are all the packages depending on external libs #
|
||||||
|
|
||||||
|
@ -1179,6 +1179,9 @@ processed with the lavtools from mjpegtools.
|
||||||
@USE_GCONF_TRUE@gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/gstreamer.schemas > /dev/null
|
@USE_GCONF_TRUE@gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/gstreamer.schemas > /dev/null
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Jun 23 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
||||||
|
- changed header location of plug-in libs
|
||||||
|
|
||||||
* Mon Jun 17 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
* Mon Jun 17 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
||||||
- major cleanups
|
- major cleanups
|
||||||
- adding gst-register on postun everywhere
|
- adding gst-register on postun everywhere
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
prefix=@prefix@
|
prefix=@prefix@
|
||||||
exec_prefix=@exec_prefix@
|
exec_prefix=@exec_prefix@
|
||||||
libdir=@libdir@
|
libdir=@libdir@
|
||||||
includedir=@includedir@
|
includedir=@includedir@/@PACKAGE@-@VERSION@
|
||||||
|
|
||||||
Name: GStreamer Media-Specific Libraries
|
Name: GStreamer Media-Specific Libraries
|
||||||
Description: Streaming-media framework, media-specific libraries
|
Description: Streaming-media framework, media-specific libraries
|
||||||
|
|
Loading…
Reference in a new issue