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 /editors/glimmer | |
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
Diffstat (limited to 'editors/glimmer')
-rw-r--r-- | editors/glimmer/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |