]> code.ossystems Code Review - openembedded-core.git/blob
a8675868a3ae8e0dfe31f5079c1221c0ba791f05
[openembedded-core.git] /
1 Index: git/configure.ac
2 ===================================================================
3 --- git.orig/configure.ac       2009-06-10 15:01:55.000000000 +0100
4 +++ git/configure.ac    2009-06-10 15:19:36.000000000 +0100
5 @@ -36,6 +36,13 @@
6  MOZIDLDIR=`${PKG_CONFIG} --variable=idldir libxul-unstable`"/unstable"
7  AC_SUBST([MOZIDLDIR])
8  
9 +IDLPREFIX=
10 +AC_ARG_WITH(idl-prefix, AC_HELP_STRING([--with-idl-prefix=DIR],[prefix to add to access to the idl files]), with_idl_prefix=${withval})
11 +if test x"${with_idl_prefix}" != x ; then
12 +    IDLPREFIX=${with_idl_prefix}
13 +fi
14 +AC_SUBST([IDLPREFIX])
15 +
16  AC_PATH_PROG(DBUSBINDINGTOOL, dbus-binding-tool)
17  
18  AC_OUTPUT([
19 Index: git/libmwbpages/Makefile.am
20 ===================================================================
21 --- git.orig/libmwbpages/Makefile.am    2009-06-10 15:01:55.000000000 +0100
22 +++ git/libmwbpages/Makefile.am 2009-06-10 15:20:12.000000000 +0100
23 @@ -23,10 +23,10 @@
24  mwb-start-page.lo : MwbIStartPage.h
25  
26  MwbIStartPage.h : MwbIStartPage.idl
27 -       $(MOZHOME)/xpidl -I $(MOZIDLDIR) -m header $<
28 +       xpidl -I $(IDLPREFIX)$(MOZIDLDIR) -m header $<
29  
30  MwbIStartPage.xpt : MwbIStartPage.idl
31 -       $(MOZHOME)/xpidl -I $(MOZIDLDIR) -m typelib $<
32 +       xpidl -I $(IDLPREFIX)$(MOZIDLDIR) -m typelib $<
33  
34  xpt_DATA = MwbIStartPage.xpt
35  xptdir = $(MOZHOME)/components