rpms/cegui/devel cegui.spec, NONE, 1.1 cegui_mk2-0.4.1-64bit.patch, NONE, 1.1 cegui_mk2-0.4.1-fixtinyxml.patch, NONE, 1.1 cegui_mk2-0.4.1-pcre.patch, NONE, 1.1 cegui_mk2-0.4.1-tolua++.patch, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Ian Chapman (oddsocks) fedora-extras-commits at redhat.com
Sun Jun 11 21:19:57 UTC 2006


Author: oddsocks

Update of /cvs/extras/rpms/cegui/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27868/devel

Modified Files:
	.cvsignore sources 
Added Files:
	cegui.spec cegui_mk2-0.4.1-64bit.patch 
	cegui_mk2-0.4.1-fixtinyxml.patch cegui_mk2-0.4.1-pcre.patch 
	cegui_mk2-0.4.1-tolua++.patch 
Log Message:
auto-import cegui-0.4.1-8 on branch devel from cegui-0.4.1-8.src.rpm


--- NEW FILE cegui.spec ---
Name:           cegui
Version:        0.4.1
Release:        8%{?dist}
Summary:        Free library providing windowing and widgets for graphics APIs / engines

Group:          System Environment/Libraries
License:        LGPL
URL:            http://www.cegui.org.uk/
Source0:        http://download.sourceforge.net/crayzedsgui/%{name}_mk2-source-%{version}.tar.bz2
Patch0:         cegui_mk2-0.4.1-pcre.patch
Patch1:         cegui_mk2-0.4.1-tolua++.patch
Patch2:         cegui_mk2-0.4.1-fixtinyxml.patch
Patch3:         cegui_mk2-0.4.1-64bit.patch
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires:  gawk
BuildRequires:  freetype-devel > 2.0.0
BuildRequires:  DevIL-devel
BuildRequires:  pcre-devel
BuildRequires:  pkgconfig >= 0.9.0
BuildRequires:  libGLU-devel
BuildRequires:  tolua++-devel
Provides:       CEGUI = %{version}-%{release}
Provides:       cegui_mk2 = %{version}-%{release}

%description
Crazy Eddie's GUI System is a free library providing windowing and widgets for
graphics APIs / engines where such functionality is not natively available, or
severely lacking. The library is object orientated, written in C++, and
targeted at games developers who should be spending their time creating great
games, not building GUI sub-systems!

%package devel
Summary:        Development files for cegui
Group:          Development/Libraries
Requires:       cegui = %{version}-%{release}
Requires:       pkgconfig
Requires:       libGLU-devel
Provides:       CEGUI-devel = %{version}-%{release}
Provides:       cegui_mk2-devel = %{version}-%{release}

%description devel
Development files for cegui

%package devel-doc
Summary:        API documentation for cegui
Group:          Documentation
Requires:       cegui-devel = %{version}-%{release}
Provides:       CEGUI-devel-doc = %{version}-%{release}
Provides:       cegui_mk2-devel-doc = %{version}-%{release}
Provides:       cegui-devel-docs = %{version}-%{release}
Obsoletes:      cegui-devel-docs

%description devel-doc
API and Falagard skinning documentation for cegui


%prep
%setup -q -n %{name}_mk2
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
#Delete bundled pcre to avoid any accidental building against it.
rm -rf src/pcre
#Delete bundled lua / tolua++ to avoid any accidental building against it.
rm -rf ScriptingModules/CEGUILua/lua_and_tolua++
#Fix documentation link in html file
sed -i 's/documentation\/api_reference/api_reference/' ReadMe.html


%build
#Regenerate bindings with system tolua++. The reason for the change directory
#(pushd) before calling tolua++, is because tolua++ only looks in the current
#directory for the files depended on my CEGUI.pkg. If a full path is specified,
#it fails.
pushd ScriptingModules/CEGUILua/LuaScriptModule/package/
tolua++ -o ../src/lua_CEGUI.cpp CEGUI.pkg
popd
%configure --disable-irrlicht-renderer --disable-samples --with-pic --without-xerces-c
make %{?_smp_mflags}


%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
rm -f %{buildroot}%{_libdir}/*.la
rm -f %{buildroot}%{_libdir}/*.a
rm -rf %{buildroot}%{_includedir}/CEGUI/renderers/IrrlichtRenderer
#Cleanup CVS stuff in the documentation area before the %%doc section
rm -rf documentation/CVS
rm -rf documentation/api_reference/CVS
rm -f documentation/api_reference/keepme
rm -f documentation/api_reference/*.md5


%clean
rm -rf %{buildroot}


%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig


%files
%defattr(-,root,root,-)
%{_libdir}/libCEGUIBase.so.0
%{_libdir}/libCEGUIBase.so.0.0.0
%{_libdir}/libCEGUIFalagardBase.so.0
%{_libdir}/libCEGUIFalagardBase.so.0.0.0
%{_libdir}/libCEGUILuaScriptModule.so.0
%{_libdir}/libCEGUILuaScriptModule.so.0.0.0
%{_libdir}/libCEGUIOpenGLRenderer.so.0
%{_libdir}/libCEGUIOpenGLRenderer.so.0.0.0
%{_libdir}/libCEGUITaharezLook.so.0
%{_libdir}/libCEGUITaharezLook.so.0.0.0
%{_libdir}/libCEGUIWindowsLook.so.0
%{_libdir}/libCEGUIWindowsLook.so.0.0.0
#The pristine sources generate this library, which is not needed when building
#against the system tolua++/lua.
##%%{_libdir}/libCEGUIluatoluapp.so.0
##%%{_libdir}/libCEGUIluatoluapp.so.0.0.0
%doc AUTHORS COPYING README TinyXML-License

%files devel
%defattr(-,root,root,-)
%{_libdir}/libCEGUIBase.so
%{_libdir}/libCEGUIFalagardBase.so
%{_libdir}/libCEGUILuaScriptModule.so
%{_libdir}/libCEGUIOpenGLRenderer.so
%{_libdir}/libCEGUITaharezLook.so
%{_libdir}/libCEGUIWindowsLook.so
#The pristine sources generate this library , which is not needed when building
#against the system tolua++/lua.
#%%{_libdir}/libCEGUIluatoluapp.so
%{_libdir}/pkgconfig/CEGUI-OPENGL.pc
%{_libdir}/pkgconfig/CEGUI.pc
%{_includedir}/CEGUI

%files devel-doc
%doc documentation/Falagard_Skinning_Docs.pdf documentation/api_reference


%changelog
* Sun Jun 11 2006 Ian Chapman <packages at amiga-hardware.com> 0.4.1-8%{?dist}
- Updated --rpath fixes again
- Package devel-docs renamed to devel-doc as per 'new' guidelines

* Sat Jun 10 2006 Ian Chapman <packages at amiga-hardware.com> 0.4.1-7.iss
- Updated --rpath fixes

* Fri Jun 09 2006 Ian Chapman <packages at amiga-hardware.com> 0.4.1-6.iss
- Added patch courtesy of Hans de Goede fixing TinyXML usage
- Added patch courtest of Hans de Goede fixing 64bit issues
- Updated --rpath fixes
- Trivial correction for pkgconfig BR, should be >= really and not >

* Wed Jun 07 2006 Ian Chapman <packages at amiga-hardware.com> 0.4.1-5.iss
- Removed IrrlichtRender headers as we don't support it (yet - anyway)
- Removed usage of --rpath during build process
- libtool dropped as a BR (no longer needed due to --rpath fix)
- Moved rebuilding of C++ bindings to %%build section

* Mon Jun 05 2006 Ian Chapman <packages at amiga-hardware.com> 0.4.1-4.iss
- Added a tentative patch for building with the system tolua++/lua
- Added tolua++-devel as a buildrequire
- Rebuild the C++ bindings using the system tolua++

* Sun May 28 2006 Ian Chapman <packages at amiga-hardware.com> 0.4.1-3.iss
- Added patch courtesy of Hans de Goede to force compilation against the system
  pcre libs instead of the bundled pcre.
- Added pcre-devel to buildrequires
- Replace xorg-x11-devel with libGLU-devel
- Removed PCRE-LICENSE from doc as it's now compiled against system pcre
- Specified version for pkgconfig buildrequires
- Replaced source URL with primary sf site, rather than a mirror
- Don't use bootstrap
- Added cegui_mk2 provides
- Removed superfluous documentation from devel package

* Sat May 27 2006 Ian Chapman <packages at amiga-hardware.com> 0.4.1-2.iss
- Use %%{?dist} for most recent changelog entry - avoids incoherent changelog
  versions if %%{?dist} macro is missing or different.
- Added %%{version}-%%{release} to provides field
- Replaced %%{__sed} with sed

* Sun May 21 2006 Ian Chapman <packages at amiga-hardware.com> 0.4.1-1.iss
- Initial Release

cegui_mk2-0.4.1-64bit.patch:

--- NEW FILE cegui_mk2-0.4.1-64bit.patch ---
--- cegui_mk2/include/renderers/OpenGLGUIRenderer/openglrenderer.h~	2006-06-09 21:00:44.000000000 +0200
+++ cegui_mk2/include/renderers/OpenGLGUIRenderer/openglrenderer.h	2006-06-09 21:00:44.000000000 +0200
@@ -312,7 +312,7 @@
     struct MyQuad
     {
         float tex[2];
-        long color;
+        int color;
         float vertex[3];
     };
 
@@ -326,10 +326,10 @@
         Rect		position;
         float		z;
         Rect		texPosition;
-		long		topLeftCol;
-		long		topRightCol;
-		long		bottomLeftCol;
-		long		bottomRightCol;
+		int		topLeftCol;
+		int		topRightCol;
+		int		bottomLeftCol;
+		int		bottomRightCol;
 
         QuadSplitMode   splitMode;
 
@@ -361,7 +361,7 @@
     void	renderQuadDirect(const Rect& dest_rect, float z, const Texture* tex, const Rect& texture_rect, const ColourRect& colours, QuadSplitMode quad_split_mode);
 
 	// convert colour value to whatever the OpenGL system is expecting.
-	long	colourToOGL(const colour& col) const;
+	int	colourToOGL(const colour& col) const;
 
 	// set the module ID string
 	void setModuleIdentifierString();
--- cegui_mk2/src/renderers/OpenGLGUIRenderer/openglrenderer.cpp~	2006-06-09 21:01:28.000000000 +0200
+++ cegui_mk2/src/renderers/OpenGLGUIRenderer/openglrenderer.cpp	2006-06-09 21:01:28.000000000 +0200
@@ -498,19 +498,19 @@
 /*************************************************************************
 	convert colour value to whatever the OpenGL system is expecting.
 *************************************************************************/
-long OpenGLRenderer::colourToOGL(const colour& col) const
+int OpenGLRenderer::colourToOGL(const colour& col) const
 {
-	ulong cval;
+	unsigned int cval;
 #ifdef __BIG_ENDIAN__
-    cval =  (static_cast<ulong>(255 * col.getAlpha()));
-    cval |= (static_cast<ulong>(255 * col.getBlue())) << 8;
-    cval |= (static_cast<ulong>(255 * col.getGreen())) << 16;
-    cval |= (static_cast<ulong>(255 * col.getRed())) << 24;
+    cval =  (static_cast<unsigned int>(255 * col.getAlpha()));
+    cval |= (static_cast<unsigned int>(255 * col.getBlue())) << 8;
+    cval |= (static_cast<unsigned int>(255 * col.getGreen())) << 16;
+    cval |= (static_cast<unsigned int>(255 * col.getRed())) << 24;
 #else
-	cval =	(static_cast<ulong>(255 * col.getAlpha())) << 24;
-	cval |=	(static_cast<ulong>(255 * col.getBlue())) << 16;
-	cval |=	(static_cast<ulong>(255 * col.getGreen())) << 8;
-	cval |= (static_cast<ulong>(255 * col.getRed()));
+	cval =	(static_cast<unsigned int>(255 * col.getAlpha())) << 24;
+	cval |=	(static_cast<unsigned int>(255 * col.getBlue())) << 16;
+	cval |=	(static_cast<unsigned int>(255 * col.getGreen())) << 8;
+	cval |= (static_cast<unsigned int>(255 * col.getRed()));
 #endif
 	return cval;
 }

cegui_mk2-0.4.1-fixtinyxml.patch:

--- NEW FILE cegui_mk2-0.4.1-fixtinyxml.patch ---
--- cegui_mk2/src/CEGUITinyXMLParser.cpp~	2006-06-08 20:54:35.000000000 +0200
+++ cegui_mk2/src/CEGUITinyXMLParser.cpp	2006-06-08 20:54:35.000000000 +0200
@@ -50,12 +50,15 @@
         d_handler = &handler;
 
         // use resource provider to load file data
-        // TODO: Fix null termination issue.
         RawDataContainer rawXMLData;
         System::getSingleton().getResourceProvider()->loadRawDataContainer(filename, rawXMLData, resourceGroup);
 
         TiXmlDocument doc;
-        doc.Parse((const char*)rawXMLData.getDataPtr());
+        int size = rawXMLData.getSize();
+        char *buf = new char[size+1];
+        memcpy(buf, rawXMLData.getDataPtr(), size);
+        buf[size] = 0;
+        doc.Parse(buf);
 
         const TiXmlElement* currElement = doc.RootElement();
 
@@ -66,6 +69,7 @@
         }
 
         System::getSingleton().getResourceProvider()->unloadRawDataContainer(rawXMLData);
+        delete buf;
     }
 
     void TinyXMLDocument::processElement(const TiXmlElement* element)

cegui_mk2-0.4.1-pcre.patch:

--- NEW FILE cegui_mk2-0.4.1-pcre.patch ---
--- cegui_mk2/src/Makefile.in.pcre	2005-11-26 10:23:13.000000000 +0100
+++ cegui_mk2/src/Makefile.in	2006-05-26 20:51:40.000000000 +0200
@@ -319,24 +319,12 @@
                       falagard/CEGUIFalWidgetLookManager.cpp \
                       falagard/CEGUIFalXMLEnumHelper.cpp \
                       falagard/CEGUIFalagard_xmlHandler.cpp \
-                      pcre/chartables.c \
-                      pcre/get.c \
-                      pcre/maketables.c \
-                      pcre/pcre.c \
-                      pcre/pcreposix.c \
-                      pcre/study.c\
 $(am__append_1) $(am__append_3)
 
-noinst_HEADERS = pcre/internal.h \
-                      pcre/ucpinternal.h \
-                      pcre/pcre.h \
-                      pcre/pcreposix.h \
-                      pcre/ucp.h \
-                      pcre/pcreconfig.h\
-$(am__append_2)
+noinst_HEADERS = $(am__append_2)
 
 libCEGUIBase_la_LDFLAGS = -version-info @CEGUI_VERSION_INFO@
-libCEGUIBase_la_LIBADD = $(freetype2_LIBS)
+libCEGUIBase_la_LIBADD = $(freetype2_LIBS) -lpcre
 subdir = src
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
@@ -432,9 +420,8 @@
 	falagard/CEGUIFalWidgetLookFeel.cpp \
 	falagard/CEGUIFalWidgetLookManager.cpp \
 	falagard/CEGUIFalXMLEnumHelper.cpp \
-	falagard/CEGUIFalagard_xmlHandler.cpp pcre/chartables.c \
-	pcre/get.c pcre/maketables.c pcre/pcre.c pcre/pcreposix.c \
-	pcre/study.c CEGUITinyXMLParser.cpp tinyxml/tinystr.cpp \
+	falagard/CEGUIFalagard_xmlHandler.cpp \
+	CEGUITinyXMLParser.cpp tinyxml/tinystr.cpp \
 	tinyxml/tinyxml.cpp tinyxml/tinyxmlerror.cpp \
 	tinyxml/tinyxmlparser.cpp CEGUIXercesParser.cpp
 @CEGUI_USING_TINYXML_TRUE at am__objects_1 = CEGUITinyXMLParser.lo \
@@ -501,8 +488,7 @@
 	CEGUIFalTextComponent.lo CEGUIFalWidgetComponent.lo \
 	CEGUIFalWidgetLookFeel.lo CEGUIFalWidgetLookManager.lo \
 	CEGUIFalXMLEnumHelper.lo CEGUIFalagard_xmlHandler.lo \
-	chartables.lo get.lo maketables.lo pcre.lo pcreposix.lo \
-	study.lo $(am__objects_1) $(am__objects_2)
+	$(am__objects_1) $(am__objects_2)
 libCEGUIBase_la_OBJECTS = $(am_libCEGUIBase_la_OBJECTS)
 
 DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)/include
@@ -647,9 +633,6 @@
 @AMDEP_TRUE@	./$(DEPDIR)/CEGUIXMLParser.Plo \
 @AMDEP_TRUE@	./$(DEPDIR)/CEGUIXercesParser.Plo \
 @AMDEP_TRUE@	./$(DEPDIR)/CEGUIcolour.Plo \
- at AMDEP_TRUE@	./$(DEPDIR)/chartables.Plo ./$(DEPDIR)/get.Plo \
- at AMDEP_TRUE@	./$(DEPDIR)/maketables.Plo ./$(DEPDIR)/pcre.Plo \
- at AMDEP_TRUE@	./$(DEPDIR)/pcreposix.Plo ./$(DEPDIR)/study.Plo \
 @AMDEP_TRUE@	./$(DEPDIR)/tinystr.Plo ./$(DEPDIR)/tinyxml.Plo \
 @AMDEP_TRUE@	./$(DEPDIR)/tinyxmlerror.Plo \
 @AMDEP_TRUE@	./$(DEPDIR)/tinyxmlparser.Plo
@@ -866,12 +849,6 @@
 @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/CEGUIXMLParser.Plo at am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/CEGUIXercesParser.Plo at am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/CEGUIcolour.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/chartables.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/get.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/maketables.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/pcre.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/pcreposix.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/study.Plo at am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/tinystr.Plo at am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/tinyxml.Plo at am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/tinyxmlerror.Plo at am__quote@
@@ -910,204 +887,6 @@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
 
-chartables.o: pcre/chartables.c
- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT chartables.o -MD -MP -MF "$(DEPDIR)/chartables.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o chartables.o `test -f 'pcre/chartables.c' || echo '$(srcdir)/'`pcre/chartables.c; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/chartables.Tpo" "$(DEPDIR)/chartables.Po"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/chartables.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/chartables.c' object='chartables.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/chartables.Po' tmpdepfile='$(DEPDIR)/chartables.TPo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o chartables.o `test -f 'pcre/chartables.c' || echo '$(srcdir)/'`pcre/chartables.c
-
-chartables.obj: pcre/chartables.c
- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT chartables.obj -MD -MP -MF "$(DEPDIR)/chartables.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o chartables.obj `if test -f 'pcre/chartables.c'; then $(CYGPATH_W) 'pcre/chartables.c'; else $(CYGPATH_W) '$(srcdir)/pcre/chartables.c'; fi`; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/chartables.Tpo" "$(DEPDIR)/chartables.Po"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/chartables.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/chartables.c' object='chartables.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/chartables.Po' tmpdepfile='$(DEPDIR)/chartables.TPo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o chartables.obj `if test -f 'pcre/chartables.c'; then $(CYGPATH_W) 'pcre/chartables.c'; else $(CYGPATH_W) '$(srcdir)/pcre/chartables.c'; fi`
-
-chartables.lo: pcre/chartables.c
- at am__fastdepCC_TRUE@	if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT chartables.lo -MD -MP -MF "$(DEPDIR)/chartables.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o chartables.lo `test -f 'pcre/chartables.c' || echo '$(srcdir)/'`pcre/chartables.c; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/chartables.Tpo" "$(DEPDIR)/chartables.Plo"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/chartables.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/chartables.c' object='chartables.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/chartables.Plo' tmpdepfile='$(DEPDIR)/chartables.TPlo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o chartables.lo `test -f 'pcre/chartables.c' || echo '$(srcdir)/'`pcre/chartables.c
-
-get.o: pcre/get.c
- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT get.o -MD -MP -MF "$(DEPDIR)/get.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o get.o `test -f 'pcre/get.c' || echo '$(srcdir)/'`pcre/get.c; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/get.Tpo" "$(DEPDIR)/get.Po"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/get.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/get.c' object='get.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/get.Po' tmpdepfile='$(DEPDIR)/get.TPo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o get.o `test -f 'pcre/get.c' || echo '$(srcdir)/'`pcre/get.c
-
-get.obj: pcre/get.c
- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT get.obj -MD -MP -MF "$(DEPDIR)/get.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o get.obj `if test -f 'pcre/get.c'; then $(CYGPATH_W) 'pcre/get.c'; else $(CYGPATH_W) '$(srcdir)/pcre/get.c'; fi`; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/get.Tpo" "$(DEPDIR)/get.Po"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/get.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/get.c' object='get.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/get.Po' tmpdepfile='$(DEPDIR)/get.TPo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o get.obj `if test -f 'pcre/get.c'; then $(CYGPATH_W) 'pcre/get.c'; else $(CYGPATH_W) '$(srcdir)/pcre/get.c'; fi`
-
-get.lo: pcre/get.c
- at am__fastdepCC_TRUE@	if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT get.lo -MD -MP -MF "$(DEPDIR)/get.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o get.lo `test -f 'pcre/get.c' || echo '$(srcdir)/'`pcre/get.c; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/get.Tpo" "$(DEPDIR)/get.Plo"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/get.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/get.c' object='get.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/get.Plo' tmpdepfile='$(DEPDIR)/get.TPlo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o get.lo `test -f 'pcre/get.c' || echo '$(srcdir)/'`pcre/get.c
-
-maketables.o: pcre/maketables.c
- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT maketables.o -MD -MP -MF "$(DEPDIR)/maketables.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o maketables.o `test -f 'pcre/maketables.c' || echo '$(srcdir)/'`pcre/maketables.c; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/maketables.Tpo" "$(DEPDIR)/maketables.Po"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/maketables.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/maketables.c' object='maketables.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/maketables.Po' tmpdepfile='$(DEPDIR)/maketables.TPo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o maketables.o `test -f 'pcre/maketables.c' || echo '$(srcdir)/'`pcre/maketables.c
-
-maketables.obj: pcre/maketables.c
- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT maketables.obj -MD -MP -MF "$(DEPDIR)/maketables.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o maketables.obj `if test -f 'pcre/maketables.c'; then $(CYGPATH_W) 'pcre/maketables.c'; else $(CYGPATH_W) '$(srcdir)/pcre/maketables.c'; fi`; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/maketables.Tpo" "$(DEPDIR)/maketables.Po"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/maketables.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/maketables.c' object='maketables.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/maketables.Po' tmpdepfile='$(DEPDIR)/maketables.TPo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o maketables.obj `if test -f 'pcre/maketables.c'; then $(CYGPATH_W) 'pcre/maketables.c'; else $(CYGPATH_W) '$(srcdir)/pcre/maketables.c'; fi`
-
-maketables.lo: pcre/maketables.c
- at am__fastdepCC_TRUE@	if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT maketables.lo -MD -MP -MF "$(DEPDIR)/maketables.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o maketables.lo `test -f 'pcre/maketables.c' || echo '$(srcdir)/'`pcre/maketables.c; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/maketables.Tpo" "$(DEPDIR)/maketables.Plo"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/maketables.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/maketables.c' object='maketables.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/maketables.Plo' tmpdepfile='$(DEPDIR)/maketables.TPlo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o maketables.lo `test -f 'pcre/maketables.c' || echo '$(srcdir)/'`pcre/maketables.c
-
-pcre.o: pcre/pcre.c
- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcre.o -MD -MP -MF "$(DEPDIR)/pcre.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o pcre.o `test -f 'pcre/pcre.c' || echo '$(srcdir)/'`pcre/pcre.c; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/pcre.Tpo" "$(DEPDIR)/pcre.Po"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/pcre.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/pcre.c' object='pcre.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/pcre.Po' tmpdepfile='$(DEPDIR)/pcre.TPo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pcre.o `test -f 'pcre/pcre.c' || echo '$(srcdir)/'`pcre/pcre.c
-
-pcre.obj: pcre/pcre.c
- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcre.obj -MD -MP -MF "$(DEPDIR)/pcre.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o pcre.obj `if test -f 'pcre/pcre.c'; then $(CYGPATH_W) 'pcre/pcre.c'; else $(CYGPATH_W) '$(srcdir)/pcre/pcre.c'; fi`; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/pcre.Tpo" "$(DEPDIR)/pcre.Po"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/pcre.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/pcre.c' object='pcre.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/pcre.Po' tmpdepfile='$(DEPDIR)/pcre.TPo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pcre.obj `if test -f 'pcre/pcre.c'; then $(CYGPATH_W) 'pcre/pcre.c'; else $(CYGPATH_W) '$(srcdir)/pcre/pcre.c'; fi`
-
-pcre.lo: pcre/pcre.c
- at am__fastdepCC_TRUE@	if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcre.lo -MD -MP -MF "$(DEPDIR)/pcre.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o pcre.lo `test -f 'pcre/pcre.c' || echo '$(srcdir)/'`pcre/pcre.c; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/pcre.Tpo" "$(DEPDIR)/pcre.Plo"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/pcre.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/pcre.c' object='pcre.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/pcre.Plo' tmpdepfile='$(DEPDIR)/pcre.TPlo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pcre.lo `test -f 'pcre/pcre.c' || echo '$(srcdir)/'`pcre/pcre.c
-
-pcreposix.o: pcre/pcreposix.c
- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcreposix.o -MD -MP -MF "$(DEPDIR)/pcreposix.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o pcreposix.o `test -f 'pcre/pcreposix.c' || echo '$(srcdir)/'`pcre/pcreposix.c; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/pcreposix.Tpo" "$(DEPDIR)/pcreposix.Po"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/pcreposix.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/pcreposix.c' object='pcreposix.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/pcreposix.Po' tmpdepfile='$(DEPDIR)/pcreposix.TPo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pcreposix.o `test -f 'pcre/pcreposix.c' || echo '$(srcdir)/'`pcre/pcreposix.c
-
-pcreposix.obj: pcre/pcreposix.c
- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcreposix.obj -MD -MP -MF "$(DEPDIR)/pcreposix.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o pcreposix.obj `if test -f 'pcre/pcreposix.c'; then $(CYGPATH_W) 'pcre/pcreposix.c'; else $(CYGPATH_W) '$(srcdir)/pcre/pcreposix.c'; fi`; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/pcreposix.Tpo" "$(DEPDIR)/pcreposix.Po"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/pcreposix.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/pcreposix.c' object='pcreposix.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/pcreposix.Po' tmpdepfile='$(DEPDIR)/pcreposix.TPo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pcreposix.obj `if test -f 'pcre/pcreposix.c'; then $(CYGPATH_W) 'pcre/pcreposix.c'; else $(CYGPATH_W) '$(srcdir)/pcre/pcreposix.c'; fi`
-
-pcreposix.lo: pcre/pcreposix.c
- at am__fastdepCC_TRUE@	if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcreposix.lo -MD -MP -MF "$(DEPDIR)/pcreposix.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o pcreposix.lo `test -f 'pcre/pcreposix.c' || echo '$(srcdir)/'`pcre/pcreposix.c; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/pcreposix.Tpo" "$(DEPDIR)/pcreposix.Plo"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/pcreposix.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/pcreposix.c' object='pcreposix.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/pcreposix.Plo' tmpdepfile='$(DEPDIR)/pcreposix.TPlo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pcreposix.lo `test -f 'pcre/pcreposix.c' || echo '$(srcdir)/'`pcre/pcreposix.c
-
-study.o: pcre/study.c
- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT study.o -MD -MP -MF "$(DEPDIR)/study.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o study.o `test -f 'pcre/study.c' || echo '$(srcdir)/'`pcre/study.c; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/study.Tpo" "$(DEPDIR)/study.Po"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/study.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/study.c' object='study.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/study.Po' tmpdepfile='$(DEPDIR)/study.TPo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o study.o `test -f 'pcre/study.c' || echo '$(srcdir)/'`pcre/study.c
-
-study.obj: pcre/study.c
- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT study.obj -MD -MP -MF "$(DEPDIR)/study.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o study.obj `if test -f 'pcre/study.c'; then $(CYGPATH_W) 'pcre/study.c'; else $(CYGPATH_W) '$(srcdir)/pcre/study.c'; fi`; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/study.Tpo" "$(DEPDIR)/study.Po"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/study.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/study.c' object='study.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/study.Po' tmpdepfile='$(DEPDIR)/study.TPo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o study.obj `if test -f 'pcre/study.c'; then $(CYGPATH_W) 'pcre/study.c'; else $(CYGPATH_W) '$(srcdir)/pcre/study.c'; fi`
-
-study.lo: pcre/study.c
- at am__fastdepCC_TRUE@	if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT study.lo -MD -MP -MF "$(DEPDIR)/study.Tpo" \
- at am__fastdepCC_TRUE@	  -c -o study.lo `test -f 'pcre/study.c' || echo '$(srcdir)/'`pcre/study.c; \
- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/study.Tpo" "$(DEPDIR)/study.Plo"; \
- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/study.Tpo"; exit 1; \
- at am__fastdepCC_TRUE@	fi
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pcre/study.c' object='study.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/study.Plo' tmpdepfile='$(DEPDIR)/study.TPlo' @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o study.lo `test -f 'pcre/study.c' || echo '$(srcdir)/'`pcre/study.c
-
 .cpp.o:
 @am__fastdepCXX_TRUE@	if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
 @am__fastdepCXX_TRUE@	  -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
@@ -4250,7 +4029,7 @@
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
-	$(mkinstalldirs) $(distdir)/pcre $(distdir)/tinyxml
+	$(mkinstalldirs) $(distdir)/tinyxml
 	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 	list='$(DISTFILES)'; for file in $$list; do \
--- cegui_mk2/src/elements/CEGUIEditbox.cpp.pcre	2005-07-10 11:39:00.000000000 +0200
+++ cegui_mk2/src/elements/CEGUIEditbox.cpp	2006-05-26 20:49:06.000000000 +0200
@@ -27,7 +27,7 @@
 #include "CEGUITextUtils.h"
 #include "CEGUIExceptions.h"
 #include "CEGUIFont.h"
-#include "../pcre/pcre.h"
+#include <pcre.h>
 #include <string.h>
 
 
--- cegui_mk2/src/Makefile.am.pcre	2005-07-18 16:00:13.000000000 +0200
+++ cegui_mk2/src/Makefile.am	2006-05-26 20:49:06.000000000 +0200
@@ -139,20 +139,7 @@
                       falagard/CEGUIFalWidgetLookFeel.cpp \
                       falagard/CEGUIFalWidgetLookManager.cpp \
                       falagard/CEGUIFalXMLEnumHelper.cpp \
-                      falagard/CEGUIFalagard_xmlHandler.cpp \
-                      pcre/chartables.c \
-                      pcre/get.c \
-                      pcre/maketables.c \
-                      pcre/pcre.c \
-                      pcre/pcreposix.c \
-                      pcre/study.c
-
-noinst_HEADERS =      pcre/internal.h \
-                      pcre/ucpinternal.h \
-                      pcre/pcre.h \
-                      pcre/pcreposix.h \
-                      pcre/ucp.h \
-                      pcre/pcreconfig.h
+                      falagard/CEGUIFalagard_xmlHandler.cpp
 
 if CEGUI_USING_TINYXML
 libCEGUIBase_la_SOURCES += CEGUITinyXMLParser.cpp \
@@ -170,4 +157,4 @@
 endif
 
 libCEGUIBase_la_LDFLAGS = -version-info @CEGUI_VERSION_INFO@
-libCEGUIBase_la_LIBADD = $(freetype2_LIBS)
+libCEGUIBase_la_LIBADD = $(freetype2_LIBS) -lpcre

cegui_mk2-0.4.1-tolua++.patch:

--- NEW FILE cegui_mk2-0.4.1-tolua++.patch ---
--- cegui_mk2/configure.orig	2005-11-26 09:23:14.000000000 +0000
+++ cegui_mk2/configure	2006-06-11 17:57:14.000000000 +0100
@@ -6889,7 +6889,7 @@
     # are reset later if shared libraries are not supported. Putting them
     # here allows them to be overridden if necessary.
     runpath_var=LD_RUN_PATH
-    hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir'
+    hardcode_libdir_flag_spec=''
     export_dynamic_flag_spec='${wl}--export-dynamic'
     # ancient GNU ld didn't support --whole-archive et. al.
     if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
@@ -7490,9 +7490,9 @@
 	archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
       else
 	archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
-	hardcode_libdir_flag_spec_ld='-rpath $libdir'
+	hardcode_libdir_flag_spec_ld=''
       fi
-      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+      hardcode_libdir_flag_spec=''
       hardcode_libdir_separator=:
       link_all_deplibs=yes
       ;;
@@ -7511,7 +7511,7 @@
     newsos6)
       archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
       hardcode_direct=yes
-      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+      hardcode_libdir_flag_spec=''
       hardcode_libdir_separator=:
       hardcode_shlibpath_var=no
       ;;
@@ -7522,7 +7522,7 @@
       if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
 	archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
 	archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
-	hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+	hardcode_libdir_flag_spec=''
 	export_dynamic_flag_spec='${wl}-E'
       else
        case $host_os in
@@ -7532,7 +7532,7 @@
 	   ;;
 	 *)
 	   archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
-	   hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+	   hardcode_libdir_flag_spec=''
 	   ;;
        esac
       fi
@@ -7554,7 +7554,7 @@
 	allow_undefined_flag=' -expect_unresolved \*'
 	archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
       fi
-      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+      hardcode_libdir_flag_spec=''
       hardcode_libdir_separator=:
       ;;
 
@@ -7562,7 +7562,7 @@
       if test "$GCC" = yes; then
 	allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
 	archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-	hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+	hardcode_libdir_flag_spec=''
       else
 	allow_undefined_flag=' -expect_unresolved \*'
 	archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
@@ -7570,7 +7570,7 @@
 	$LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp'
 
 	# Both c and cxx compiler support -rpath directly
-	hardcode_libdir_flag_spec='-rpath $libdir'
+	hardcode_libdir_flag_spec=''
       fi
       hardcode_libdir_separator=:
       ;;
@@ -10089,7 +10089,7 @@
     archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
     archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
 
-    hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir'
+    hardcode_libdir_flag_spec_CXX=''
     export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
 
     # If archive_cmds runs LD, not CC, wlarc should be empty
@@ -10619,7 +10619,7 @@
 	link_all_deplibs_CXX=yes
 	;;
     esac
-    hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
+    hardcode_libdir_flag_spec_CXX=''
     hardcode_libdir_separator_CXX=:
     ;;
   linux*)
@@ -10642,7 +10642,7 @@
 	# dependencies.
 	output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
 
-	hardcode_libdir_flag_spec_CXX='${wl}--rpath,$libdir'
+	hardcode_libdir_flag_spec_CXX=''
 	export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
 
 	# Archives containing C++ object files must be created using
@@ -10670,7 +10670,7 @@
 	  ;;
 	esac
 	archive_cmds_need_lc_CXX=no
-	hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
+	hardcode_libdir_flag_spec_CXX=''
 	export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
 	whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
 	;;
@@ -10679,7 +10679,7 @@
 	archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
   	archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
 
-	hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir'
+	hardcode_libdir_flag_spec_CXX=''
 	export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
 	whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
         ;;
@@ -10689,7 +10689,7 @@
 	archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
 
 	runpath_var=LD_RUN_PATH
-	hardcode_libdir_flag_spec_CXX='-rpath $libdir'
+	hardcode_libdir_flag_spec_CXX=''
 	hardcode_libdir_separator_CXX=:
 
 	# Commands to make compiler produce verbose output that lists
@@ -10743,7 +10743,7 @@
     hardcode_direct_CXX=yes
     hardcode_shlibpath_var_CXX=no
     archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
-    hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
+    hardcode_libdir_flag_spec_CXX=''
     if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
       archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
       export_dynamic_flag_spec_CXX='${wl}-E'
@@ -10761,7 +10761,7 @@
 	# to its proper name (with version) after linking.
 	archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
 
-	hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
+	hardcode_libdir_flag_spec_CXX=''
 	hardcode_libdir_separator_CXX=:
 
 	# Archives containing C++ object files must be created using
@@ -10778,7 +10778,7 @@
 	allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
 	archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
 
-	hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
+	hardcode_libdir_flag_spec_CXX=''
 	hardcode_libdir_separator_CXX=:
 
 	# Commands to make compiler produce verbose output that lists
@@ -10796,7 +10796,7 @@
 	  allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
 	  archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
 
-	  hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
+	  hardcode_libdir_flag_spec_CXX=''
 	  hardcode_libdir_separator_CXX=:
 
 	  # Commands to make compiler produce verbose output that lists
@@ -10821,7 +10821,7 @@
 	# to its proper name (with version) after linking.
 	archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
 
-	hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
+	hardcode_libdir_flag_spec_CXX=''
 	hardcode_libdir_separator_CXX=:
 
 	# Archives containing C++ object files must be created using
@@ -10841,7 +10841,7 @@
 	  $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp  `test -n "$verstring" && echo -set_version	$verstring` -update_registry ${output_objdir}/so_locations -o $lib~
 	  $rm $lib.exp'
 
-	hardcode_libdir_flag_spec_CXX='-rpath $libdir'
+	hardcode_libdir_flag_spec_CXX=''
 	hardcode_libdir_separator_CXX=:
 
 	# Commands to make compiler produce verbose output that lists
@@ -10859,7 +10859,7 @@
 	  allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
 	 archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
 
-	  hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
+	  hardcode_libdir_flag_spec_CXX=''
 	  hardcode_libdir_separator_CXX=:
 
 	  # Commands to make compiler produce verbose output that lists
@@ -14110,7 +14110,7 @@
     # are reset later if shared libraries are not supported. Putting them
     # here allows them to be overridden if necessary.
     runpath_var=LD_RUN_PATH
-    hardcode_libdir_flag_spec_F77='${wl}--rpath ${wl}$libdir'
+    hardcode_libdir_flag_spec_F77=''
     export_dynamic_flag_spec_F77='${wl}--export-dynamic'
     # ancient GNU ld didn't support --whole-archive et. al.
     if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
@@ -14691,9 +14691,9 @@
 	archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
       else
 	archive_cmds_F77='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
-	hardcode_libdir_flag_spec_ld_F77='-rpath $libdir'
+	hardcode_libdir_flag_spec_ld_F77=''
       fi
-      hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir'
+      hardcode_libdir_flag_spec_F77=''
       hardcode_libdir_separator_F77=:
       link_all_deplibs_F77=yes
       ;;
@@ -14712,7 +14712,7 @@
     newsos6)
       archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
       hardcode_direct_F77=yes
-      hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir'
+      hardcode_libdir_flag_spec_F77=''
       hardcode_libdir_separator_F77=:
       hardcode_shlibpath_var_F77=no
       ;;
@@ -14723,7 +14723,7 @@
       if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
 	archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
 	archive_expsym_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
-	hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir'
+	hardcode_libdir_flag_spec_F77=''
 	export_dynamic_flag_spec_F77='${wl}-E'
       else
        case $host_os in
@@ -14733,7 +14733,7 @@
 	   ;;
 	 *)
 	   archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
-	   hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir'
+	   hardcode_libdir_flag_spec_F77=''
 	   ;;
        esac
       fi
@@ -14755,7 +14755,7 @@
 	allow_undefined_flag_F77=' -expect_unresolved \*'
 	archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
       fi
-      hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir'
+      hardcode_libdir_flag_spec_F77=''
       hardcode_libdir_separator_F77=:
       ;;
 
@@ -14763,7 +14763,7 @@
       if test "$GCC" = yes; then
 	allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*'
 	archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-	hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir'
+	hardcode_libdir_flag_spec_F77=''
       else
 	allow_undefined_flag_F77=' -expect_unresolved \*'
 	archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
@@ -14771,7 +14771,7 @@
 	$LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp'
 
 	# Both c and cxx compiler support -rpath directly
-	hardcode_libdir_flag_spec_F77='-rpath $libdir'
+	hardcode_libdir_flag_spec_F77=''
       fi
       hardcode_libdir_separator_F77=:
       ;;
@@ -16632,7 +16632,7 @@
     # are reset later if shared libraries are not supported. Putting them
     # here allows them to be overridden if necessary.
     runpath_var=LD_RUN_PATH
-    hardcode_libdir_flag_spec_GCJ='${wl}--rpath ${wl}$libdir'
+    hardcode_libdir_flag_spec_GCJ=''
     export_dynamic_flag_spec_GCJ='${wl}--export-dynamic'
     # ancient GNU ld didn't support --whole-archive et. al.
     if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
@@ -17233,9 +17233,9 @@
 	archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
       else
 	archive_cmds_GCJ='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
-	hardcode_libdir_flag_spec_ld_GCJ='-rpath $libdir'
+	hardcode_libdir_flag_spec_ld_GCJ=''
       fi
-      hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir'
+      hardcode_libdir_flag_spec_GCJ=''
       hardcode_libdir_separator_GCJ=:
       link_all_deplibs_GCJ=yes
       ;;
@@ -17254,7 +17254,7 @@
     newsos6)
       archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
       hardcode_direct_GCJ=yes
-      hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir'
+      hardcode_libdir_flag_spec_GCJ=''
       hardcode_libdir_separator_GCJ=:
       hardcode_shlibpath_var_GCJ=no
       ;;
@@ -17265,7 +17265,7 @@
       if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
 	archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
 	archive_expsym_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
-	hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir'
+	hardcode_libdir_flag_spec_GCJ=''
 	export_dynamic_flag_spec_GCJ='${wl}-E'
       else
        case $host_os in
@@ -17275,7 +17275,7 @@
 	   ;;
 	 *)
 	   archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
-	   hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir'
+	   hardcode_libdir_flag_spec_GCJ=''
 	   ;;
        esac
       fi
@@ -17297,7 +17297,7 @@
 	allow_undefined_flag_GCJ=' -expect_unresolved \*'
 	archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
       fi
-      hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir'
+      hardcode_libdir_flag_spec_GCJ=''
       hardcode_libdir_separator_GCJ=:
       ;;
 
@@ -17305,7 +17305,7 @@
       if test "$GCC" = yes; then
 	allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*'
 	archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-	hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir'
+	hardcode_libdir_flag_spec_GCJ=''
       else
 	allow_undefined_flag_GCJ=' -expect_unresolved \*'
 	archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
@@ -17313,7 +17313,7 @@
 	$LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp'
 
 	# Both c and cxx compiler support -rpath directly
-	hardcode_libdir_flag_spec_GCJ='-rpath $libdir'
+	hardcode_libdir_flag_spec_GCJ=''
       fi
       hardcode_libdir_separator_GCJ=:
       ;;
@@ -24830,7 +24830,7 @@
 CEGUI_VERSION_INFO=$CEGUI_CURRENT:$CEGUI_REVISION:$CEGUI_AGE
 
 
-                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ac_config_files="$ac_config_files Makefile Samples/Demo4/Makefile Samples/Demo4/src/Makefile Samples/Demo6/Makefile Samples/Demo6/src/Makefile Samples/Demo7/Makefile Samples/Demo7/src/Makefile Samples/Demo8/Makefile Samples/Demo8/src/Makefile Samples/FalagardDemo1/Makefile Samples/FalagardDemo1/include/Makefile Samples/FalagardDemo1/src/Makefile Samples/FirstWindow/Makefile Samples/FirstWindow/include/Makefile Samples/FirstWindow/src/Makefile Samples/Makefile Samples/common!
 /Makefile Samples/common/include/Makefile Samples/common/src/Makefile ScriptingModules/CEGUILua/LuaScriptModule/Makefile ScriptingModules/CEGUILua/LuaScriptModule/include/Makefile ScriptingModules/CEGUILua/LuaScriptModule/package/Makefile ScriptingModules/CEGUILua/LuaScriptModule/src/Makefile ScriptingModules/CEGUILua/Makefile ScriptingModules/CEGUILua/lua_and_tolua++/Makefile ScriptingModules/CEGUILua/lua_and_tolua++/include/Makefile ScriptingModules/CEGUILua/lua_and_tolua++/src/Makefile ScriptingModules/Makefile WidgetSets/Makefile WidgetSets/Falagard/Makefile WidgetSets/Falagard/include/Makefile WidgetSets/Falagard/src/Makefile WidgetSets/TaharezLook/Makefile WidgetSets/TaharezLook/include/Makefile WidgetSets/TaharezLook/src/Makefile WidgetSets/WindowsLook/Makefile WidgetSets/WindowsLook/include/Makefile WidgetSets/WindowsLook/src/Makefile include/Makefile include/elements/Makefile include/falagard/Makefile include/renderers/IrrlichtRenderer/Makefile include/renderers/Ma!
 kefile include/renderers/OpenGLGUIRenderer/Makefile src/Makefi!
 le src
nderers/IrrlichtRenderer/Makefile src/renderers/Makefile src/renderers/OpenGLGUIRenderer/Makefile CEGUI.pc CEGUI-OPENGL.pc CEGUI.spec"
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ac_config_files="$ac_config_files Makefile Samples/Demo4/Makefile Samples/Demo4/src/Makefile Samples/Demo6/Makefile Samples/Demo6/src/Makefile Samples/Demo7/Makefile Samples/Demo7/src/Makefile Samples/Demo8/Makefile Samples/Demo8/src/Makefile Samples/FalagardDemo1/Makefile Samples/FalagardDemo1/include/Makefile Samples/FalagardDemo1/src/Makefile Samples/FirstWindow/Makefile Samples/FirstWindow/include/Makefile Samples/FirstWindow/src/Makefile Samples/Makefile Samples/common!
 /Makefile Samples/common/include/Makefile Samples/common/src/Makefile ScriptingModules/CEGUILua/LuaScriptModule/Makefile ScriptingModules/CEGUILua/LuaScriptModule/include/Makefile ScriptingModules/CEGUILua/LuaScriptModule/package/Makefile ScriptingModules/CEGUILua/LuaScriptModule/src/Makefile ScriptingModules/CEGUILua/Makefile ScriptingModules/Makefile WidgetSets/Makefile WidgetSets/Falagard/Makefile WidgetSets/Falagard/include/Makefile WidgetSets/Falagard/src/Makefile WidgetSets/TaharezLook/Makefile WidgetSets/TaharezLook/include/Makefile WidgetSets/TaharezLook/src/Makefile WidgetSets/WindowsLook/Makefile WidgetSets/WindowsLook/include/Makefile WidgetSets/WindowsLook/src/Makefile include/Makefile include/elements/Makefile include/falagard/Makefile include/renderers/IrrlichtRenderer/Makefile include/renderers/Makefile include/renderers/OpenGLGUIRenderer/Makefile src/Makefile src/renderers/IrrlichtRenderer/Makefile src/renderers/Makefile src/renderers/OpenGLGUIRenderer/Makef!
 ile CEGUI.pc CEGUI-OPENGL.pc CEGUI.spec"
 
 cat >confcache <<\_ACEOF
 # This file is a shell script that caches the results of configure
--- cegui_mk2/ScriptingModules/CEGUILua/Makefile.am.orig	2005-03-26 15:34:01.000000000 +0000
+++ cegui_mk2/ScriptingModules/CEGUILua/Makefile.am	2006-06-11 17:57:14.000000000 +0100
@@ -1 +1 @@
-SUBDIRS =  lua_and_tolua++ LuaScriptModule
+SUBDIRS = LuaScriptModule
--- cegui_mk2/ScriptingModules/CEGUILua/Makefile.in.orig	2005-11-26 09:23:10.000000000 +0000
+++ cegui_mk2/ScriptingModules/CEGUILua/Makefile.in	2006-06-11 17:57:14.000000000 +0100
@@ -167,7 +167,7 @@
 sharedstatedir = @sharedstatedir@
 sysconfdir = @sysconfdir@
 target_alias = @target_alias@
-SUBDIRS = lua_and_tolua++ LuaScriptModule
+SUBDIRS = LuaScriptModule
 subdir = ScriptingModules/CEGUILua
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
--- cegui_mk2/ScriptingModules/CEGUILua/LuaScriptModule/src/Makefile.in.orig	2005-11-26 09:23:10.000000000 +0000
+++ cegui_mk2/ScriptingModules/CEGUILua/LuaScriptModule/src/Makefile.in	2006-06-11 20:50:33.000000000 +0100
@@ -168,7 +168,6 @@
 sysconfdir = @sysconfdir@
 target_alias = @target_alias@
 INCLUDES = -I$(top_srcdir)/include \
-           -I$(top_srcdir)/ScriptingModules/CEGUILua/lua_and_tolua++/include \
            -I$(top_srcdir)/ScriptingModules/CEGUILua/LuaScriptModule/include
 
 lib_LTLIBRARIES = libCEGUILuaScriptModule.la
@@ -187,7 +186,7 @@
 LTLIBRARIES = $(lib_LTLIBRARIES)
 
 libCEGUILuaScriptModule_la_LDFLAGS =
-libCEGUILuaScriptModule_la_LIBADD =
+libCEGUILuaScriptModule_la_LIBADD = -llua -ltolua++
 am_libCEGUILuaScriptModule_la_OBJECTS = lua_CEGUI.lo CEGUILua.lo \
 	required.lo
 libCEGUILuaScriptModule_la_OBJECTS = \
--- cegui_mk2/ScriptingModules/CEGUILua/LuaScriptModule/src/Makefile.am.orig	2005-07-10 10:38:52.000000000 +0100
+++ cegui_mk2/ScriptingModules/CEGUILua/LuaScriptModule/src/Makefile.am	2006-06-11 18:00:28.000000000 +0100
@@ -1,8 +1,9 @@
 INCLUDES = -I$(top_srcdir)/include \
-           -I$(top_srcdir)/ScriptingModules/CEGUILua/lua_and_tolua++/include \
            -I$(top_srcdir)/ScriptingModules/CEGUILua/LuaScriptModule/include
 lib_LTLIBRARIES = libCEGUILuaScriptModule.la
 
+libCEGUILuaScriptModule_la_LIBADD = -llua -ltolua++
+
 libCEGUILuaScriptModule_la_SOURCES = lua_CEGUI.cpp \
                                      CEGUILua.cpp \
                                      required.cpp


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/cegui/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	11 Jun 2006 21:17:38 -0000	1.1
+++ .cvsignore	11 Jun 2006 21:19:57 -0000	1.2
@@ -0,0 +1 @@
+cegui_mk2-source-0.4.1.tar.bz2


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/cegui/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	11 Jun 2006 21:17:38 -0000	1.1
+++ sources	11 Jun 2006 21:19:57 -0000	1.2
@@ -0,0 +1 @@
+7b1df5ba4dd91376b79bd5968a429e23  cegui_mk2-source-0.4.1.tar.bz2




More information about the fedora-extras-commits mailing list