Browse Source

*** empty log message ***

David Rose 25 years ago
parent
commit
3502a58f57

+ 2 - 2
dtool/src/attach/ctcvs.pl

@@ -63,7 +63,7 @@ sub CTCvsLogin {
 	    # ok, the server line is in [0] and the password in [1].
 	    &CTUDebug( "server line from .cvspass is '" . $line[0] . "'\n" ) ;
 	    if ( $line[0] ne $_[0] ) {
-		local( $line ) = "cvs -d " . $_[0] . " login" ;
+		local( $line ) = "cvs -d " . $_[0] . " login >/dev/null" ;
 		&CTUDebug( "about to run '" . $line . "'\n" ) ;
 		$ret = &CTURetCode( system( $line )) ;
 	    } else {
@@ -72,7 +72,7 @@ sub CTCvsLogin {
 	    }
 	} else {
 	    &CTUDebug( $path . " file does not exist\n" ) ;
-	    local( $line ) = "cvs -d " . $_[0] . " login" ;
+	    local( $line ) = "cvs -d " . $_[0] . " login >/dev/null" ;
 	    &CTUDebug( "about to run '" . $line . "'\n" ) ;
 	    $ret = &CTURetCode( system( $line )) ;
 	}

+ 3 - 0
panda/src/putil/config_util.N

@@ -1,4 +1,7 @@
 forcetype DSearchPath
 forcetype Filename
+forcetype Notify
+forcetype NotifyCategory
+forcetype NotifySeverity
 
 

+ 0 - 7
panda/src/putil/notify_utils.N

@@ -1,7 +0,0 @@
-forcetype Notify
-forcetype NotifyCategory
-forcetype NotifySeverity
-
-ignoremember set_assert_handler
-ignoremember get_assert_handler
-ignoremember AssertHandler

+ 0 - 17
panda/src/putil/notify_utils.h

@@ -1,17 +0,0 @@
-// Filename: notify_utils.h
-// Created by:  drose (24May00)
-// 
-////////////////////////////////////////////////////////////////////
-
-#ifndef NOTIFY_UTILS_H
-#define NOTIFY_UTILS_H
-
-#include <pandabase.h>
-
-#include <notify.h>
-
-// The main purpose of this file is to provide a hook for
-// interrogating Notify.
-
-#endif
-