Date: Sun, 4 Nov 2018 10:36:19 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483990 - in head/devel: efl libepoll-shim Message-ID: <201811041036.wA4AaJtC024157@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Sun Nov 4 10:36:19 2018 New Revision: 483990 URL: https://svnweb.freebsd.org/changeset/ports/483990 Log: devel/libepoll-shim: fix underlinking configure:6453: cc -O2 -pipe -I/usr/local/include/libepoll-shim -DLIBICONV_PLUG -fstack-protector -fno-strict-aliasing -I/usr/local/include -DLIBICONV_PLUG -L/usr/local/lib -lepoll-shim -fstack-protector conftest.c >&5 /usr/local/lib/libepoll-shim.so: undefined reference to `timer_settime' /usr/local/lib/libepoll-shim.so: undefined reference to `timer_delete' /usr/local/lib/libepoll-shim.so: undefined reference to `pthread_getthreadid_np' /usr/local/lib/libepoll-shim.so: undefined reference to `pthread_create' /usr/local/lib/libepoll-shim.so: undefined reference to `timer_create' /usr/local/lib/libepoll-shim.so: undefined reference to `timer_getoverrun' cc: error: linker command failed with exit code 1 (use -v to see invocation) Obtained from: upstream Approved by: portmgr blanket Modified: head/devel/efl/Makefile (contents, props changed) head/devel/libepoll-shim/Makefile (contents, props changed) head/devel/libepoll-shim/distinfo (contents, props changed) Modified: head/devel/efl/Makefile ============================================================================== --- head/devel/efl/Makefile Sun Nov 4 10:35:52 2018 (r483989) +++ head/devel/efl/Makefile Sun Nov 4 10:36:19 2018 (r483990) @@ -85,7 +85,7 @@ PHYSICS_CONFIGURE_ENABLE= physics PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_CONFIGURE_ENABLE= pulseaudio -WAYLAND_BROKEN= WAYLAND option is broken: https://phab.enlightenment.org/T7116 +WAYLAND_BROKEN= ERROR: epoll_create() is deprecated, use epoll_create1(EPOLL_CLOEXEC). WAYLAND_BUILD_DEPENDS= wayland-protocols>=1.7:graphics/wayland-protocols WAYLAND_LIB_DEPENDS= libepoll-shim.so:devel/libepoll-shim \ libxkbcommon.so:x11/libxkbcommon \ Modified: head/devel/libepoll-shim/Makefile ============================================================================== --- head/devel/libepoll-shim/Makefile Sun Nov 4 10:35:52 2018 (r483989) +++ head/devel/libepoll-shim/Makefile Sun Nov 4 10:36:19 2018 (r483990) @@ -3,8 +3,12 @@ PORTNAME= libepoll-shim PORTVERSION= 0.0.20161220 +PORTREVISION= 1 CATEGORIES= devel +PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ +PATCHFILES= dbd89815cc3a.patch:-p1 dc10c10f11d6.patch:-p1 + MAINTAINER= x11@FreeBSD.org COMMENT= epoll shim implemented using kevent @@ -26,7 +30,7 @@ MAKE_ARGS= INCSDIR=${PREFIX}/include/libepoll-shim/sys post-patch: .if "${CHOSEN_COMPILER_TYPE}" == "gcc" @${REINPLACE_CMD} -e 's|Wno-missing-variable-declarations|Wno-missing-declarations|' \ - -e 's|-Wno-thread-safety-analysis||' -e 's|Weverything|Wall|' ${WRKSRC}/Makefile + -e 's|-Wno-thread-safety-analysis||' ${WRKSRC}/Makefile .endif pre-install: Modified: head/devel/libepoll-shim/distinfo ============================================================================== --- head/devel/libepoll-shim/distinfo Sun Nov 4 10:35:52 2018 (r483989) +++ head/devel/libepoll-shim/distinfo Sun Nov 4 10:36:19 2018 (r483990) @@ -1,3 +1,7 @@ TIMESTAMP = 1482268996 SHA256 (FreeBSDDesktop-epoll-shim-0.0.20161220-c04b26b_GH0.tar.gz) = ae644d6b21567e9bb5e3a145e6e8ce233de16dc6c93ca4a1facb24f1375f442a SIZE (FreeBSDDesktop-epoll-shim-0.0.20161220-c04b26b_GH0.tar.gz) = 7634 +SHA256 (dbd89815cc3a.patch) = acd75a9305d5465e8f7a6a5cc7cfa4fe41dac90a69120639ed1e25dd071fc0c3 +SIZE (dbd89815cc3a.patch) = 958 +SHA256 (dc10c10f11d6.patch) = 65e4c048236aafb1c1807a82cb85aa1ced225af5f13a31c54d1154888a75e0f5 +SIZE (dc10c10f11d6.patch) = 870
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811041036.wA4AaJtC024157>