Ignore:
Timestamp:
06/11/12 15:39:22 (12 months ago)
Author:
sam
Message:

build: fix the Visual Studio compilation, remove old solution
configuration entries, and update bootstrap script.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/bootstrap

    r4333 r4812  
    33# bootstrap: generic bootstrap/autogen.sh script for autotools projects 
    44# 
    5 # Copyright (c) 2002-2009 Sam Hocevar <sam@hocevar.net> 
     5# Copyright (c) 2002-2011 Sam Hocevar <sam@hocevar.net> 
    66# 
    77#    This program is free software. It comes without any warranty, to 
     
    1212# 
    1313# The latest version of this script can be found at the following place: 
    14 #   http://caca.zoy.org/wiki/build 
     14#    http://caca.zoy.org/wiki/build 
    1515 
    1616# Die if an error occurs 
     
    113113fi 
    114114 
     115# Honour M4PATH because sometimes M4 doesn't 
     116save_IFS=$IFS 
     117IFS=: 
     118tmp="$M4PATH" 
     119for x in $tmp; do 
     120  if test -n "$x"; then 
     121    aclocalflags="${aclocalflags} -I $x" 
     122  fi 
     123done 
     124IFS=$save_IFS 
     125 
    115126# Explain what we are doing from now 
    116127set -x 
Note: See TracChangeset for help on using the changeset viewer.