Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 Jun 2008 11:52:25 GMT
From:      Anselm Strauss <strauss@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 143760 for review
Message-ID:  <200806191152.m5JBqPju079452@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=143760

Change 143760 by strauss@strauss_marvelman on 2008/06/19 11:51:27

	Build fixes:
		- autogen.sh can just use 'autoreconf -i'
		- include <config.h> instead of "../config.h" for build outside source directory

Affected files ...

.. //depot/projects/soc2008/strauss_libarchive/autogen.sh#5 edit
.. //depot/projects/soc2008/strauss_libarchive/libarchive/archive_platform.h#8 edit

Differences ...

==== //depot/projects/soc2008/strauss_libarchive/autogen.sh#5 (text+kox) ====

@@ -1,9 +1,3 @@
 #!/bin/sh
 
-set -xe
-mkdir -p config.aux
-aclocal
-autoheader
-autoconf
-libtoolize --automake -c
-automake -a -c
+autoreconf -i

==== //depot/projects/soc2008/strauss_libarchive/libarchive/archive_platform.h#8 (ktext) ====

@@ -22,7 +22,7 @@
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  *
- * $Id$ $Change: 143014 $ $DateTime$ $Author$
+ * $Id$ $Change: 143760 $ $DateTime$ $Author$
  */
 
 /*
@@ -47,7 +47,7 @@
 #include PLATFORM_CONFIG_H
 #elif defined(HAVE_CONFIG_H)
 /* Most POSIX platforms use the 'configure' script to build config.h */
-#include "../config.h"
+#include <config.h>
 #else
 /* Warn if the library hasn't been (automatically or manually) configured. */
 #error Oops: No config.h and no pre-built configuration in archive_platform.h.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200806191152.m5JBqPju079452>