[Buildroot] svn commit: trunk/buildroot/package/pcre

jacmet at uclibc.org jacmet at uclibc.org
Sat Aug 16 12:32:54 UTC 2008


Author: jacmet
Date: 2008-08-16 05:32:54 -0700 (Sat, 16 Aug 2008)
New Revision: 23091

Log:
pcre: fix compilation when C++ support is disabled

pcre will use host g++ is no cross g++ is available, so explicitly disable
c++ support in pcre if it isn't enabled in buildroot instead.

Modified:
   trunk/buildroot/package/pcre/pcre.mk


Changeset:
Modified: trunk/buildroot/package/pcre/pcre.mk
===================================================================
--- trunk/buildroot/package/pcre/pcre.mk	2008-08-16 11:59:59 UTC (rev 23090)
+++ trunk/buildroot/package/pcre/pcre.mk	2008-08-16 12:32:54 UTC (rev 23091)
@@ -9,9 +9,10 @@
 PCRE_INSTALL_STAGING = YES
 PCRE_INSTALL_TARGET = YES
 
-PCRE_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
-        --build=$(GNU_HOST_NAME) --prefix=/usr \
-        --includedir=/usr/include
+ifneq ($(BR2_INSTALL_LIBSTDCPP),y)
+# pcre will use the host g++ if a cross version isn't available
+PCRE_CONF_OPT = --disable-cpp
+endif
 
 PCRE_DEPENDENCIES = uclibc
 




More information about the buildroot mailing list