Updated ./configure to handle Mingw problem with mount directories (thanks Lafras Henning)

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@1449 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2007-09-24 16:10:13 +00:00
parent a303c1172d
commit 53847a3ab5
2 changed files with 16 additions and 2 deletions

View File

@ -2744,7 +2744,14 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_pjdir=`pwd`
case $target in
*mingw* | *cygw* | *win32* | *w32* )
ac_pjdir=`pwd -W`
;;
*)
ac_pjdir=`pwd`
;;
esac

View File

@ -38,7 +38,14 @@ AC_PROG_CXX
AC_LANG_C
AC_SUBST(ac_pjdir)
ac_pjdir=`pwd`
case $target in
*mingw* | *cygw* | *win32* | *w32* )
ac_pjdir=`pwd -W`
;;
*)
ac_pjdir=`pwd`
;;
esac
AC_CHECK_LIB(pthread,pthread_create)
AC_CHECK_LIB(wsock32,puts)