diff options
author | Timothy Gu <timothygu99@gmail.com> | 2015-09-01 22:14:02 (GMT) |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2015-09-01 22:14:02 (GMT) |
commit | 82f67ce80dcaa933a3e6f3ae44f60504aed0390b (patch) | |
tree | 7bf400e4b3ac9195777079b97b2bf98e0e225e55 | |
parent | d743026f89fccb70fd4a8fae21c378818c251721 (diff) | |
download | mxe-82f67ce80dcaa933a3e6f3ae44f60504aed0390b.zip mxe-82f67ce80dcaa933a3e6f3ae44f60504aed0390b.tar.gz mxe-82f67ce80dcaa933a3e6f3ae44f60504aed0390b.tar.bz2 |
db: Various fixes
-rw-r--r-- | src/db.mk | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -12,7 +12,7 @@ $(PKG)_DEPS := gcc define $(PKG)_UPDATE echo 'TODO: Updates for package db need to be fixed.' >&2; - echo $($(PKG)_VERSION) + echo $(db_VERSION) endef define $(PKG)_BUILD @@ -20,9 +20,10 @@ define $(PKG)_BUILD $(MXE_CONFIGURE_OPTS) \ --enable-mingw \ --enable-cxx \ - --disable-shared \ --disable-replication $(MAKE) -C '$(1)/build_unix' -j '$(JOBS)' $(MAKE) -C '$(1)/build_unix' -j 1 install $(MXE_DISABLE_DOCS) endef + +$(PKG)_BUILD_SHARED = |