From 635dd591fc9aa9dfaae690d9d9f9bdc19f8bbe47 Mon Sep 17 00:00:00 2001 From: kokalj Date: Tue, 6 Apr 2004 13:29:18 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@783 c92efa57-630b-4861-b058-cf58834340f0 --- GUI/Guib/lib/Makefile | 7 +++++++ GUI/Guib/lib/tclIndex | 2 ++ GUI/Guib/lib/tclUtils.tcl | 4 ++-- GUI/PWgui/INSTALL | 3 ++- GUI/PWgui/src/Makefile | 2 ++ 5 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 GUI/Guib/lib/Makefile diff --git a/GUI/Guib/lib/Makefile b/GUI/Guib/lib/Makefile new file mode 100644 index 000000000..be70310c7 --- /dev/null +++ b/GUI/Guib/lib/Makefile @@ -0,0 +1,7 @@ +.tcl: + +tclIndex: *.tcl + ./aindex + +clean: + -rm -f *~ diff --git a/GUI/Guib/lib/tclIndex b/GUI/Guib/lib/tclIndex index e04ff84f7..a5f6010b5 100644 --- a/GUI/Guib/lib/tclIndex +++ b/GUI/Guib/lib/tclIndex @@ -47,7 +47,9 @@ set auto_index(::tku::toplevelExists) [list source [file join $dir tkUtils.tcl]] set auto_index(::tku::disableAll) [list source [file join $dir tkUtils.tcl]] set auto_index(::tku::enableAll) [list source [file join $dir tkUtils.tcl]] set auto_index(::tku::errorDialog) [list source [file join $dir tkUtils.tcl]] +set auto_index(::tku::warningDialog) [list source [file join $dir tkUtils.tcl]] set auto_index(::tku::centerWindow) [list source [file join $dir tkUtils.tcl]] set auto_index(::tku::createFont) [list source [file join $dir tkUtils.tcl]] set auto_index(::tku::setCursor) [list source [file join $dir tkUtils.tcl]] set auto_index(::tku::resetCursor) [list source [file join $dir tkUtils.tcl]] +set auto_index(::tku::watchExec) [list source [file join $dir tkUtils.tcl]] diff --git a/GUI/Guib/lib/tclUtils.tcl b/GUI/Guib/lib/tclUtils.tcl index 6aff78216..c95b67de5 100644 --- a/GUI/Guib/lib/tclUtils.tcl +++ b/GUI/Guib/lib/tclUtils.tcl @@ -19,7 +19,7 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # -# $Id: tclUtils.tcl,v 1.4 2004-03-17 10:09:33 kokalj Exp $ +# $Id: tclUtils.tcl,v 1.5 2004-04-06 13:19:57 kokalj Exp $ # #------------------------------------------------------------------------ @@ -1225,7 +1225,7 @@ proc ::tclu::tempDir {what args} { #------------------------------------------------------------------------ proc ::tclu::stringMatch {pattern string {nocase 0}} { - if { $nocase } { + if { $nocase != 0 } { return [string match -nocase $pattern $string] } else { return [string match $pattern $string] diff --git a/GUI/PWgui/INSTALL b/GUI/PWgui/INSTALL index 93e27a38b..121257eb5 100644 --- a/GUI/PWgui/INSTALL +++ b/GUI/PWgui/INSTALL @@ -38,8 +38,9 @@ Here is a list of platforms on which standalone pwgui executables are available: + Linux-i386 ++ Macintosh (for Mac OS X, PWgui requires X11) + Windows -+ Macintosh (for MACOSX, pwgui requires X11) + diff --git a/GUI/PWgui/src/Makefile b/GUI/PWgui/src/Makefile index 9230b616b..60afea032 100644 --- a/GUI/PWgui/src/Makefile +++ b/GUI/PWgui/src/Makefile @@ -1,3 +1,5 @@ + +.tcl: .itcl: tclIndex: *.itcl