]> git.saurik.com Git - wxWidgets.git/commitdiff
1. set all wxUSE_XXXs to 0 in the generated setup.h.in
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 16 Jan 2005 15:44:44 +0000 (15:44 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 16 Jan 2005 15:44:44 +0000 (15:44 +0000)
2. don't update the files unless necessary (i.e. check modification time)
3. show progress messages

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31395 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/update-setup-h

index 711c4bbaa765e68c88df86414c392f9d4b02a502..5939da9230250e7dd5c712d3d61042f4812ce8fb 100755 (executable)
@@ -17,17 +17,55 @@ error()
     echo $* 1>&2
 }
 
+msg()
+{
+    # TODO: only output from here if "quiet" option is not given
+    echo "$*"
+}
+
+# write all the common options to stdout, massaging them specially if they are
+# meant to be included in a configure input file setup.h.in (the name of the
+# file the common options are meant to be included in is the parameter)
+cat_common_options_for()
+{
+    cmd="cat include/wx/setup_inc.h"
+
+    # the file used for configure is special: we need to get rid of C++
+    # comments in it because it is included by some C code and we also have to
+    # set all options to 0 by default as they're put to 1 only by configure
+    # (and hence any #ifdefs setting default values for them become unneeded)
+    if [ $1 = "setup.h.in" ]; then
+        cmd="$cmd | sed -e '/^\/\//d' \
+                        -e 's@ *//.*\$@@' \
+                        -e 's/#define wxUSE_\(.\+\) \+1/#define wxUSE\1 0/'"
+    fi
+
+    eval $cmd
+}
+
+# update the single setup.h file passed in as the parameter if it is out of
+# date
 update_single_setup_h()
 {
+    if [ include/wx/setup_inc.h -ot $1 ]; then
+        echo "Skipping $1 which is already up to date."
+        return 0
+    fi
+
+    echo -n "Updating $1..."
+
     tmp=$i.$$.tmp
     sed -e '/^\/\* --- start common options --- \*\/$/q' $1 > $tmp &&
-    cat include/wx/setup_inc.h >> $tmp &&
+    cat_common_options_for $1 >> $tmp &&
     sed -n -e '/^\/\* --- end common options --- \*\/$/,$p' $1 >> $tmp &&
     mv $tmp $1
 
     if [ $? -ne 0 ]; then
+        msg " FAILED"
         error "$0: failed to update file $1"
         rc=2
+    else
+        msg " ok"
     fi
 }
 
@@ -39,10 +77,7 @@ fi
 
 update_single_setup_h include/wx/msw/setup0.h
 update_single_setup_h include/wx/mac/setup0.h
-
-# get rid of C++ comments in this file
 update_single_setup_h setup.h.in
-sed -i -e '/^\/\//d' -e 's@ *//.*$@@' setup.h.in
 
 exit $rc