From: Foster B. <fos...@us...> - 2006-02-23 23:29:33
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25760/adobe/bin Modified Files: build.sh Log Message: the state of things. We've been working to isolate static_text_t (now called label_t) but it has been slow going because we're trying to wrestle with perfecting the API and what effect that has on other components that were using label_t in a way that isn't in accordance with the new API we're trying to write. As it stands static_disabled_text_m is broken on both platforms, but everything else should be working better. Index: build.sh =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/bin/build.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** build.sh 3 Feb 2006 18:33:35 -0000 1.5 --- build.sh 23 Feb 2006 23:28:54 -0000 1.6 *************** *** 21,25 **** # Assuming the client only needs to run this once, we always build bjam ! if [ -e bjam ]; then if test_path cmd ; then echo_run rm bjam.exe --- 21,25 ---- # Assuming the client only needs to run this once, we always build bjam ! if [ -e bjam ] ; then if test_path cmd ; then echo_run rm bjam.exe *************** *** 35,53 **** TEMP_HOME="/tmp/adobe-source" ! if [ "$HOME" == "" ]; then HOME=$TEMP_HOME fi ! if [ ! -d "$HOME" ]; then echo_run mkdir -p "$HOME" fi ! if [ ! -e "$HOME/user-config.jam" -o "$HOME" == "$TEMP_HOME"]; then if [ "`uname`" == "Darwin" ]; then echo "import toolset : using ; using darwin ;" > "$HOME/user-config.jam" else ! if [ -d "$PROGRAMFILES/Microsoft Visual Studio .NET 2003/" ]; then echo "import msvc-config ; import toolset : using ; using gcc ;" > "$HOME/user-config.jam" ! elif [ -d "$PROGRAMFILES/Microsoft Visual Studio 8/" ]; then echo "import msvc-config ; import toolset : using ; using gcc ;" > "$HOME/user-config.jam" else --- 35,53 ---- TEMP_HOME="/tmp/adobe-source" ! if [ "$HOME" == "" ] ; then HOME=$TEMP_HOME fi ! if [ ! -d "$HOME" ] ; then echo_run mkdir -p "$HOME" fi ! if [[ ! -e "$HOME/user-config.jam" || "$HOME" == "$TEMP_HOME" ]] ; then if [ "`uname`" == "Darwin" ]; then echo "import toolset : using ; using darwin ;" > "$HOME/user-config.jam" else ! if [ -d "$PROGRAMFILES/Microsoft Visual Studio .NET 2003/" ] ; then echo "import msvc-config ; import toolset : using ; using gcc ;" > "$HOME/user-config.jam" ! elif [ -d "$PROGRAMFILES/Microsoft Visual Studio 8/" ] ; then echo "import msvc-config ; import toolset : using ; using gcc ;" > "$HOME/user-config.jam" else *************** *** 59,63 **** MODE="debug release" ! if [ "$1" != "" ]; then MODE=$1 fi --- 59,63 ---- MODE="debug release" ! if [ "$1" != "" ] ; then MODE=$1 fi |