diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-10-31 09:07:24 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-10-31 09:07:24 +0000 |
commit | 38df81372ebc16bd60941df09a604cc729776ccb (patch) | |
tree | 6bc7cce05f53edadefaca9d8da1d731a2e7c0444 | |
parent | Update some packages. (diff) |
Also add -lssl in addition to -lcrypto to fix builds on systems with crypto
installed.
Submitted by: bento
Notes
Notes:
svn path=/head/; revision=34485
-rw-r--r-- | devel/veepee/Makefile | 2 | ||||
-rw-r--r-- | editors/glimmer/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/devel/veepee/Makefile b/devel/veepee/Makefile index 75c5ca489318..e9d7e6e59e52 100644 --- a/devel/veepee/Makefile +++ b/devel/veepee/Makefile @@ -23,7 +23,7 @@ CONFIGURE_ENV= LDFLAGS="-pthread ${PYTHON_LIBS}" CONFIGURE_ARGS= --with-gd-includes=${LOCALBASE}/include/gd \ --disable-kde .if exists(/usr/lib/libcrypto.a) -PYTHON_LIBS+= -lcrypto +PYTHON_LIBS+= -lssl -lcrypto .endif pre-patch: diff --git a/editors/glimmer/Makefile b/editors/glimmer/Makefile index 099871a5afe2..4c395ad3ac3b 100644 --- a/editors/glimmer/Makefile +++ b/editors/glimmer/Makefile @@ -21,7 +21,7 @@ USE_LIBTOOL= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" .if exists(/usr/lib/libcrypto.a) -PYTHON_LIBS= -lcrypto +PYTHON_LIBS= -lssl -lcrypto .endif PYTHON_LIBS+= -lutil -lreadline -lcrypt -lpython |