mysql hints - makes it so mysql is detected in certain servers such as
authornveid <nveid@comcast.net>
Mon, 11 Sep 2006 05:16:07 +0000 (05:16 +0000)
committernveid <nveid@comcast.net>
Mon, 11 Sep 2006 05:16:07 +0000 (05:16 +0000)
fedora and generally where mysql is installed in a subdirectory in the
libpath

game/txt/changes.txt
hints/linux_2.sh

index 4db496b8fa69c5098ec823890eda6a5cd9e79b37..a814dc8e3ba8babab08a0f6d1e347527d48b6545 100644 (file)
@@ -9,9 +9,6 @@ CobraMUSH Version 0.72p1
   Version 0.72p1 is a bugfix/maintenance release of version 0.72.
   It is the first bugfix/maintenance release in that series.
 
-  Fixes:
-     * Fixed notify bug that caused the chat system to crash [AEJ]
-
 & 0.72
 CobraMUSH Version 0.72
   This is a list of changes in CobraMUSH that could be of
index 36b96748526d046194e9093b405f694d15ca2561..ae6bc950f91c1ef38fd58114e2d1298c953f3b53 100644 (file)
@@ -1,2 +1,14 @@
 nm_opt='-B'
+
+# sometimes mysql might be found in an actual mysql
+# subdirectory in the library path.. We'll need to
+# check for that
+
+if [ -d /usr/lib/mysql ]; then
+   ldflags='-L/usr/lib/mysql'
+ elif [ -d /usr/local/lib/mysql ]; then
+    ldflags='-L/usr/local/lib/mysql'
+fi
+
+
 echo "I suggest using sysmalloc when you edit options.h."