diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-02-26 14:18:52 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-02-26 14:18:52 +0100 |
commit | 1dbfbd6e0c5c2738f2f8d3b9b8ff0a3a9dc4e529 (patch) | |
tree | 7d453626109a4d36305307206ded637914b9833d /package/libtiff/Makefile | |
parent | 92e6956680178ab6b2ac30d85efe126af81e39b2 (diff) |
c++ compiler fixes
when C++ compiler is disabled by user, do not allow to
compile packages , which require a C++ compiler.
Older libtool unnecessary checks for c++ tools, so
regenerate autotool stuff.
Diffstat (limited to 'package/libtiff/Makefile')
-rw-r--r-- | package/libtiff/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/libtiff/Makefile b/package/libtiff/Makefile index 27060c07f..815decfe3 100644 --- a/package/libtiff/Makefile +++ b/package/libtiff/Makefile @@ -11,6 +11,7 @@ PKG_DESCR:= A library for reading/writing TIFF images PKG_SECTION:= libs PKG_URL:= http://www.libtiff.org/ PKG_SITES:= ftp://ftp.remotesensing.org/pub/libtiff/ +PKG_NEED_CXX:= 1 PKG_SUBPKGS:= LIBTIFF LIBTIFF_DEV PKGSD_LIBTIFF_DEV:= development files for libtiff @@ -28,7 +29,8 @@ include ${TOPDIR}/mk/package.mk $(eval $(call PKG_template,LIBTIFF,libtiff,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS})) $(eval $(call PKG_template,LIBTIFF_DEV,libtiff-dev,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKGSD_LIBTIFF_DEV},${PKGSC_LIBTIFF_DEV},${PKG_OPTS})) -CONFIGURE_ARGS+= --disable-cxx --disable-rpath +CONFIGURE_ARGS+= --disable-cxx \ + --disable-rpath post-install: ${INSTALL_DIR} ${IDIR_LIBTIFF}/usr/lib |