diff options
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index b4220b29f2..84b3151b87 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -34,53 +34,6 @@ AC_DEFUN(AC_MSQL_VERSION,[ ]) dnl -dnl Figure out which library file to link with for the Solid support. -dnl -AC_DEFUN(AC_FIND_SOLID_LIBS,[ - AC_MSG_CHECKING([Solid library file]) - ac_solid_uname_s=`uname -s 2>/dev/null` - case $ac_solid_uname_s in - AIX) ac_solid_os=a3x;; - HP-UX) ac_solid_os=h9x;; - IRIX) ac_solid_os=irx;; - Linux) ac_solid_os=lux;; - SunOS) ac_solid_os=ssx;; # should we deal with SunOS 4? - FreeBSD) ac_solid_os=fbx;; - # "uname -s" on SCO makes no sense. - esac - SOLID_LIBS=`echo $1/scl${ac_solid_os}*.so | cut -d' ' -f1` - if test ! -f $SOLID_LIBS; then - SOLID_LIBS=`echo $1/scl${ac_solid_os}*.a | cut -d' ' -f1` - fi - if test ! -f $SOLID_LIBS; then - SOLID_LIBS=`echo $1/scl2x${ac_solid_os}*.a | cut -d' ' -f1` - fi - if test ! -f $SOLID_LIBS; then - SOLID_LIBS=`echo $1/scl2x${ac_solid_os}*.a | cut -d' ' -f1` - fi - if test ! -f $SOLID_LIBS; then - SOLID_LIBS=`echo $1/bcl${ac_solid_os}*.so | cut -d' ' -f1` - fi - if test ! -f $SOLID_LIBS; then - SOLID_LIBS=`echo $1/bcl${ac_solid_os}*.a | cut -d' ' -f1` - fi - AC_MSG_RESULT(`echo $SOLID_LIBS | sed -e 's!.*/!!'`) -]) - -dnl -dnl Figure out which library file to link with for the Empress support. -dnl -AC_DEFUN(AC_FIND_EMPRESS_LIBS,[ - AC_MSG_CHECKING([Empress library file]) - EMPRESS_LIBS=`echo $1/empodbc.so | cut -d' ' -f1` - if test ! -f $EMPRESS_LIBS; then - EMPRESS_LIBS=`echo $1/empodbc.a | cut -d' ' -f1` - fi - AC_MSG_RESULT(`echo $EMPRESS_LIBS | sed -e 's!.*/!!'`) -]) - - -dnl dnl See if we have broken header files like SunOS has. dnl AC_DEFUN(AC_MISSING_FCLOSE_DECL,[ |