mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 19:27:38 +08:00

Add a shim implementing half-assed versions of most of the GLib functions used by MDB Tools. If GLib is detected at compile-time, use it, otherwise use the shim. This work is not complete, as the option-parsing code is not yet implemented - so most of the command-line tools crash.
6 lines
130 B
Makefile
6 lines
130 B
Makefile
include_HEADERS = mdbtools.h mdbsql.h mdbver.h
|
|
if !HAVE_GLIB
|
|
include_HEADERS += mdbfakeglib.h
|
|
endif
|
|
noinst_HEADERS = mdbprivate.h
|