|
From: <mla...@us...> - 2006-08-20 19:52:47
|
Revision: 50 Author: mlampard Date: 2006-08-20 12:51:52 -0700 (Sun, 20 Aug 2006) ViewCVS: http://svn.sourceforge.net/g15daemon/?rev=50&view=rev Log Message: ----------- make configure bailouts over libdaemon and libg15 a bit clearer Modified Paths: -------------- trunk/g15daemon/configure trunk/g15daemon/configure.in Modified: trunk/g15daemon/configure =================================================================== --- trunk/g15daemon/configure 2006-08-06 05:29:18 UTC (rev 49) +++ trunk/g15daemon/configure 2006-08-20 19:51:52 UTC (rev 50) @@ -19711,8 +19711,8 @@ LIBS="-ldaemon $LIBS" else - { { echo "$as_me:$LINENO: error: \"libdaemon not found. please install it\"" >&5 -echo "$as_me: error: \"libdaemon not found. please install it\"" >&2;} + { { echo "$as_me:$LINENO: error: \"libdaemon (or its devel package) not found. please install it\"" >&5 +echo "$as_me: error: \"libdaemon (or its devel package) not found. please install it\"" >&2;} { (exit 1); exit 1; }; } fi @@ -19789,8 +19789,8 @@ LIBS="-lg15 $LIBS" else - { { echo "$as_me:$LINENO: error: \"libg15 not found. please install it\"" >&5 -echo "$as_me: error: \"libg15 not found. please install it\"" >&2;} + { { echo "$as_me:$LINENO: error: \"libg15 (or its devel package) not found. please install it\"" >&5 +echo "$as_me: error: \"libg15 (or its devel package) not found. please install it\"" >&2;} { (exit 1); exit 1; }; } fi Modified: trunk/g15daemon/configure.in =================================================================== --- trunk/g15daemon/configure.in 2006-08-06 05:29:18 UTC (rev 49) +++ trunk/g15daemon/configure.in 2006-08-20 19:51:52 UTC (rev 50) @@ -13,8 +13,8 @@ AC_PROG_RANLIB # Checks for libraries. -AC_CHECK_LIB([daemon], [daemon_log],,AC_MSG_ERROR(["libdaemon not found. please install it"])) -AC_CHECK_LIB([g15], [initLibG15],,AC_MSG_ERROR(["libg15 not found. please install it"])) +AC_CHECK_LIB([daemon], [daemon_log],,AC_MSG_ERROR(["libdaemon (or its devel package) not found. please install it"])) +AC_CHECK_LIB([g15], [initLibG15],,AC_MSG_ERROR(["libg15 (or its devel package) not found. please install it"])) AC_CHECK_LIB([m], [sin]) AC_CHECK_LIB([pthread], [pthread_mutex_init]) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |