mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
docs/manual/Makefile.am: don't do parallel make
Original commit message from CVS: * docs/manual/Makefile.am: don't do parallel make * configure.ac: AC_SUBST HOST_CPU * win32/common/config.h.in: add generations for HOST_CPU and GST_MAJORMINOR * win32/common/config.h: commit generated result
This commit is contained in:
parent
48e21ffd6e
commit
8455a31e67
5 changed files with 28 additions and 5 deletions
19
ChangeLog
19
ChangeLog
|
@ -1,3 +1,14 @@
|
||||||
|
2006-01-14 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* docs/manual/Makefile.am:
|
||||||
|
don't do parallel make
|
||||||
|
* configure.ac:
|
||||||
|
AC_SUBST HOST_CPU
|
||||||
|
* win32/common/config.h.in:
|
||||||
|
add generations for HOST_CPU and GST_MAJORMINOR
|
||||||
|
* win32/common/config.h:
|
||||||
|
commit generated result
|
||||||
|
|
||||||
2006-01-13 Tim-Philipp Müller <tim at centricular dot net>
|
2006-01-13 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* docs/manual/appendix-integration.xml:
|
* docs/manual/appendix-integration.xml:
|
||||||
|
@ -12,18 +23,18 @@
|
||||||
* docs/gst/gstreamer-docs.sgml:
|
* docs/gst/gstreamer-docs.sgml:
|
||||||
* docs/gst/gstreamer-sections.txt:
|
* docs/gst/gstreamer-sections.txt:
|
||||||
* docs/libs/gstreamer-libs-sections.txt:
|
* docs/libs/gstreamer-libs-sections.txt:
|
||||||
add new API entries to the docs
|
add new API entries to the docs
|
||||||
* libs/gst/controller/Makefile.am:
|
* libs/gst/controller/Makefile.am:
|
||||||
* libs/gst/controller/gstcontroller.c:
|
* libs/gst/controller/gstcontroller.c:
|
||||||
* libs/gst/controller/gstcontroller.h:
|
* libs/gst/controller/gstcontroller.h:
|
||||||
* libs/gst/controller/gstcontrollerprivate.h:
|
* libs/gst/controller/gstcontrollerprivate.h:
|
||||||
* libs/gst/controller/gsthelper.c:
|
* libs/gst/controller/gsthelper.c:
|
||||||
* libs/gst/controller/gstinterpolation.c:
|
* libs/gst/controller/gstinterpolation.c:
|
||||||
move private structs to private header
|
move private structs to private header
|
||||||
* po/README:
|
* po/README:
|
||||||
gstreamer-0.7 -> gstreamer-0.10
|
gstreamer-0.7 -> gstreamer-0.10
|
||||||
* tests/check/libs/struct_i386.h:
|
* tests/check/libs/struct_i386.h:
|
||||||
remove private structs
|
remove private structs
|
||||||
|
|
||||||
2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
|
|
@ -185,6 +185,9 @@ dnl * hardware/architecture *
|
||||||
dnl common/m4/gst-arch.m4
|
dnl common/m4/gst-arch.m4
|
||||||
dnl check CPU type
|
dnl check CPU type
|
||||||
GST_ARCH
|
GST_ARCH
|
||||||
|
dnl substitution for win32/common/config.h
|
||||||
|
HOST_CPU=$host_cpu
|
||||||
|
AC_SUBST(HOST_CPU)
|
||||||
|
|
||||||
dnl common/m4/gst-arch.m4
|
dnl common/m4/gst-arch.m4
|
||||||
dnl check for unaligned access
|
dnl check for unaligned access
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
### this is the part you can customize if you need to
|
### this is the part you can customize if you need to
|
||||||
|
|
||||||
|
# parallel builds don't work, probably due to temporary files
|
||||||
|
MAKEFLAGS = -j1
|
||||||
|
|
||||||
# base name of doc
|
# base name of doc
|
||||||
DOC = manual
|
DOC = manual
|
||||||
# formats defined for upload.mak
|
# formats defined for upload.mak
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
#define GST_MAJORMINOR "0.10"
|
#define GST_MAJORMINOR "0.10"
|
||||||
|
|
||||||
/* Define host CPU */
|
/* Define host CPU */
|
||||||
#define HOST_CPU "i386"
|
#define HOST_CPU "i686"
|
||||||
|
|
||||||
/* Define if the host CPU is an Alpha */
|
/* Define if the host CPU is an Alpha */
|
||||||
#undef HAVE_CPU_ALPHA
|
#undef HAVE_CPU_ALPHA
|
||||||
|
|
|
@ -35,6 +35,12 @@
|
||||||
/* Define the version */
|
/* Define the version */
|
||||||
#define GST_VERSION "@GST_VERSION@"
|
#define GST_VERSION "@GST_VERSION@"
|
||||||
|
|
||||||
|
/* Define the MAJOR.MINOR version */
|
||||||
|
#define GST_MAJORMINOR "@GST_MAJORMINOR@"
|
||||||
|
|
||||||
|
/* Define host CPU */
|
||||||
|
#define HOST_CPU "@HOST_CPU@"
|
||||||
|
|
||||||
/* Define if the host CPU is an Alpha */
|
/* Define if the host CPU is an Alpha */
|
||||||
#undef HAVE_CPU_ALPHA
|
#undef HAVE_CPU_ALPHA
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue