Update of /cvsroot/bitcollider/bitcollider
In directory usw-pr-cvs1:/tmp/cvs-serv16426
Modified Files:
aclocal.m4 config.h.in ltmain.sh
Log Message:
Some cleanup for 0.3.3
Index: aclocal.m4
===================================================================
RCS file: /cvsroot/bitcollider/bitcollider/aclocal.m4,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** aclocal.m4 2001/08/10 22:29:30 1.6
--- aclocal.m4 2001/08/23 20:39:42 1.7
***************
*** 103,227 ****
AC_SUBST($1)])
! # serial 40 AC_PROG_LIBTOOL
! AC_DEFUN(AC_PROG_LIBTOOL,
[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
! # Save cache, so that ltconfig can load it
! AC_CACHE_SAVE
[...3571 lines suppressed...]
! dnl This is just to silence aclocal about the macro not being used
! ifelse([AC_DISABLE_FAST_INSTALL])dnl
# Like AC_CONFIG_HEADER, but automatically create stamp file.
--- 3415,3429 ----
])
! # old names
! AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL])
! AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
! AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
! AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
! AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
! AC_DEFUN([AM_PROG_LD], [AC_PROG_LD])
! AC_DEFUN([AM_PROG_NM], [AC_PROG_NM])
! # This is just to silence aclocal about the macro not being used
! ifelse([AC_DISABLE_FAST_INSTALL])
# Like AC_CONFIG_HEADER, but automatically create stamp file.
Index: config.h.in
===================================================================
RCS file: /cvsroot/bitcollider/bitcollider/config.h.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** config.h.in 2001/08/10 22:29:31 1.5
--- config.h.in 2001/08/23 20:39:42 1.6
***************
*** 11,14 ****
--- 11,17 ----
#undef SIZEOF_LONG
+ /* Define if you have the <dlfcn.h> header file. */
+ #undef HAVE_DLFCN_H
+
/* Name of package */
#undef PACKAGE
Index: ltmain.sh
===================================================================
RCS file: /cvsroot/bitcollider/bitcollider/ltmain.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** ltmain.sh 2001/07/31 18:49:20 1.3
--- ltmain.sh 2001/08/23 20:39:42 1.4
***************
*** 57,61 ****
PACKAGE=libtool
VERSION=1.4
! TIMESTAMP=" (1.920 2001/04/24 23:26:18)"
default_mode=
--- 57,61 ----
PACKAGE=libtool
VERSION=1.4
! TIMESTAMP=" (1.922 2001/04/25 00:05:37)"
default_mode=
***************
*** 460,464 ****
;;
esac
! if test $pic_mode = no && test "$deplibs_check_method" != pass_all; then
# non-PIC code in shared libraries is not supported
pic_mode=default
--- 460,464 ----
;;
esac
! if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
# non-PIC code in shared libraries is not supported
pic_mode=default
***************
*** 2411,2415 ****
*)
# Add libc to deplibs on all other systems if necessary.
! if test $build_libtool_need_lc = "yes"; then
deplibs="$deplibs -lc"
fi
--- 2411,2415 ----
*)
# Add libc to deplibs on all other systems if necessary.
! if test "$build_libtool_need_lc" = "yes"; then
deplibs="$deplibs -lc"
fi
***************
*** 2684,2688 ****
# Test again, we may have decided not to build it any more
if test "$build_libtool_libs" = yes; then
! if test $hardcode_into_libs = yes; then
# Hardcode the library paths
hardcode_libdirs=
--- 2684,2688 ----
# Test again, we may have decided not to build it any more
if test "$build_libtool_libs" = yes; then
! if test "$hardcode_into_libs" = yes; then
# Hardcode the library paths
hardcode_libdirs=
|