gstdoc-scangobj: use /usr/bin/env perl instead of hard-coding /usr/bin/perl
[platform/upstream/gst-common.git] / win32.mak
index 96b1085..94afaec 100644 (file)
--- a/win32.mak
+++ b/win32.mak
@@ -24,7 +24,8 @@ win32-check-crlf:
        @echo Checking win32 files for CR LF line endings ...; \
        fail=0 ; \
        for each in $(win32crlf) ; do \
-         if ! (file $$each | grep CRLF >/dev/null) ; then \
+         result=`perl -e 'print grep(/\r\n/,<>)' "$$each" | wc -l`; \
+         if test "$$result" = 0 ; then \
            echo $$each must be fixed to have CRLF line endings ; \
            fail=1; \
          fi ; \
@@ -35,10 +36,10 @@ win32-check-crlf:
 # (don't care about other unixes for now, it's enough if it works on one of
 # the linux build bots; we assume .so )
 check-exports:
-       fail=0 ; \
+       @fail=0 ; \
        for l in $(win32defs); do \
          libbase=`basename "$$l" ".def"`; \
-         libso=`find "$(top_builddir)" -name "$$libbase-0.10.so"`; \
+         libso=`find "$(top_builddir)" -name "$$libbase-@GST_MAJORMINOR@.so" | grep -v /_build/ | head -n1`; \
          libdef="$(top_srcdir)/win32/common/$$libbase.def"; \
          if test "x$$libso" != "x"; then \
            echo Checking symbols in $$libso; \
@@ -46,8 +47,25 @@ check-exports:
              fail=1; \
            fi; \
          fi; \
-       done
+       done ; \
+       if test $$fail != 0; then \
+         echo '-----------------------------------------------------------'; \
+         echo 'Run this to update the .def files:'; \
+         echo 'make check-exports 2>&1 | patch -p1'; \
+         echo '-----------------------------------------------------------'; \
+       fi; \
+       exit $$fail
 
+# complain about nonportable printf format strings (%lld, %llu, %zu etc.)
+check-nonportable-print-format:
+       @fail=0 ; \
+       loc=`find "$(top_srcdir)" -name '*.c' | xargs grep -n -e '%[0-9]*ll[udx]' -e '%[0-9]*z[udx]'`; \
+       if test "x$$loc" != "x"; then \
+         echo "Please fix the following print format strings:" ; \
+         find "$(top_srcdir)" -name '*.c' | xargs grep -n -e '%[0-9]*ll[udx]' -e '%[0-9]*z[udx]'; \
+         fail=1; \
+       fi; \
+       exit $$fail
 
 dist-hook: check-exports win32-check-crlf