minor change for wince-cegcc and wince-mingw32ce support

This commit is contained in:
Yang Tse
2008-05-17 01:20:56 +00:00
parent e059efda1b
commit 7358db5c27
3 changed files with 4 additions and 4 deletions

View File

@@ -224,7 +224,7 @@ AC_DEFUN([CURL_CHECK_HEADER_WINLDAP], [
#endif #endif
#include <winldap.h> #include <winldap.h>
],[ ],[
#ifdef __CYGWIN__ #if defined(__CYGWIN__) || defined(__CEGCC__)
HAVE_WINLDAP_H shall not be defined. HAVE_WINLDAP_H shall not be defined.
#else #else
LDAP *ldp = ldap_init("dummy", LDAP_PORT); LDAP *ldp = ldap_init("dummy", LDAP_PORT);
@@ -265,7 +265,7 @@ AC_DEFUN([CURL_CHECK_HEADER_WINBER], [
#include <winldap.h> #include <winldap.h>
#include <winber.h> #include <winber.h>
],[ ],[
#ifdef __CYGWIN__ #if defined(__CYGWIN__) || defined(__CEGCC__)
HAVE_WINBER_H shall not be defined. HAVE_WINBER_H shall not be defined.
#else #else
BERVAL *bvp = NULL; BERVAL *bvp = NULL;

View File

@@ -106,7 +106,7 @@ AC_PROG_LIBTOOL
AC_MSG_CHECKING([if we need -no-undefined]) AC_MSG_CHECKING([if we need -no-undefined])
case $host in case $host in
*-*-cygwin | *-*-mingw* | *-*-pw32*) *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
need_no_undefined=yes need_no_undefined=yes
;; ;;
*) *)

View File

@@ -151,7 +151,7 @@ AC_PROG_LIBTOOL
AC_MSG_CHECKING([if we need -no-undefined]) AC_MSG_CHECKING([if we need -no-undefined])
case $host in case $host in
*-*-cygwin | *-*-mingw* | *-*-pw32*) *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
need_no_undefined=yes need_no_undefined=yes
;; ;;
*) *)