Summary: | New port: misc/skyutils A library required by the new version of smssend (same author) | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | machiel_mastenbroek <machiel_mastenbroek> | ||||||
Component: | Individual Port(s) | Assignee: | Thierry Thomas <thierry> | ||||||
Status: | Closed FIXED | ||||||||
Severity: | Affects Only Me | CC: | machiel | ||||||
Priority: | Normal | ||||||||
Version: | Latest | ||||||||
Hardware: | Any | ||||||||
OS: | Any | ||||||||
Attachments: |
|
Description
machiel_mastenbroek
2004-02-22 20:00:22 UTC
Responsible Changed From-To: freebsd-ports-bugs->thierry I'll take it. I have changed the Makefile and added this 2 extra lines USE_LIBTOOL= yes INSTALLS_SHLIB= yes This new file is created from the relative path 'misc/skyutils/' The file is also available from the following location: http://www.generaal.net/san/skyutils _________________________________________________________________ Hotmail en Messenger on the move http://www.msn.nl/communicatie/smsdiensten/hotmailsmsv2/ State Changed From-To: open->closed Committed, thanks! Remark: the patch file is now under files/. The configuration utility from the skyutils library (/usr/local/bin/skyutils-config libs) does not return the linker option -lcrypto. Fix: A new patch file for configure.in. --- patch_file begins here --- --- configure.in Wed Aug 27 20:54:02 2003 +++ configure.in.new Sat Feb 21 13:37:18 2004 @@ -171,7 +171,7 @@ SU_SSL_CFLAGS="" if test "$ssl" = "true"; then - AC_CHECK_LIB(ssl,SSL_library_init,SU_SSL_LIB="-lssl") + AC_CHECK_LIB(ssl,SSL_library_init,SU_SSL_LIB="-lssl -lcrypto", ,-lcrypto) if test ! "$SU_SSL_LIB"; then AC_MSG_WARN("Cannot find libssl... ssl code in skyweb will be disabled") else --- patch_file ends here --- This file is also available from here: http://machiel.generaal.net/files/patches/skyutils-2.6/patch2-configure.in |