diff options
author | nia <nia@pkgsrc.org> | 2018-11-29 17:12:13 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2018-11-29 17:12:13 +0000 |
commit | cb24f4e504ef1bb3faa3ceee5be194c706821167 (patch) | |
tree | 34f28f08e2e251210f54a2f712d27d0b5a7bd958 /emulators/libretro-dolphin | |
parent | 98db91d010c5f0fbdc4128d44d79fff7996bfd52 (diff) | |
download | pkgsrc-cb24f4e504ef1bb3faa3ceee5be194c706821167.tar.gz |
libretro-dolphin: -lrt seems needed on netbsd
Diffstat (limited to 'emulators/libretro-dolphin')
-rw-r--r-- | emulators/libretro-dolphin/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/emulators/libretro-dolphin/Makefile b/emulators/libretro-dolphin/Makefile index db837d80197..ac7fa0f25c4 100644 --- a/emulators/libretro-dolphin/Makefile +++ b/emulators/libretro-dolphin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2018/10/15 17:20:21 nia Exp $ +# $NetBSD: Makefile,v 1.2 2018/11/29 17:12:13 nia Exp $ DISTNAME= libretro-dolphin-20180827 CATEGORIES= emulators @@ -14,7 +14,7 @@ LICENSE= gnu-gpl-v2 EXTRACT_USING= bsdtar USE_CMAKE= yes USE_LANGUAGES= c c++14 -GCC_REQD+= 6.0 +GCC_REQD+= 6 CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release CMAKE_ARGS+= -DTRY_X11=OFF @@ -30,6 +30,8 @@ CMAKE_ARGS+= -DENABLE_SDL=OFF CMAKE_ARGS+= -DENABLE_EVDEV=OFF CMAKE_ARGS+= -DLIBRETRO=ON +LDFLAGS.NetBSD+= -lrt + INSTALLATION_DIRS+= ${PREFIX}/lib/libretro do-install: |