[mapguide-commits] r5343 - in trunk/MgDev: . Web/src/ApacheAgent Web/src/CgiAgent Web/src/WebSupport

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Wed Oct 27 20:53:04 EDT 2010


Author: hubu
Date: 2010-10-27 17:53:04 -0700 (Wed, 27 Oct 2010)
New Revision: 5343

Added:
   trunk/MgDev/Web/src/WebSupport/Makefile.am
Modified:
   trunk/MgDev/Web/src/ApacheAgent/Makefile.am
   trunk/MgDev/Web/src/CgiAgent/Makefile.am
   trunk/MgDev/configure
   trunk/MgDev/configure.in
Log:
Fix ticket #1436 on LinuxFix ticket 
https://trac.osgeo.org/mapguide/ticket/1436


Modified: trunk/MgDev/Web/src/ApacheAgent/Makefile.am
===================================================================
--- trunk/MgDev/Web/src/ApacheAgent/Makefile.am	2010-10-27 18:48:06 UTC (rev 5342)
+++ trunk/MgDev/Web/src/ApacheAgent/Makefile.am	2010-10-28 00:53:04 UTC (rev 5343)
@@ -41,7 +41,8 @@
                  -lMgPlatformBase \
                  -lMgMdfModel \
                  -lMgMdfParser \
-                 -lMgHttpHandler
+                 -lMgHttpHandler \
+				 -lMgWebSupport
 
 mod_mgmapagent_la_LDFLAGS = -release $(PACKAGE_VERSION) \
             -L../../../Oem/ACE/ACE_wrappers/ace \
@@ -54,4 +55,5 @@
             -L../../../Common/PlatformBase \
             -L../../../Common/MapGuideCommon \
             -L../HttpHandler \
+            -L../WebSupport \
             -module

Modified: trunk/MgDev/Web/src/CgiAgent/Makefile.am
===================================================================
--- trunk/MgDev/Web/src/CgiAgent/Makefile.am	2010-10-27 18:48:06 UTC (rev 5342)
+++ trunk/MgDev/Web/src/CgiAgent/Makefile.am	2010-10-28 00:53:04 UTC (rev 5343)
@@ -39,7 +39,8 @@
                  -lMgPlatformBase \
                  -lMgMdfModel \
                  -lMgMdfParser \
-                 -lMgHttpHandler
+                 -lMgHttpHandler \
+                 -lMgWebSupport
 
 mapagent_LDFLAGS = \
             -L../../../Oem/ACE/ACE_wrappers/ace \
@@ -51,4 +52,5 @@
             -L../../../Common/Geometry \
             -L../../../Common/PlatformBase \
             -L../../../Common/MapGuideCommon \
-            -L../HttpHandler
+            -L../HttpHandler \
+            -L../WebSupport

Added: trunk/MgDev/Web/src/WebSupport/Makefile.am
===================================================================
--- trunk/MgDev/Web/src/WebSupport/Makefile.am	                        (rev 0)
+++ trunk/MgDev/Web/src/WebSupport/Makefile.am	2010-10-28 00:53:04 UTC (rev 5343)
@@ -0,0 +1,25 @@
+AUTOMAKE_OPTIONS = foreign
+
+EXTRA_DIST =WebSupport.vcproj
+
+prefix=@prefix@/webserverextensions
+
+lib_LTLIBRARIES = libMgWebSupport.la
+
+INCLUDES    = -I../../../Common/MdfModel \
+              -I../../../Common/Foundation \
+              -I../../../Common/Geometry \
+              -I../../../Common/PlatformBase \
+              -I../../../Common/MapGuideCommon \
+              -I../../../Oem/ACE/ACE_wrappers
+              
+libMgWebSupport_la_SOURCES = InitializeWebTier.cpp
+
+noinst_HEADERS = WebSupport.h
+
+libMgWebSupport_la_LIBADD = -lMgFoundation -lMgPlatformBase -lMgMapGuideCommon
+
+libMgWebSupport_la_LDFLAGS = -release $(PACKAGE_VERSION) \
+            -L../../../Common/Foundation \
+            -L../../../Common/PlatformBase \
+            -L../../../Common/MapGuideCommon

Modified: trunk/MgDev/configure
===================================================================
--- trunk/MgDev/configure	2010-10-27 18:48:06 UTC (rev 5342)
+++ trunk/MgDev/configure	2010-10-28 00:53:04 UTC (rev 5343)
@@ -20259,7 +20259,7 @@
 
 
 # MAP_CONFIG_FILES_WEBTIER
-                                                                                ac_config_files="$ac_config_files Web/Makefile Web/src/Makefile Web/src/WebApp/Makefile Web/src/JavaApi/Makefile Web/src/PhpApi/Makefile Web/src/HttpHandler/Makefile Web/src/CgiAgent/Makefile Web/src/ApacheAgent/Makefile"
+                                                                                ac_config_files="$ac_config_files Web/Makefile Web/src/Makefile Web/src/WebApp/Makefile Web/src/WebSupport/Makefile Web/src/JavaApi/Makefile Web/src/PhpApi/Makefile Web/src/HttpHandler/Makefile Web/src/CgiAgent/Makefile Web/src/ApacheAgent/Makefile"
 
 
 cat >confcache <<\_ACEOF
@@ -20896,6 +20896,7 @@
   "Web/Makefile" ) CONFIG_FILES="$CONFIG_FILES Web/Makefile" ;;
   "Web/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES Web/src/Makefile" ;;
   "Web/src/WebApp/Makefile" ) CONFIG_FILES="$CONFIG_FILES Web/src/WebApp/Makefile" ;;
+  "Web/src/WebSupport/Makefile" ) CONFIG_FILES="$CONFIG_FILES Web/src/WebSupport/Makefile" ;;
   "Web/src/JavaApi/Makefile" ) CONFIG_FILES="$CONFIG_FILES Web/src/JavaApi/Makefile" ;;
   "Web/src/PhpApi/Makefile" ) CONFIG_FILES="$CONFIG_FILES Web/src/PhpApi/Makefile" ;;
   "Web/src/HttpHandler/Makefile" ) CONFIG_FILES="$CONFIG_FILES Web/src/HttpHandler/Makefile" ;;

Modified: trunk/MgDev/configure.in
===================================================================
--- trunk/MgDev/configure.in	2010-10-27 18:48:06 UTC (rev 5342)
+++ trunk/MgDev/configure.in	2010-10-28 00:53:04 UTC (rev 5343)
@@ -236,6 +236,7 @@
 AC_CONFIG_FILES([Web/Makefile \
         Web/src/Makefile \
         Web/src/WebApp/Makefile \
+        Web/src/WebSupport/Makefile \
         Web/src/JavaApi/Makefile \
         Web/src/PhpApi/Makefile \
         Web/src/HttpHandler/Makefile \



More information about the mapguide-commits mailing list