comparison configure.in @ 2030:7093bc725c63

[project @ 1996-03-25 20:43:06 by jwe]
author jwe
date Mon, 25 Mar 1996 20:43:06 +0000
parents 80e51bd305c6
children 86d6c42c192a
comparison
equal deleted inserted replaced
2029:6929f7bcba77 2030:7093bc725c63
18 ### 18 ###
19 ### You should have received a copy of the GNU General Public License 19 ### You should have received a copy of the GNU General Public License
20 ### along with Octave; see the file COPYING. If not, write to the Free 20 ### along with Octave; see the file COPYING. If not, write to the Free
21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 22
23 AC_REVISION($Revision: 1.176 $) 23 AC_REVISION($Revision: 1.177 $)
24 AC_PREREQ(2.0) 24 AC_PREREQ(2.0)
25 AC_INIT(src/octave.cc) 25 AC_INIT(src/octave.cc)
26 AC_CONFIG_HEADER(config.h) 26 AC_CONFIG_HEADER(config.h)
27 27
28 AC_DEFINE(OCTAVE_SOURCE, 1) 28 AC_DEFINE(OCTAVE_SOURCE, 1)
314 314
315 ### Try to make it possible to find getrusage on Solaris systems. 315 ### Try to make it possible to find getrusage on Solaris systems.
316 316
317 case "$canonical_host_type" in 317 case "$canonical_host_type" in
318 *-*-solaris2*) 318 *-*-solaris2*)
319 UBCLIB=/usr/ucblib/libucb.a 319 UCBLIB=/usr/ucblib/libucb.a
320 if test -f $UCBLIB; then 320 if test -f $UCBLIB; then
321 LIBS="-lc $UCBLIB $LIBS" 321 LIBS="-lc $UCBLIB $LIBS"
322 AC_MSG_RESULT([adding $UCBLIB to LIBS]) 322 AC_MSG_RESULT([adding $UCBLIB to LIBS])
323 fi 323 fi
324 ;; 324 ;;