View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0001035 | SOGo | Backend General | public | 2010-12-03 08:55 | 2011-06-16 15:44 |
Reporter | buzzdee | Assigned To | ludovic | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 1.3.4 | ||||
Target Version | 1.3.8 | Fixed in Version | 1.3.8 | ||
Summary | 0001035: On OpenBSD there is no -lcrypt | ||||
Description | Linking SOGo on OpenBSD fails, since it tries to link against a non existent libcrypt. However there is libcrypto. | ||||
Tags | No tags attached. | ||||
2010-12-03 08:55
|
patch-SoObjects_SOGo_GNUmakefile_preamble (588 bytes)
--- SoObjects/SOGo/GNUmakefile.preamble.orig Wed Nov 17 17:30:03 2010 +++ SoObjects/SOGo/GNUmakefile.preamble Fri Dec 3 09:42:53 2010 @@ -18,9 +18,15 @@ SOGo_LIBRARIES_DEPEND_UPON += \ -lNGCards \ -lNGMime \ -lNGStreams -lNGExtensions -lEOControl \ - -lXmlRpc -lDOM -lSaxObjC -lcrypt \ + -lXmlRpc -lDOM -lSaxObjC \ -lNGLdap -lSBJson \ -lGDLContentStore + +ifeq ($(findstring openbsd, $(GNUSTEP_HOST_OS)), openbsd) +SOGo_LIBRARIES_DEPEND_UPON += -lcrypto +else +SOGo_LIBRARIES_DEPEND_UPON += -lcrypt +endif ADDITIONAL_TOOL_LIBS += \ -L$(GNUSTEP_OBJ_DIR)/ \ |
could this be reviewed and commented, or even included if its fine? Shortly after a release is a good time to add new stuff, since the plenty of time for testing till the next release ;) |
|
Patch pushed: http://mtn.inverse.ca/revision/diff/869378c97b2bf3386ab9d61f8e107135f0dc0529/with/698461b7043455867e02dfbd291566ea991bf8a5 |
|
Date Modified | Username | Field | Change |
---|---|---|---|
2010-12-03 08:55 | buzzdee | New Issue | |
2010-12-03 08:55 | buzzdee | File Added: patch-SoObjects_SOGo_GNUmakefile_preamble | |
2011-02-15 22:02 | ludovic | Status | new => assigned |
2011-02-15 22:02 | ludovic | Assigned To | => ludovic |
2011-04-13 11:38 | buzzdee | Note Added: 0002376 | |
2011-06-15 20:56 | ludovic | Target Version | => 1.3.8 |
2011-06-16 15:44 | ludovic | Note Added: 0002592 | |
2011-06-16 15:44 | ludovic | Status | assigned => resolved |
2011-06-16 15:44 | ludovic | Fixed in Version | => 1.3.8 |
2011-06-16 15:44 | ludovic | Resolution | open => fixed |