configure.ac: add --no-as-needed to LDFLAGS
authorU. Artie Eoff <ullysses.a.eoff@intel.com>
Wed, 20 Feb 2013 00:21:55 +0000 (16:21 -0800)
committerU. Artie Eoff <ullysses.a.eoff@intel.com>
Wed, 20 Feb 2013 00:21:55 +0000 (16:21 -0800)
commit5f6d3bbdabfbca42bcb0d7dd1fcfe441c95a2ce2
treebbbf96d4dab531a47705960619b8a5f5fef2ee85
parentb61e50392569bb18bfce35bd36e4aacc0fd8a614
configure.ac: add --no-as-needed to LDFLAGS

The registration of the core, efl, etc... tests
are done at runtime when those particular libraries (shared libs)
are loaded.  Ubuntu does lazy loading of shared libraries, however
our test libraries aren't explicitly used/called into from wfits...
i.e. it relies on being loaded at startup.  Therefore, we need
to pass -Wl,--no-as-needed to the linker so that we get the correct
behavior on Ubuntu (i.e. bypass laziness).

Signed-off-by: U. Artie Eoff <ullysses.a.eoff@intel.com>
Signed-off-by: Brian Lovin <brian.j.lovin@intel.com>
configure.ac