Changeset 819:a16ba1ced592 in mediastreamer2


Ignore:
Timestamp:
Oct 22, 2009 10:14:27 PM (4 years ago)
Author:
jehan monnier <jehan.monnier@…>
Branch:
default
Message:

debug libtool hack for wince build

File:
1 edited

Legend:

Unmodified
Added
Removed
  • linphone/configure.in

    r818 r819  
    4040                LIBS="$LIBS -lws2 -liphlpapi" 
    4141                mingw_found=yes 
     42                mingwce_found=yes 
    4243                ;; 
    4344        *mingw*) 
     
    8990LIBS="$LIBS $LIBINTL" 
    9091else 
    91 AC_DEFINE(ENABLE_NLS,1,[Tells whether localisation is possible]) 
    92 AC_DEFINE(HAVE_GETTEXT,1,[Tells wheter localisation is possible]) 
    93 LIBS="$LIBS -L/usr/lib -lintl" 
     92        if test "$mingwce_found" != "yes" ; then  
     93                AC_DEFINE(ENABLE_NLS,1,[Tells whether localisation is possible]) 
     94                AC_DEFINE(HAVE_GETTEXT,1,[Tells wheter localisation is possible]) 
     95                LIBS="$LIBS -L/usr/lib -lintl" 
     96        else 
     97                dnl gettext macro does not work properly under mingw. 
     98                AM_GNU_GETTEXT([external]) 
     99                LIBS="$LIBS $LIBINTL" 
     100        fi 
    94101fi 
    95102 
Note: See TracChangeset for help on using the changeset viewer.