diff options
author | corvid <corvid@lavabit.com> | 2011-01-09 17:57:17 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2011-01-09 17:57:17 +0000 |
commit | 1a186724d9e09e7e03d7ab46c2fcfc0a327d9b53 (patch) | |
tree | ab7f4ee0ce8373ffbfea09b11e435d1afdac4a25 | |
parent | 6962a75df5b4fb5ebb54a14ad56fccf34ce8491e (diff) |
don't need --use-images with fltk2-config
This brings fltk's image/* files into the equation (which turn into
libfltk2_images.a). Since dillo doesn't use them, ld seems to have the
good sense not to add any of it in, but we can save it the trouble of
looking through it...
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 1d319392..86ed4726 100644 --- a/configure.in +++ b/configure.in @@ -151,7 +151,7 @@ if sh -c "fltk2-config --version" >/dev/null 2>&1 then AC_MSG_RESULT(yes) LIBFLTK_CXXFLAGS=`fltk2-config --cxxflags` LIBFLTK_CFLAGS=`fltk2-config --cflags` - LIBFLTK_LIBS=`fltk2-config --use-images --ldflags` + LIBFLTK_LIBS=`fltk2-config --ldflags` else AC_MSG_RESULT(no) AC_ERROR(FLTK2 must be installed!) fi |