From: Robert K. <may...@us...> - 2001-07-09 21:19:55
|
Update of /cvsroot/bitcollider/bitcollider In directory usw-pr-cvs1:/tmp/cvs-serv10439 Modified Files: Makefile.am autogen.sh configure.in Log Message: Converted the dlopen stuff to use the libtool ltdlopen stuff for greater portability. Index: Makefile.am =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/Makefile.am,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** Makefile.am 2001/05/31 21:57:38 1.8 --- Makefile.am 2001/07/09 21:19:52 1.9 *************** *** 7,11 **** AUTOMAKE_OPTIONS = foreign ! SUBDIRS = lib src vorbis wav image cvsclean: distclean --- 7,11 ---- AUTOMAKE_OPTIONS = foreign ! SUBDIRS = libltdl lib src vorbis wav image cvsclean: distclean Index: autogen.sh =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/autogen.sh,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** autogen.sh 2001/03/04 21:31:37 1.2 --- autogen.sh 2001/07/09 21:19:52 1.3 *************** *** 32,37 **** echo " autoheader" autoheader ! echo " libtoolize --automake" ! libtoolize --automake echo " automake --add-missing" automake --add-missing --- 32,37 ---- echo " autoheader" autoheader ! echo " libtoolize --automake --ltdl" ! libtoolize --automake --ltdl echo " automake --add-missing" automake --add-missing Index: configure.in =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/configure.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** configure.in 2001/05/31 21:57:38 1.9 --- configure.in 2001/07/09 21:19:52 1.10 *************** *** 14,17 **** --- 14,21 ---- AC_PROG_AWK AC_PROG_CC + AC_LIBLTDL_CONVENIENCE + AC_SUBST(INCLTDL) + AC_SUBST(LIBLTDL) + AC_LIBTOOL_DLOPEN AM_PROG_LIBTOOL AC_SUBST(LIBTOOL_DEPS) *************** *** 46,48 **** --- 50,53 ---- AC_DEFINE_UNQUOTED(PREFIX, "${prefix}") AM_CONFIG_HEADER(config.h) + AC_CONFIG_SUBDIRS(libltdl) AC_OUTPUT(Makefile lib/Makefile src/Makefile vorbis/Makefile wav/Makefile image/Makefile, echo timestamp > stamp-h) |