From: Robert K. <may...@us...> - 2001-07-31 18:49:24
|
Update of /cvsroot/bitcollider/bitcollider In directory usw-pr-cvs1:/tmp/cvs-serv21067 Modified Files: aclocal.m4 config.h.in ltmain.sh Log Message: Fixed bugs #427503 (extracting ID3v2 genres) and finished off the audioSha problems. Index: aclocal.m4 =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/aclocal.m4,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** aclocal.m4 2001/03/19 23:38:29 1.4 --- aclocal.m4 2001/07/31 18:49:20 1.5 *************** *** 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.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** config.h.in 2001/03/19 23:38:29 1.3 --- config.h.in 2001/07/31 18:49:20 1.4 *************** *** 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.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ltmain.sh 2001/04/03 23:53:48 1.2 --- ltmain.sh 2001/07/31 18:49:20 1.3 *************** *** 1,6 **** # ltmain.sh - Provide generalized library-building support services. ! # NOTE: Changing this file will not affect anything until you rerun ltconfig. # ! # Copyright (C) 1996-1999 Free Software Foundation, Inc. # Originally by Gordon Matzigkeit <go...@gn...>, 1996 # --- 1,7 ---- # ltmain.sh - Provide generalized library-building support services. ! # NOTE: Changing this file will not affect anything until you rerun configure. # [...4279 lines suppressed...] compile) $echo \ *************** *** 3888,3891 **** --- 4806,4811 ---- -o OUTPUT-FILE set the output file name to OUTPUT-FILE + -prefer-pic try to building PIC objects only + -prefer-non-pic try to building non-PIC objects only -static always build a \`.o' file suitable for static linking *************** *** 3967,3970 **** --- 4887,4892 ---- -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened + -no-fast-install disable the fast-install mode + -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects |