You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2019/01/08 13:29:27 UTC

svn commit: r1850748 - /subversion/trunk/tools/dev/unix-build/Makefile.svn

Author: stsp
Date: Tue Jan  8 13:29:27 2019
New Revision: 1850748

URL: http://svn.apache.org/viewvc?rev=1850748&view=rev
Log:
* tools/dev/unix-build/Makefile.svn: Undo the APR configure script hack
  introduced in r1849589. This hack should not be needed anymore.

Modified:
    subversion/trunk/tools/dev/unix-build/Makefile.svn

Modified: subversion/trunk/tools/dev/unix-build/Makefile.svn
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/unix-build/Makefile.svn?rev=1850748&r1=1850747&r2=1850748&view=diff
==============================================================================
--- subversion/trunk/tools/dev/unix-build/Makefile.svn (original)
+++ subversion/trunk/tools/dev/unix-build/Makefile.svn Tue Jan  8 13:29:27 2019
@@ -387,9 +387,6 @@ $(APR_OBJDIR)/.retrieved:
 	if [ ! -d $(APR_SRCDIR) ]; then \
 		svn export $(APR_URL)/tags/$(APR_VER)/ $(APR_SRCDIR); \
 	fi
-	# Hack configure script to ensure that sizeof(apr_off_t) == sizeof(uint64_t)
-	sed -i.orig -e 's/if test "$$ac_cv_sizeof_off_t" = "$$ac_cv_sizeof_long"; then/if false; then/' $(APR_SRCDIR)/configure.in
-	sed -i -e 's/^elif test "$$ac_cv_sizeof_long" = "8"; then/elif false; then/' $(APR_SRCDIR)/configure.in
 	touch $@
 
 ifeq ($(THREADING),yes)