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:
Thomas Vander Stichele 2006-01-14 11:20:40 +00:00
parent 48e21ffd6e
commit 8455a31e67
5 changed files with 28 additions and 5 deletions

View file

@ -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>
* docs/manual/appendix-integration.xml:
@ -12,18 +23,18 @@
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-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/gstcontroller.c:
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrollerprivate.h:
* libs/gst/controller/gsthelper.c:
* libs/gst/controller/gstinterpolation.c:
move private structs to private header
move private structs to private header
* po/README:
gstreamer-0.7 -> gstreamer-0.10
gstreamer-0.7 -> gstreamer-0.10
* tests/check/libs/struct_i386.h:
remove private structs
remove private structs
2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>

View file

@ -185,6 +185,9 @@ dnl * hardware/architecture *
dnl common/m4/gst-arch.m4
dnl check CPU type
GST_ARCH
dnl substitution for win32/common/config.h
HOST_CPU=$host_cpu
AC_SUBST(HOST_CPU)
dnl common/m4/gst-arch.m4
dnl check for unaligned access

View file

@ -1,5 +1,8 @@
### 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
DOC = manual
# formats defined for upload.mak

View file

@ -39,7 +39,7 @@
#define GST_MAJORMINOR "0.10"
/* Define host CPU */
#define HOST_CPU "i386"
#define HOST_CPU "i686"
/* Define if the host CPU is an Alpha */
#undef HAVE_CPU_ALPHA

View file

@ -35,6 +35,12 @@
/* Define the 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 */
#undef HAVE_CPU_ALPHA