Opened 21 years ago
Closed 21 years ago
#551 closed defect (fixed)
psmodule 0.8.0 requires pslib 0.8.0
| Reported by: | jhoblitt | Owned by: | |
|---|---|---|---|
| Priority: | high | Milestone: | |
| Component: | build | Version: | 0.8.0 |
| Severity: | minor | Keywords: | |
| Cc: |
Description
psmodule fails to even build against pslib 0.7.0 so we should explicitly require
0.8.0.
===================================================================
RCS file: /usr/local/cvs/repositories/pan-starrs/datasys/IPP/psModule/configure.ac,v
retrieving revision 1.11
diff -u -r1.11 configure.ac
--- configure.ac 13 Oct 2005 21:38:04 -0000 1.11
+++ configure.ac 14 Oct 2005 01:22:22 -0000
@@ -63,7 +63,7 @@
[PSLIB_CONFIG=$withval])
if test -z ${PSLIB_CONFIG} ; then
- PKG_CHECK_MODULES([PSLIB], [pslib >= 0.7.0])
+ PKG_CHECK_MODULES([PSLIB], [pslib >= 0.8.0])
else
AC_CHECK_FILE($PSLIB_CONFIG,[],
[AC_MSG_ERROR([psLib is required. If not in path, use --with-pslib-config
to specify pslib-config script location.])])

Rolled fix into rel8 branch and CVS. The fixed release set is tagged rel8_1.
-rdd