diff options
author | Mario Limonciello <Mario_Limonciello@Dell.com> | 2009-02-26 08:57:07 +0100 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2009-02-26 08:57:07 +0100 |
commit | e3b9bf69e14ec6172e48642298619ae74c18c58f (patch) | |
tree | 5b104bd830e4573adfd60231164b9760cb48cf61 | |
parent | e20eefbf772cfaeaafc232d390005daa316d22b9 (diff) |
fix building with current libsmbios
Properly link against libsmbios library when enabling smbios support.
-rw-r--r-- | configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 4f36ad85..0630d601 100644 --- a/configure.in +++ b/configure.in @@ -414,6 +414,7 @@ if test "x$use_smbios" = "xyes" ; then AC_LANG_POP([C++]) if test "$LIB_SMBIOS" = "yes" ; then AC_MSG_CHECKING([for libsmbios >= 0.13.4]) + LIBS="$LIBS -lsmbios" AC_RUN_IFELSE([AC_LANG_SOURCE([[ #include <smbios/version.h> int main () |