Changeset 1449


Ignore:
Timestamp:
Sep 24, 2007 4:10:13 PM (17 years ago)
Author:
bennylp
Message:

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

Location:
pjproject/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/aconfigure

    r1282 r1449  
    27452745 
    27462746 
    2747 ac_pjdir=`pwd` 
     2747case $target in 
     2748    *mingw* | *cygw* | *win32* | *w32* ) 
     2749        ac_pjdir=`pwd -W` 
     2750        ;; 
     2751    *) 
     2752        ac_pjdir=`pwd` 
     2753        ;; 
     2754esac 
    27482755 
    27492756 
  • pjproject/trunk/aconfigure.ac

    r1282 r1449  
    3939 
    4040AC_SUBST(ac_pjdir) 
    41 ac_pjdir=`pwd` 
     41case $target in  
     42    *mingw* | *cygw* | *win32* | *w32* ) 
     43        ac_pjdir=`pwd -W` 
     44        ;; 
     45    *) 
     46        ac_pjdir=`pwd` 
     47        ;; 
     48esac 
    4249 
    4350AC_CHECK_LIB(pthread,pthread_create) 
Note: See TracChangeset for help on using the changeset viewer.