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)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.