view src/pstoedit-4-winlibemf.patch @ 3815:deed2268e330

pstoedit: cleanup wmf/emf patch * src/pstoedit-4-winlibemf.patch: clean up patch
author John Donoghue <john.donoghue@ieee.org>
date Sat, 28 Feb 2015 14:44:57 -0500
parents a6140fcf5631
children
line wrap: on
line source

diff -ur pstoedit-3.62/configure.ac pstoedit-3.62.new/configure.ac
--- pstoedit-3.62/configure.ac	2013-03-10 14:45:43.000000000 -0400
+++ pstoedit-3.62.new/configure.ac	2015-02-28 14:34:33.000000000 -0500
@@ -324,6 +324,9 @@
 OLD_CPPFLAGS=
 OLD_LIBS=
 
+dnl if windows we can just enable emf/wmf support
+AC_CHECK_HEADER(windows.h,
+ [have_windows_h=yes])
 
 AC_ARG_WITH(libemf-src,
 [  --with-libemf-src=DIR           look for libEMF src in dir (e.g. /usr/local/lib)],
@@ -382,8 +385,14 @@
 if test -n "${LIBEMF_LDFLAGS}" && test -n "${LIBEMF_CFLAGS}"; then
    HAVE_LIBEMF=yes
 else
-   LIBEMF_CFLAGS=
-   LIBEMF_LDFLAGS=
+   if test "${have_windows_h}" = "yes"; then
+     HAVE_LIBEMF=yes
+     LIBEMF_CFLAGS=
+     LIBEMF_LDFLAGS=-lgdi32
+   else
+     LIBEMF_CFLAGS=
+     LIBEMF_LDFLAGS=
+   fi
 fi
 
 AC_SUBST(LIBEMF_LDFLAGS)