[mapguide-commits] r8107 - branches/2.6/MgDev/Server/src/Core

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Tue May 6 05:53:36 PDT 2014


Author: jng
Date: 2014-05-06 05:53:36 -0700 (Tue, 06 May 2014)
New Revision: 8107

Modified:
   branches/2.6/MgDev/Server/src/Core/Makefile.am
Log:
Fix 'could not load a transcoding service' error when starting up mgserver on CentOS. Apparently link order matters and -ldl being linked before -lxerces-c was causing this error. Making -ldl dead last in the link list does not cause this error to show up again

Modified: branches/2.6/MgDev/Server/src/Core/Makefile.am
===================================================================
--- branches/2.6/MgDev/Server/src/Core/Makefile.am	2014-05-03 17:39:14 UTC (rev 8106)
+++ branches/2.6/MgDev/Server/src/Core/Makefile.am	2014-05-06 12:53:36 UTC (rev 8107)
@@ -91,7 +91,6 @@
 
 mgserver_LDADD = \
   -lACE \
-  -ldl \
   -ldb_cxx \
   -ldbxml \
   -ldwfcore \
@@ -126,6 +125,7 @@
   -lMgMdfParser \
   -lMgStylization \
   -lMgRenderers \
+  -ldl \
   ../../../Common/Security/libMgSecurity.a
 
 mgserver_LDFLAGS = \



More information about the mapguide-commits mailing list