diff options
| -rwxr-xr-x | configure | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -93,6 +93,23 @@ else in_tree_libweb=1 proj_CFLAGS="$proj_CFLAGS -Ilibweb/include" proj_LDFLAGS="$proj_LDFLAGS -Llibweb -lweb" + + if [ -f libweb/Makefile ] + then + echo "Info: Re-configuring libweb" >&2 + (cd libweb && CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" ./configure \ + --prefix="$prefix") + fi +fi + +if [ $build_thumbnail -ne 0 ] +then + if [ -f thumbnail/Makefile ] + then + echo "Info: Re-configuring thumbnail" >&2 + (cd thumbnail && CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" ./configure \ + --prefix="$prefix") + fi fi if pkg-config fdzipstream |
