[FriBidi-commit] fribidi configure.ac,1.7,1.8

Behdad Esfahbod behdad at pdx.freedesktop.org
Tue May 25 05:09:41 PDT 2004


Update of /cvs/fribidi/fribidi
In directory pdx:/tmp/cvs-serv4461

Modified Files:
	configure.ac 
Log Message:
Trying to build DLL on Cygwin.


Index: configure.ac
===================================================================
RCS file: /cvs/fribidi/fribidi/configure.ac,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- a/configure.ac	22 May 2004 10:35:30 -0000	1.7
+++ b/configure.ac	25 May 2004 12:09:39 -0000	1.8
@@ -80,11 +80,23 @@
 AC_MSG_CHECKING([for native Win32])
   case "$host" in
     *-*-mingw*) os_win32=yes ;;
-    *) pango_os_win32=no ;;
+    *) os_win32=no ;;
   esac
 AC_MSG_RESULT([$os_win32])
 AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
+if test "$os_win32" = "yes"; then
+  if test x$enable_static = xyes -o x$enable_static = x; then
+    AC_MSG_WARN([Disabling static library build, must build as DLL on Windows.])
+    enable_static=no
+  fi
+  if test x$enable_shared = xno; then
+    AC_MSG_WARN([Enabling shared library build, must build as DLL on Windows.])
+  fi
+  enable_shared=yes
+fi
+
 AC_MSG_CHECKING([for some Win32 platform])
+  echo XXXXXXXXXXXXXXXXXX $host
   case "$host" in
     *-*-mingw*|*-*-cygwin*) platform_win32=yes ;;
     *) platform_win32=no ;;




More information about the FriBidi-Commit mailing list