Package Base Details: gstreamer0.10-bad

Git Clone URL: https://aur.archlinux.org/gstreamer0.10-bad.git (read-only, click to copy)
Keywords: deprecated discontinued gst multimedia
Submitter: yurikoles
Maintainer: Hattshire
Last Packager: Hattshire
Votes: 17
Popularity: 0.000000
First Submitted: 2017-01-26 13:46 (UTC)
Last Updated: 2023-07-23 13:10 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

bernd_b commented on 2017-09-14 18:18 (UTC)

Today I tried the second fix (CPPFLAGS=-I/usr/include/openssl-1.0 LDFLAGS=-L/usr/lib/openssl-1.0 ./configure --prefix=/usr ... ) and it compiled to the end.

aspirogrammer commented on 2017-05-26 21:23 (UTC)

It seems the "--disable-apexsink" flag was necessary for me.

hamelg commented on 2017-05-11 18:37 (UTC)

To fix nicely the issue, 2 choices : * Remove the dependencies with openssl by disabling apex : . add the flag --disable-apexsink in ./configure arguments or * Compile with openssl 1.0 : . Add openssl-1.0 in the dependencies list . CPPFLAGS=-I/usr/include/openssl-1.0 LDFLAGS=-L/usr/lib/openssl-1.0 ./configure --prefix=/usr ...

bquast commented on 2017-05-08 07:18 (UTC)

@mgd, is it necessary to reverse those steps after makepkg?

mgd commented on 2017-04-26 22:23 (UTC)

At first glance that error seems to have been introduced when openssl upgraded from openssl-1.0.x to openssl-1.1.x Here is how I got it compiled: Assuming you have both openssl and openssl-1.0 packages installed: pushd /usr/include sudo mv openssl openssl-1.1 sudo ln openssl-1.0/openssl openssl popd and then issue makepkg to build this package. When done you probably want to undo the above by pushd /usr/include sudo rm openssl sudo mv openssl-1.1 openssl popd I have not tested the thus created packages. However I could successfully build them.

godhimself commented on 2017-04-26 10:29 (UTC) (edited on 2017-04-26 10:35 (UTC) by godhimself)

Build failed on two different devices with the same errors: gstapexraop.c: In function »gst_apexraop_connect«: gstapexraop.c:295:6: Error: dereferencing pointer to incomplete type »RSA {aka struct rsa_st}« rsa->n = BN_bin2bn (mod, size, NULL); ^~ gstapexraop.c: In function »gst_apexraop_write«: gstapexraop.c:680:18: Error: Size of »aes_ctx« is unkown EVP_CIPHER_CTX aes_ctx; ^~~~~~~ gstapexraop.c:680:18: Warnung: Variable »aes_ctx« is not used [-Wunused-variable] make[3]: *** [Makefile:783: libgstapexsink_la-gstapexraop.lo] Error 1 make[3]: Leaving directory '/home/god/AUR/gstreamer0.10-bad/src/gst-plugins-bad/ext/apexsink' make[2]: *** [Makefile:1246: apexsink] Error 2 make[2]: Leaving directory '/home/god/AUR/gstreamer0.10-bad/src/gst-plugins-bad/ext' make[1]: *** [Makefile:835: all-recursive] Error 1 make[1]: Leaving directory '/home/god/AUR/gstreamer0.10-bad/src/gst-plugins-bad' make: *** [Makefile:762: all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... hamelg's solution did not work for me

keepitsimpleengr commented on 2017-03-28 16:11 (UTC)

ERROR: A failure occurred in build(). ========= make[3]: Leaving directory '/home/ljohnson/AUR/gstreamer0.10-bad/src/gst-plugins-bad/ext/resindvd' CCLD libgstcog.la make[4]: Leaving directory '/home/ljohnson/AUR/gstreamer0.10-bad/src/gst-plugins-bad/ext/cog' make[3]: Leaving directory '/home/ljohnson/AUR/gstreamer0.10-bad/src/gst-plugins-bad/ext/cog' make[2]: Leaving directory '/home/ljohnson/AUR/gstreamer0.10-bad/src/gst-plugins-bad/ext' make[1]: *** [Makefile:835: all-recursive] Error 1 make[1]: Leaving directory '/home/ljohnson/AUR/gstreamer0.10-bad/src/gst-plugins-bad' make: *** [Makefile:762: all] Error 2 ==> ERROR: A failure occurred in build(). Aborting...

t0m5k1 commented on 2017-03-10 11:24 (UTC)

not building for me: /usr/lib/libharfbuzz.so.0: undefined reference to `FT_Get_Var_Blend_Coordinates' collect2: error: ld returned 1 exit status make[4]: *** [Makefile:736: gst-camera] Error 1 make[4]: Leaving directory '/home/t0m5k1/.cache/pacaur/gstreamer0.10-bad/src/gst-plugins-bad/tests/examples/camerabin' make[3]: *** [Makefile:961: camerabin] Error 2 make[3]: Leaving directory '/home/t0m5k1/.cache/pacaur/gstreamer0.10-bad/src/gst-plugins-bad/tests/examples' make[2]: *** [Makefile:682: all-recursive] Error 1 make[2]: Leaving directory '/home/t0m5k1/.cache/pacaur/gstreamer0.10-bad/src/gst-plugins-bad/tests' make[1]: *** [Makefile:835: all-recursive] Error 1 make[1]: Leaving directory '/home/t0m5k1/.cache/pacaur/gstreamer0.10-bad/src/gst-plugins-bad' make: *** [Makefile:762: all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... :: failed to build gstreamer0.10-bad package(s) Any pointers?

millerl commented on 2017-03-07 14:33 (UTC)

"./configure" --> "EGLGLES_LIBS=-L/usr/lib/mesa ./configure" worked for me as well.

HiJack88 commented on 2017-03-04 20:01 (UTC)

@produnis: I can confirm that either. Now finally it compiles & installs fine. Thank you very much hamelg!