PERFORCE change 143760 for review

Anselm Strauss strauss at FreeBSD.org
Thu Jun 19 11:52:26 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=143760

Change 143760 by strauss at 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.


More information about the p4-projects mailing list