configure.in: quote LAME help test so it doesnt break VIMs syntax highlighting
[swftools.git] / configure.in
index 515718a..9cc3f23 100644 (file)
@@ -27,14 +27,14 @@ AC_ARG_ENABLE(warnings,
 AC_ARG_ENABLE(optimizations,
 [  --enable-optimizations  turn on compiler optimizations (recommended for avi2swf)], OPTIMIZE=true)
 AC_ARG_ENABLE(lame,
-[  --disable-lame          don't compile any L.A.M.E. mp3 encoding code in],
+[  --disable-lame          "don't compile any L.A.M.E. mp3 encoding code in"],
 
 if test "x$enable_lame" = "xno";then
     DISABLE_LAME=yes
 fi,DISABLE_LAME=)
 
 PACKAGE=swftools
-VERSION=2010-02-06-1900
+VERSION=0.9.1
 
 # ------------------------------------------------------------------
 
@@ -391,11 +391,15 @@ fi
 RFX_CHECK_RUBY
 
 if test "x$RUBY_OK" '!=' "xyes";then
-    echo all install uninstall clean: > lib/ruby/Makefile
+    if test -d "lib/ruby/";then
+       echo all install uninstall clean: > lib/ruby/Makefile
+    fi
     # fail silently- the most users won't have any need for the
     # ruby interface anyway
 else
-    rubygfx="lib/ruby/Makefile"
+    if test -f "lib/ruby/Makefile.in";then
+       rubygfx="lib/ruby/Makefile"
+    fi
 fi
 
 # ------------------------------------------------------------------