|
From: <cn...@us...> - 2021-01-05 17:07:42
|
Revision: 1127
http://sourceforge.net/p/seq/svn/1127
Author: cn187
Date: 2021-01-05 17:07:41 +0000 (Tue, 05 Jan 2021)
Log Message:
-----------
Add configure checks for X11 and Xext
Modified Paths:
--------------
showeq/branches/pre_6_0_beta/configure.in
Modified: showeq/branches/pre_6_0_beta/configure.in
===================================================================
--- showeq/branches/pre_6_0_beta/configure.in 2020-12-20 04:46:39 UTC (rev 1126)
+++ showeq/branches/pre_6_0_beta/configure.in 2021-01-05 17:07:41 UTC (rev 1127)
@@ -160,6 +160,9 @@
]
)
+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_PATH_QT_MOC
AC_PATH_QT_UIC
AC_PATH_QT
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|