Skip to content

MDBTools built for 32bit windows using MSYS2

License

GPL-2.0, Unknown licenses found

Licenses found

GPL-2.0
COPYING
Unknown
COPYING.LIB
Notifications You must be signed in to change notification settings

lsgunth/mdbtools-win

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MDBTools built for 32-bit Windows using MSYS2

Thanks to https://github.com/lsgunth/mdbtools-win for getting this started!

Compiling Notes

I had the biggest struggles trying to figure out how to get this to compile, so if anyone has a better process using MSYS2 directly, please let me know.

This is what finally worked: mdbtools/mdbtools#107 (comment)

cd mdbtools
autoreconf -i -f
./configure
make all
make install    # may not actually be necessary
  • Test some of the commands inside MinGW32 to make sure they function; mdb-ver -M is a reasonable one

Collecting Relevant Files

Still in MingW32 for this

cd
mkdir /mdbtools-win
cp -p /mdbtools/src/COPYING* /mdbtools-win/
cp -p /mdbtools/src/util/.libs/*.exe /mdbtools-win/
cp -p /mdbtools/src/sql/.libs/*.dll /mdbtools-win/
cp -p /mdbtools/src/libmdb/.libs/*.dll /mdbtools-win/
cp -p /mingw32/bin/libgcc*.dll /mdbtools-win/
cp -p /mingw32/bin/libiconv*.dll /mdbtools-win/
cp -p /mingw32/bin/libreadline*.dll /mdbtools-win/
cp -p /mingw32/bin/libtermcap*.dll /mdbtools-win/
cp -p /mingw32/bin/libwinpthread*.dll /mdbtools-win/

Copy to where you want and use for good.