Author: wyoung
Date: Wed Aug 6 23:15:37 2008
New Revision: 2328
URL: http://svn.gna.org/viewcvs/mysqlpp?rev=2328&view=rev
Log:
Added Solaris support to exrun
Modified:
trunk/exrun
Modified: trunk/exrun
URL:
http://svn.gna.org/viewcvs/mysqlpp/trunk/exrun?rev=2328&r1=2327&r2=2328&view=diff
==============================================================================
--- trunk/exrun (original)
+++ trunk/exrun Wed Aug 6 23:15:37 2008
@@ -44,7 +44,12 @@
PATH=. $TOOL ./$PROG $*
elif [ -e /usr/bin/ldd ]
then
- LD_LIBRARY_PATH=. $TOOL ./$PROG $*
+ if [ `uname -s` = 'SunOS' ]
+ then
+ LD_LIBRARY_PATH=.:/usr/mysql/lib/mysql $TOOL ./$PROG $*
+ else
+ LD_LIBRARY_PATH=. $TOOL ./$PROG $*
+ fi
else
echo "ERROR: I don't grok this system's dynamic linkage system."
fi
_______________________________________________
Mysqlpp-commits mailing list
[email protected]
https://mail.gna.org/listinfo/mysqlpp-commits