[10894] Fixed problems with new ACE lib on Darwin systems

(based on cipherCOM's repo commit ce2638f)

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
cipherCOM 2010-12-20 10:36:19 +03:00 committed by VladimirMangos
parent 3e1c04fc6e
commit f59dae1d9c
2 changed files with 5 additions and 3 deletions

View file

@ -489,12 +489,14 @@ AC_CHECK_HEADER([dlfcn.h],
case "$host_os" in case "$host_os" in
darwin*) darwin*)
dnl MaNGOS modification: fix MacOS build by use ACE_TEXT instead ACE_LIB_TEXT (make code similar used in config-macosx.h)
AC_DEFINE([ACE_LD_SEARCH_PATH], AC_DEFINE([ACE_LD_SEARCH_PATH],
[ACE_LIB_TEXT ("DYLD_LIBRARY_PATH")], [ACE_TEXT ("DYLD_LIBRARY_PATH")],
[Define to environment variable used for DLL search path]) [Define to environment variable used for DLL search path])
AC_DEFINE([ACE_DLL_SUFFIX], AC_DEFINE([ACE_DLL_SUFFIX],
[ACE_LIB_TEXT (".dylib")], [ACE_TEXT (".dylib")],
[Define to DLL file suffix]) [Define to DLL file suffix])
dnl MaNGOS modification end
;; ;;
esac esac
],[]) ],[])

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "10893" #define REVISION_NR "10894"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__