Browse code

autoreconf

Kevin Lin authored on 2016/03/12 05:44:33
Showing 4 changed files
... ...
@@ -119,7 +119,7 @@ DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
119 119
 	$(top_srcdir)/docs/man/clamsubmit.1.in AUTHORS COPYING \
120 120
 	ChangeLog INSTALL NEWS README config/compile \
121 121
 	config/config.guess config/config.rpath config/config.sub \
122
-	config/install-sh config/missing config/ylwrap \
122
+	config/depcomp config/install-sh config/missing config/ylwrap \
123 123
 	config/ltmain.sh $(top_srcdir)/config/compile \
124 124
 	$(top_srcdir)/config/config.guess \
125 125
 	$(top_srcdir)/config/config.rpath \
... ...
@@ -18493,8 +18493,8 @@ $as_echo_n "checking pcre-config version... " >&6; }
18493 18493
 
18494 18494
     { $as_echo "$as_me:${as_lineno-$LINENO}: result: $pcre_version" >&5
18495 18495
 $as_echo "$pcre_version" >&6; }
18496
-    pcrever_major=`echo "$pcre_version" | sed -e 's/\([0-9]\+\).*/\1/'`
18497
-    pcrever_minor=`echo "$pcre_version" | sed -e 's/[0-9]\+\.\([0-9]\+\).*/\1/'`
18496
+    pcrever_major=`echo "$pcre_version" | sed -re 's/([0-9]+).*/\1/'`
18497
+    pcrever_minor=`echo "$pcre_version" | sed -re 's/[0-9]+\.([0-9]+).*/\1/'`
18498 18498
 
18499 18499
         if test "$pcrelib" = "pcre"; then
18500 18500
         if test $pcrever_major -lt 6; then
... ...
@@ -5750,8 +5750,8 @@ maintainer-clean-generic:
5750 5750
 	@echo "This command is intended for maintainers to use"
5751 5751
 	@echo "it deletes files that may require special tools to rebuild."
5752 5752
 	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
5753
-@BUILD_EXTERNAL_LLVM_TRUE@clean-local:
5754 5753
 @BUILD_EXTERNAL_LLVM_TRUE@distclean-local:
5754
+@BUILD_EXTERNAL_LLVM_TRUE@clean-local:
5755 5755
 clean: clean-am
5756 5756
 
5757 5757
 clean-am: clean-generic clean-libtool clean-local \
... ...
@@ -16553,9 +16553,10 @@ else
16553 16553
 fi
16554 16554
 
16555 16555
 llvmver_val=`echo "$llvmver" | sed -e 's/svn//g'`
16556
-llvmver_major=`echo "$llvmver_val" | sed -e 's/\([0-9]\).*/\1/'`
16557
-llvmver_minor=`echo "$llvmver_val" | sed -e 's/[0-9]//' | sed -e 's/^\.//' | sed -e 's/\([0-9]\).*/\1/'`
16558
-llvmver_patch=`echo "$llvmver_val" | sed -e 's/[0-9]\.[0-9]//' | sed -e 's/^\.//' | sed -e 's/\([0-9]\).*/\1/'`
16556
+llvmver_sval=`echo "$llvmver_val" | sed -re 's/[0-9]+//' | sed -e 's/^\.//'`
16557
+llvmver_major=`echo "$llvmver_val"  | sed -re 's/([0-9]+).*/\1/'`
16558
+llvmver_minor=`echo "$llvmver_sval" | sed -re 's/([0-9]+).*/\1/'`
16559
+llvmver_patch=`echo "$llvmver_sval" | sed -re 's/[0-9]+//' | sed -e 's/^\.//' | sed -re 's/([0-9]+).*/\1/'`
16559 16560
 llvmver_suffix=
16560 16561
 if test "x$llvmver_patch" = "x"; then
16561 16562
     llvmver_patch=0