# HG changeset patch # User John W. Eaton # Date 1353013360 18000 # Node ID 4d32dc6aca864f6a8ece36783cfb87e3777a121e # Parent 47558e95811379225519cac12a36fce8f6cfa451 By default, build shared instead of static libraries. diff -r 47558e958113 -r 4d32dc6aca86 Makefile --- a/Makefile Thu Nov 15 16:11:45 2012 -0500 +++ b/Makefile Thu Nov 15 16:02:40 2012 -0500 @@ -4,8 +4,8 @@ # Enable shared or static libs, or perhaps both. At least one # package uses --with instead of --enable. Probably it doesn't # make sense to disable both... -BUILD_SHARED := no -BUILD_STATIC := yes +BUILD_SHARED := yes +BUILD_STATIC := no ifeq ($(BUILD_SHARED),yes) ifeq ($(BUILD_STATIC),yes) ENABLE_SHARED_OR_STATIC := --enable-shared --enable-static