diff options
author | osa <osa@FreeBSD.org> | 2003-10-13 19:26:25 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2003-10-13 19:26:25 +0800 |
commit | 7c2720954ec0fd46a82b4830e6abf58d76b69b05 (patch) | |
tree | 7767e768ce5011a48cbde11fbaefc4e3a9da54cd /graphics | |
parent | 4436ca339f0d634377038ef5e9eed368e67f430b (diff) | |
download | freebsd-ports-gnome-7c2720954ec0fd46a82b4830e6abf58d76b69b05.tar.gz freebsd-ports-gnome-7c2720954ec0fd46a82b4830e6abf58d76b69b05.tar.zst freebsd-ports-gnome-7c2720954ec0fd46a82b4830e6abf58d76b69b05.zip |
Fix configure by remove -lcipher.
Configure/build tested on: -stable, -current
Notice from: kris via dosirak.kr
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/hdf5/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/hdf5/Makefile b/graphics/hdf5/Makefile index 8522d22cd6d7..86a7fb1f095d 100644 --- a/graphics/hdf5/Makefile +++ b/graphics/hdf5/Makefile @@ -30,7 +30,8 @@ post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|[\$$]CFLAGS -pthread|\$$CFLAGS|g ; \ s|-D_THREAD_SAFE|${PTHREAD_CFLAGS}|g ; \ - s|[\$$]LDFLAGS -pthread|\$$LDFLAGS ${PTHREAD_LIBS}|g' \ + s|[\$$]LDFLAGS -pthread|\$$LDFLAGS ${PTHREAD_LIBS}|g ; \ + s|-lcipher||g' \ ${WRKSRC}/config/freebsd @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/config/gnu-flags |