mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
configure.ac: fix cross compiling not working. (fixes #143741)
Original commit message from CVS: reviewed by Benjamin Otte <otte@gnome.org> * configure.ac: fix cross compiling not working. (fixes #143741)
This commit is contained in:
parent
4e4b651999
commit
790f0c3322
3 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2004-06-07 Daniel Gazard <dany42@free.fr>
|
||||||
|
|
||||||
|
reviewed by Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
fix cross compiling not working. (fixes #143741)
|
||||||
|
|
||||||
2004-06-07 Benjamin Otte <otte@gnome.org>
|
2004-06-07 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
* gst/gstelement.c: (gst_element_set_time_delay):
|
* gst/gstelement.c: (gst_element_set_time_delay):
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit cf0828313f7cea4d5840c0959e9113f13309a56f
|
Subproject commit 46a6bafafc3f83c5dbccf20eae52db71c67dfe06
|
|
@ -31,7 +31,7 @@ AC_CONFIG_SRCDIR([gst/gst.c])
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
|
|
||||||
dnl Add parameters for aclocal
|
dnl Add parameters for aclocal
|
||||||
AC_SUBST(ACLOCAL_AMFLAGS, "-I common/m4")
|
AC_SUBST(ACLOCAL_AMFLAGS, "-I common/m4 -I .")
|
||||||
|
|
||||||
AM_PROG_CC_STDC
|
AM_PROG_CC_STDC
|
||||||
AM_PROG_AS
|
AM_PROG_AS
|
||||||
|
@ -170,6 +170,9 @@ int main () { return !(sizeof(off_t) == 8); }
|
||||||
AC_MSG_RESULT(yes)
|
AC_MSG_RESULT(yes)
|
||||||
GST_PKG_CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
GST_PKG_CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
],
|
||||||
[
|
[
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
])
|
])
|
||||||
|
|
Loading…
Reference in a new issue