|
From: <cn...@us...> - 2021-04-30 17:43:29
|
Revision: 1175
http://sourceforge.net/p/seq/svn/1175
Author: cn187
Date: 2021-04-30 17:43:22 +0000 (Fri, 30 Apr 2021)
Log Message:
-----------
Add checks for libpng and libICE to reduce silent configure failures
Modified Paths:
--------------
showeq/branches/cn187_devel/configure.in
Modified: showeq/branches/cn187_devel/configure.in
===================================================================
--- showeq/branches/cn187_devel/configure.in 2021-04-30 16:21:14 UTC (rev 1174)
+++ showeq/branches/cn187_devel/configure.in 2021-04-30 17:43:22 UTC (rev 1175)
@@ -162,6 +162,8 @@
AC_CHECK_LIB(X11, _init, [], AC_MSG_ERROR(cannot find X11 library. Install the X11 development package))
AC_CHECK_LIB(Xext, _init, [], AC_MSG_ERROR(cannot find Xext library. Install the Xext development package))
+AC_CHECK_LIB(png, _init, [], AC_MSG_ERROR(cannot find PNG library. Install the png development package))
+AC_CHECK_LIB(ICE, _init, [], AC_MSG_ERROR(cannot find ICE library. Install the ICE development package))
AC_PATH_QT_MOC
AC_PATH_QT_UIC
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|