diff options
author | Stig Bakken <ssb@php.net> | 1999-04-20 01:03:12 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 1999-04-20 01:03:12 +0000 |
commit | 54468d2e75aeb1ace053ff405f5f539a0012ba76 (patch) | |
tree | e308e39abaefdb62a90deaeb6329ca023f815592 /acinclude.m4 | |
parent | b7c30c1bdf209bc270755bcafac45908fc8daf2f (diff) | |
download | php-git-54468d2e75aeb1ace053ff405f5f539a0012ba76.tar.gz |
odbc compiles and runs on UNIX again (tested with Solid 2.3)
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,[ |