You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(27) |
Jul
(24) |
Aug
(64) |
Sep
(15) |
Oct
(72) |
Nov
(28) |
Dec
(44) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(72) |
Feb
(58) |
Mar
(33) |
Apr
(3) |
May
(5) |
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
(24) |
Nov
(29) |
Dec
(12) |
| 2003 |
Jan
(37) |
Feb
(44) |
Mar
(13) |
Apr
(23) |
May
(9) |
Jun
(3) |
Jul
|
Aug
(7) |
Sep
(33) |
Oct
(30) |
Nov
(31) |
Dec
(11) |
| 2004 |
Jan
(4) |
Feb
(35) |
Mar
(14) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(5) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2005 |
Jan
|
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Bob T. <bt...@us...> - 2001-06-17 20:35:27
|
Update of /cvsroot/benson/benson2/src/modules/Benson
In directory usw-pr-cvs1:/tmp/cvs-serv5377
Modified Files:
Benson.pm Benson.xs
Log Message:
Major bug fixes, and some small feature enhancments, looking into the memory leak bug that crop'd up again.
Index: Benson.pm
===================================================================
RCS file: /cvsroot/benson/benson2/src/modules/Benson/Benson.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** Benson.pm 2001/04/22 03:09:48 1.4
--- Benson.pm 2001/06/17 20:35:23 1.5
***************
*** 8,11 ****
--- 8,33 ----
bootstrap Benson $VERSION;
+ sub new {
+ my $this = shift;
+ my $class = ref($this) || $this;
+ my %args = @_;
+ my $self = {
+ forwarder => $args{"forwarder"},
+ port => $args{"port"}
+ };
+ bless ($self, $class);
+ return $self;
+ }
+
+ sub forwarder {
+ my $self = shift;
+ my @params = @_;
+
+ if($#params == 0) {
+ $self->{forwarder} = $params[0];
+ }
+ return $self->{forwarder};
+ }
+
sub clear {
my ($self) = shift;
Index: Benson.xs
===================================================================
RCS file: /cvsroot/benson/benson2/src/modules/Benson/Benson.xs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** Benson.xs 2001/05/30 03:21:57 1.7
--- Benson.xs 2001/06/17 20:35:23 1.8
***************
*** 13,34 ****
- class Benson {
- public:
- Benson();
- ~Benson();
- SV* submit(...);
- SV* alert_list(...);
- SV* acknowledge(...);
- SV* update_status(...);
- SV* increment_count(...);
- // Variable Declarations
- };
-
- Benson::Benson() {
- }
-
- Benson::~Benson() {
- }
-
MODULE = Benson PACKAGE= Benson
--- 13,16 ----
***************
*** 38,49 ****
items = items; /*avoid warning*/
- Benson *
- Benson::new()
-
- void
- Benson::DESTROY()
SV*
! Benson::submit(...)
PREINIT:
int ctr;
--- 20,26 ----
items = items; /*avoid warning*/
SV*
! submit(...)
PREINIT:
int ctr;
***************
*** 55,60 ****
--- 32,40 ----
string forwarder;
CORBA::Object_var obj;
+ SV* self;
CODE:
+ self = newSVsv(ST(0));
+ forwarder = SvPVX(*hv_fetch((HV*)SvRV(self), "forwarder", 9, 0));
for(ctr=1;ctr<items;ctr=ctr+2) {
if(!strcmp(SvPVX(ST(ctr)),"agent")) {
***************
*** 91,95 ****
SV*
! Benson::ack(...)
PREINIT:
int ctr;
--- 71,75 ----
SV*
! ack(...)
PREINIT:
int ctr;
***************
*** 98,103 ****
--- 78,86 ----
string forwarder;
CORBA::Object_var obj;
+ SV* self;
CODE:
+ self = newSVsv(ST(0));
+ forwarder = SvPVX(*hv_fetch((HV*)SvRV(self), "forwarder", 9, 0));
for(ctr=1;ctr<items;ctr=ctr+2) {
if(!strcmp(SvPVX(ST(ctr)),"identity")) {
***************
*** 129,133 ****
SV*
! Benson::alert_list(...)
PREINIT:
int ctr;
--- 112,116 ----
SV*
! alert_list(...)
PREINIT:
int ctr;
***************
*** 137,142 ****
--- 120,128 ----
HV* hashedAlert;
CORBA::Object_var obj;
+ SV* self;
CODE:
+ self = newSVsv(ST(0));
+ forwarder = SvPVX(*hv_fetch((HV*)SvRV(self), "forwarder", 9, 0));
for(ctr=1;ctr<items;ctr=ctr+2) {
if(!strcmp(SvPVX(ST(ctr)),"forwarder")) {
***************
*** 192,196 ****
SV*
! Benson::update_status(...)
PREINIT:
int ctr;
--- 178,182 ----
SV*
! update_status(...)
PREINIT:
int ctr;
***************
*** 199,204 ****
--- 185,193 ----
string forwarder;
CORBA::Object_var obj;
+ SV* self;
CODE:
+ self = newSVsv(ST(0));
+ forwarder = SvPVX(*hv_fetch((HV*)SvRV(self), "forwarder", 9, 0));
for(ctr=1;ctr<items;ctr=ctr+2) {
if(!strcmp(SvPVX(ST(ctr)),"identity")) {
***************
*** 227,231 ****
SV*
! Benson::increment_count(...)
PREINIT:
int ctr;
--- 216,220 ----
SV*
! increment_count(...)
PREINIT:
int ctr;
***************
*** 233,238 ****
--- 222,230 ----
string forwarder;
CORBA::Object_var obj;
+ SV* self;
CODE:
+ self = newSVsv(ST(0));
+ forwarder = SvPVX(*hv_fetch((HV*)SvRV(self), "forwarder", 9, 0));
for(ctr=1;ctr<items;ctr=ctr+2) {
if(!strcmp(SvPVX(ST(ctr)),"identity")) {
|
|
From: Bob T. <bt...@us...> - 2001-06-06 18:08:49
|
Update of /cvsroot/benson/benson2/src/modules/contrib/rules
In directory usw-pr-cvs1:/tmp/cvs-serv11489
Modified Files:
R90autoack.pm
Log Message:
Fixed minor bug in autoack handler
Index: R90autoack.pm
===================================================================
RCS file: /cvsroot/benson/benson2/src/modules/contrib/rules/R90autoack.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** R90autoack.pm 2001/05/30 03:21:57 1.4
--- R90autoack.pm 2001/06/06 18:08:46 1.5
***************
*** 21,25 ****
my $diff = $current_time - $timestamp;
if($diff > 1800) { # If older than a half hour
! $s->log("Auto - acknowledging".alert{"identity"},INFO);
$queue->acknowledge(forwarder => $s->Forwarder,
identity => $alert{"identity"});
--- 21,25 ----
my $diff = $current_time - $timestamp;
if($diff > 1800) { # If older than a half hour
! $s->log("Auto - acknowledging".$alert{"identity"},INFO);
$queue->acknowledge(forwarder => $s->Forwarder,
identity => $alert{"identity"});
|
|
From: Bob T. <bt...@us...> - 2001-06-06 15:57:48
|
Update of /cvsroot/benson/benson2 In directory usw-pr-cvs1:/tmp/cvs-serv15667 Modified Files: config.h.in Log Message: The latest before alpha10 Index: config.h.in =================================================================== RCS file: /cvsroot/benson/benson2/config.h.in,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** config.h.in 2001/06/03 23:33:40 1.3 --- config.h.in 2001/06/06 15:57:44 1.4 *************** *** 1,3 **** ! /* config.h.in. Generated automatically from configure.in by autoheader 2.13. */ /* Define if the X Window System is missing or not being used. */ --- 1,3 ---- ! /* config.h.in. Generated automatically from configure.in by autoheader. */ /* Define if the X Window System is missing or not being used. */ |
|
From: Bob T. <bt...@us...> - 2001-06-06 15:40:55
|
Update of /cvsroot/benson/benson2/src/modules/Benson
In directory usw-pr-cvs1:/tmp/cvs-serv9530
Modified Files:
Makefile.PL
Log Message:
I accidentally broke solaris builds
Index: Makefile.PL
===================================================================
RCS file: /cvsroot/benson/benson2/src/modules/Benson/Makefile.PL,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** Makefile.PL 2001/06/05 02:46:39 1.3
--- Makefile.PL 2001/06/06 15:40:51 1.4
***************
*** 3,8 ****
#$Verbose = 1;
! my $CC="mico-c++";
! my $LD="mico-ld";
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
--- 3,8 ----
#$Verbose = 1;
! $CC = 'mico-c++';
! $LD = 'mico-ld';
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
***************
*** 13,17 ****
'AUTHOR' => 'Bob Tribit <bt...@ne...>',
'ABSTRACT' => 'Queue Interface layer for Benson server',
! 'LIBS' => [''], # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => '', # e.g., '-I/usr/include/other'
--- 13,17 ----
'AUTHOR' => 'Bob Tribit <bt...@ne...>',
'ABSTRACT' => 'Queue Interface layer for Benson server',
! 'LIBS' => ['-lmico2.3.5 -lmicocoss2.3.5 -R/usr/local/ssl/lib -R/usr/local/lib'], # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => '', # e.g., '-I/usr/include/other'
|
|
From: Bob T. <bt...@us...> - 2001-06-05 04:34:36
|
Update of /cvsroot/benson/benson2/src/modules/contrib/logger
In directory usw-pr-cvs1:/tmp/cvs-serv1035/src/modules/contrib/logger
Added Files:
L20database.pm
Log Message:
Added some database hooks, cleaned up some of the alertlist code and bensonctl so that it respects the Port config option
--- NEW FILE: L20database.pm ---
package L20database;
sub handler {
my ($self,$t) = @_;
my $s = $t->server;
if($s->DBIConnectString eq "") {
$s->trace("No databases configured.",2);
return OK;
}
return OK;
}
1;
|
|
From: Bob T. <bt...@us...> - 2001-06-05 04:24:15
|
Update of /cvsroot/benson/benson2/src/modules/Handlers/lib/Benson/Handlers In directory usw-pr-cvs1:/tmp/cvs-serv1035/src/modules/Handlers/lib/Benson/Handlers Modified Files: Logger.pm Log Message: Added some database hooks, cleaned up some of the alertlist code and bensonctl so that it respects the Port config option Index: Logger.pm =================================================================== RCS file: /cvsroot/benson/benson2/src/modules/Handlers/lib/Benson/Handlers/Logger.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Logger.pm 2001/05/11 03:37:53 1.4 --- Logger.pm 2001/06/05 01:47:56 1.5 *************** *** 28,32 **** bless $self, $pkg; $return_code = $self->handler($t); ! }; warn $s->log($@,WARNING) if $@; } } --- 28,33 ---- bless $self, $pkg; $return_code = $self->handler($t); ! }; $s->log($@,WARNING) if $@; ! $s->log($file." was invoked.", INFO); } } |
|
From: Bob T. <bt...@us...> - 2001-06-05 04:04:23
|
Update of /cvsroot/benson/benson2/src
In directory usw-pr-cvs1:/tmp/cvs-serv1035/src
Modified Files:
alertlist.cc
Log Message:
Added some database hooks, cleaned up some of the alertlist code and bensonctl so that it respects the Port config option
Index: alertlist.cc
===================================================================
RCS file: /cvsroot/benson/benson2/src/alertlist.cc,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** alertlist.cc 2001/04/08 01:41:57 1.3
--- alertlist.cc 2001/06/05 01:47:56 1.4
***************
*** 57,61 ****
if((argc - optind) == 0) {
! destination = "inet:" + destination + ":9021";
if(verbose) {
--- 57,62 ----
if((argc - optind) == 0) {
! string port = SvPVX(perl_object->get(srvref, "Port"));
! destination = "inet:" + destination + ":" + port;
if(verbose) {
|
|
From: Bob T. <bt...@us...> - 2001-06-05 04:03:11
|
Update of /cvsroot/benson/benson2/src/scripts
In directory usw-pr-cvs1:/tmp/cvs-serv1035/src/scripts
Modified Files:
benson.cfg.tmpl bensonctl.tmpl
Log Message:
Added some database hooks, cleaned up some of the alertlist code and bensonctl so that it respects the Port config option
Index: benson.cfg.tmpl
===================================================================
RCS file: /cvsroot/benson/benson2/src/scripts/benson.cfg.tmpl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** benson.cfg.tmpl 2001/05/08 03:54:33 1.5
--- benson.cfg.tmpl 2001/06/05 01:47:56 1.6
***************
*** 53,56 ****
--- 53,79 ----
TraceLevel 1
+ ####################################################
+ # Database Support #
+ ####################################################
+
+ #
+ # DBIConnectString: <string>
+ # This sets the connection information for the DBI driver
+ #
+ #DBIConnectString "dbi:Oracle:db1"
+
+ #
+ # DBIUsername: <string>
+ # This sets the username for the database account
+ #
+ #DBIUsername benson
+
+ #
+ # DBIPassword: <string>
+ # This sets the password for the username
+ #
+ #DBIPassword benson
+
+
Index: bensonctl.tmpl
===================================================================
RCS file: /cvsroot/benson/benson2/src/scripts/bensonctl.tmpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** bensonctl.tmpl 2001/05/01 03:37:01 1.3
--- bensonctl.tmpl 2001/06/05 01:47:56 1.4
***************
*** 9,14 ****
#
BENSON_HOME=prefixpath
RM=`which rm`
! ADDR="inet:`uname -n`:9021"
ORBIIOP="-ORBIIOPAddr"
BENSON="$BENSON_HOME/sbin/bensond"
--- 9,15 ----
#
BENSON_HOME=prefixpath
+ BENSON_PORT=`grep "^Port" $BENSON_HOME/etc/benson.cfg | awk '{print $2}'`
RM=`which rm`
! ADDR="inet:`uname -n`:$BENSON_PORT"
ORBIIOP="-ORBIIOPAddr"
BENSON="$BENSON_HOME/sbin/bensond"
|
|
From: Bob T. <bt...@us...> - 2001-06-05 03:31:31
|
Update of /cvsroot/benson/benson2/src/modules/Benson
In directory usw-pr-cvs1:/tmp/cvs-serv11660/src/modules/Benson
Modified Files:
Makefile.PL
Log Message:
Checking new Benson/Makefile.PL on different boxes
Index: Makefile.PL
===================================================================
RCS file: /cvsroot/benson/benson2/src/modules/Benson/Makefile.PL,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Makefile.PL 2001/04/22 03:09:48 1.2
--- Makefile.PL 2001/06/05 02:46:39 1.3
***************
*** 3,8 ****
#$Verbose = 1;
! $CC = 'mico-c++';
! $LD = 'mico-ld';
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
--- 3,8 ----
#$Verbose = 1;
! my $CC="mico-c++";
! my $LD="mico-ld";
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
***************
*** 13,17 ****
'AUTHOR' => 'Bob Tribit <bt...@ne...>',
'ABSTRACT' => 'Queue Interface layer for Benson server',
! 'LIBS' => ['-lmico2.3.5 -lmicocoss2.3.5 -R/usr/local/ssl/lib -R/usr/local/lib'], # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => '', # e.g., '-I/usr/include/other'
--- 13,17 ----
'AUTHOR' => 'Bob Tribit <bt...@ne...>',
'ABSTRACT' => 'Queue Interface layer for Benson server',
! 'LIBS' => [''], # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => '', # e.g., '-I/usr/include/other'
|
|
From: Bob T. <bt...@us...> - 2001-06-03 23:45:21
|
Update of /cvsroot/benson/benson2/src/modules/contrib In directory usw-pr-cvs1:/tmp/cvs-serv13579/src/modules/contrib Modified Files: Makefile.in Log Message: Several changes to the build environment Index: Makefile.in =================================================================== RCS file: /cvsroot/benson/benson2/src/modules/contrib/Makefile.in,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile.in 2001/05/29 05:05:15 1.4 --- Makefile.in 2001/06/03 23:33:40 1.5 *************** *** 64,77 **** CXX = @CXX@ DLLTOOL = @DLLTOOL@ HAVE_X11 = @HAVE_X11@ - LD = @LD@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ - NM = @NM@ OBJDUMP = @OBJDUMP@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ VERSION = @VERSION@ idl = @idl@ --- 64,79 ---- CXX = @CXX@ DLLTOOL = @DLLTOOL@ + ECHO = @ECHO@ + EXEEXT = @EXEEXT@ HAVE_X11 = @HAVE_X11@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ + STRIP = @STRIP@ VERSION = @VERSION@ idl = @idl@ |
|
From: Bob T. <bt...@us...> - 2001-06-03 23:42:05
|
Update of /cvsroot/benson/benson2/src/modules In directory usw-pr-cvs1:/tmp/cvs-serv13579/src/modules Modified Files: Makefile.in Log Message: Several changes to the build environment Index: Makefile.in =================================================================== RCS file: /cvsroot/benson/benson2/src/modules/Makefile.in,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile.in 2001/05/29 05:05:15 1.3 --- Makefile.in 2001/06/03 23:33:40 1.4 *************** *** 64,77 **** CXX = @CXX@ DLLTOOL = @DLLTOOL@ HAVE_X11 = @HAVE_X11@ - LD = @LD@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ - NM = @NM@ OBJDUMP = @OBJDUMP@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ VERSION = @VERSION@ idl = @idl@ --- 64,79 ---- CXX = @CXX@ DLLTOOL = @DLLTOOL@ + ECHO = @ECHO@ + EXEEXT = @EXEEXT@ HAVE_X11 = @HAVE_X11@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ + STRIP = @STRIP@ VERSION = @VERSION@ idl = @idl@ |
|
From: Bob T. <bt...@us...> - 2001-06-03 23:41:01
|
Update of /cvsroot/benson/benson2/src/perl In directory usw-pr-cvs1:/tmp/cvs-serv13579/src/perl Modified Files: Makefile.in Log Message: Several changes to the build environment Index: Makefile.in =================================================================== RCS file: /cvsroot/benson/benson2/src/perl/Makefile.in,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile.in 2001/05/29 05:05:15 1.4 --- Makefile.in 2001/06/03 23:33:40 1.5 *************** *** 64,77 **** CXX = @CXX@ DLLTOOL = @DLLTOOL@ HAVE_X11 = @HAVE_X11@ - LD = @LD@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ - NM = @NM@ OBJDUMP = @OBJDUMP@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ VERSION = @VERSION@ idl = @idl@ --- 64,79 ---- CXX = @CXX@ DLLTOOL = @DLLTOOL@ + ECHO = @ECHO@ + EXEEXT = @EXEEXT@ HAVE_X11 = @HAVE_X11@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ + STRIP = @STRIP@ VERSION = @VERSION@ idl = @idl@ *************** *** 100,104 **** X_PRE_LIBS = @X_PRE_LIBS@ libperl_a_LIBADD = ! libperl_a_OBJECTS = PerlObject.o Perl_util.o AR = ar CXXFLAGS = @CXXFLAGS@ --- 102,106 ---- X_PRE_LIBS = @X_PRE_LIBS@ libperl_a_LIBADD = ! libperl_a_OBJECTS = PerlObject.$(OBJEXT) Perl_util.$(OBJEXT) AR = ar CXXFLAGS = @CXXFLAGS@ *************** *** 120,124 **** all: all-redirect .SUFFIXES: ! .SUFFIXES: .S .c .cc .lo .o .s $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOMAKE) --gnu src/perl/Makefile --- 122,126 ---- all: all-redirect .SUFFIXES: ! .SUFFIXES: .S .c .cc .lo .o .obj .s $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOMAKE) --gnu src/perl/Makefile *************** *** 138,141 **** --- 140,148 ---- maintainer-clean-noinstLIBRARIES: + # FIXME: We should only use cygpath when building on Windows, + # and only if it is available. + .c.obj: + $(COMPILE) -c `cygpath -w $<` + .s.o: $(COMPILE) -c $< *************** *** 146,149 **** --- 153,157 ---- mostlyclean-compile: -rm -f *.o core *.core + -rm -f *.$(OBJEXT) clean-compile: *************** *** 176,179 **** --- 184,189 ---- .cc.o: $(CXXCOMPILE) -c $< + .cc.obj: + $(CXXCOMPILE) -c `cygpath -w $<` .cc.lo: $(LTCXXCOMPILE) -c $< |
|
From: Bob T. <bt...@us...> - 2001-06-03 23:38:53
|
Update of /cvsroot/benson/benson2/src/corba In directory usw-pr-cvs1:/tmp/cvs-serv13579/src/corba Modified Files: Makefile.in Log Message: Several changes to the build environment Index: Makefile.in =================================================================== RCS file: /cvsroot/benson/benson2/src/corba/Makefile.in,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile.in 2001/05/29 05:05:15 1.4 --- Makefile.in 2001/06/03 23:33:40 1.5 *************** *** 64,77 **** CXX = @CXX@ DLLTOOL = @DLLTOOL@ HAVE_X11 = @HAVE_X11@ - LD = @LD@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ - NM = @NM@ OBJDUMP = @OBJDUMP@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ VERSION = @VERSION@ idl = @idl@ --- 64,79 ---- CXX = @CXX@ DLLTOOL = @DLLTOOL@ + ECHO = @ECHO@ + EXEEXT = @EXEEXT@ HAVE_X11 = @HAVE_X11@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ + STRIP = @STRIP@ VERSION = @VERSION@ idl = @idl@ *************** *** 101,107 **** X_PRE_LIBS = @X_PRE_LIBS@ libserver_a_LIBADD = ! libserver_a_OBJECTS = Trap.o Queue_impl.o libclient_a_LIBADD = ! libclient_a_OBJECTS = Trap.o Queue_util.o AR = ar CXXFLAGS = @CXXFLAGS@ --- 103,109 ---- X_PRE_LIBS = @X_PRE_LIBS@ libserver_a_LIBADD = ! libserver_a_OBJECTS = Trap.$(OBJEXT) Queue_impl.$(OBJEXT) libclient_a_LIBADD = ! libclient_a_OBJECTS = Trap.$(OBJEXT) Queue_util.$(OBJEXT) AR = ar CXXFLAGS = @CXXFLAGS@ *************** *** 123,127 **** all: all-redirect .SUFFIXES: ! .SUFFIXES: .S .c .cc .lo .o .s $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOMAKE) --gnu src/corba/Makefile --- 125,129 ---- all: all-redirect .SUFFIXES: ! .SUFFIXES: .S .c .cc .lo .o .obj .s $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOMAKE) --gnu src/corba/Makefile *************** *** 141,144 **** --- 143,151 ---- maintainer-clean-noinstLIBRARIES: + # FIXME: We should only use cygpath when building on Windows, + # and only if it is available. + .c.obj: + $(COMPILE) -c `cygpath -w $<` + .s.o: $(COMPILE) -c $< *************** *** 149,152 **** --- 156,160 ---- mostlyclean-compile: -rm -f *.o core *.core + -rm -f *.$(OBJEXT) clean-compile: *************** *** 184,187 **** --- 192,197 ---- .cc.o: $(CXXCOMPILE) -c $< + .cc.obj: + $(CXXCOMPILE) -c `cygpath -w $<` .cc.lo: $(LTCXXCOMPILE) -c $< |
|
From: Bob T. <bt...@us...> - 2001-06-03 23:37:00
|
Update of /cvsroot/benson/benson2/src In directory usw-pr-cvs1:/tmp/cvs-serv13579/src Modified Files: Makefile.in Log Message: Several changes to the build environment Index: Makefile.in =================================================================== RCS file: /cvsroot/benson/benson2/src/Makefile.in,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile.in 2001/05/29 05:05:15 1.4 --- Makefile.in 2001/06/03 23:33:40 1.5 *************** *** 64,77 **** CXX = @CXX@ DLLTOOL = @DLLTOOL@ HAVE_X11 = @HAVE_X11@ - LD = @LD@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ - NM = @NM@ OBJDUMP = @OBJDUMP@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ VERSION = @VERSION@ idl = @idl@ --- 64,79 ---- CXX = @CXX@ DLLTOOL = @DLLTOOL@ + ECHO = @ECHO@ + EXEEXT = @EXEEXT@ HAVE_X11 = @HAVE_X11@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ + STRIP = @STRIP@ VERSION = @VERSION@ idl = @idl@ *************** *** 99,102 **** --- 101,106 ---- CONFIG_HEADER = ../config.h CONFIG_CLEAN_FILES = + bin_PROGRAMS = btrap$(EXEEXT) alertlist$(EXEEXT) ack$(EXEEXT) + sbin_PROGRAMS = bensond$(EXEEXT) PROGRAMS = $(bin_PROGRAMS) $(sbin_PROGRAMS) *************** *** 108,121 **** X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ ! btrap_OBJECTS = trap.o btrap_DEPENDENCIES = corba/libclient.a perl/libperl.a btrap_LDFLAGS = ! alertlist_OBJECTS = alertlist.o alertlist_DEPENDENCIES = corba/libclient.a perl/libperl.a alertlist_LDFLAGS = ! ack_OBJECTS = ack.o ack_DEPENDENCIES = corba/libclient.a perl/libperl.a ack_LDFLAGS = ! bensond_OBJECTS = bensond.o bensond_DEPENDENCIES = corba/libserver.a perl/libperl.a bensond_LDFLAGS = --- 112,125 ---- X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ ! btrap_OBJECTS = trap.$(OBJEXT) btrap_DEPENDENCIES = corba/libclient.a perl/libperl.a btrap_LDFLAGS = ! alertlist_OBJECTS = alertlist.$(OBJEXT) alertlist_DEPENDENCIES = corba/libclient.a perl/libperl.a alertlist_LDFLAGS = ! ack_OBJECTS = ack.$(OBJEXT) ack_DEPENDENCIES = corba/libclient.a perl/libperl.a ack_LDFLAGS = ! bensond_OBJECTS = bensond.$(OBJEXT) bensond_DEPENDENCIES = corba/libserver.a perl/libperl.a bensond_LDFLAGS = *************** *** 138,142 **** all: all-redirect .SUFFIXES: ! .SUFFIXES: .S .c .cc .lo .o .s $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile --- 142,146 ---- all: all-redirect .SUFFIXES: ! .SUFFIXES: .S .c .cc .lo .o .obj .s $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile *************** *** 197,200 **** --- 201,209 ---- done + # FIXME: We should only use cygpath when building on Windows, + # and only if it is available. + .c.obj: + $(COMPILE) -c `cygpath -w $<` + .s.o: $(COMPILE) -c $< *************** *** 205,208 **** --- 214,218 ---- mostlyclean-compile: -rm -f *.o core *.core + -rm -f *.$(OBJEXT) clean-compile: *************** *** 229,249 **** maintainer-clean-libtool: ! btrap: $(btrap_OBJECTS) $(btrap_DEPENDENCIES) ! @rm -f btrap $(CXXLINK) $(btrap_LDFLAGS) $(btrap_OBJECTS) $(btrap_LDADD) $(LIBS) ! alertlist: $(alertlist_OBJECTS) $(alertlist_DEPENDENCIES) ! @rm -f alertlist $(CXXLINK) $(alertlist_LDFLAGS) $(alertlist_OBJECTS) $(alertlist_LDADD) $(LIBS) ! ack: $(ack_OBJECTS) $(ack_DEPENDENCIES) ! @rm -f ack $(CXXLINK) $(ack_LDFLAGS) $(ack_OBJECTS) $(ack_LDADD) $(LIBS) ! bensond: $(bensond_OBJECTS) $(bensond_DEPENDENCIES) ! @rm -f bensond $(CXXLINK) $(bensond_LDFLAGS) $(bensond_OBJECTS) $(bensond_LDADD) $(LIBS) .cc.o: $(CXXCOMPILE) -c $< .cc.lo: $(LTCXXCOMPILE) -c $< --- 239,261 ---- maintainer-clean-libtool: ! btrap$(EXEEXT): $(btrap_OBJECTS) $(btrap_DEPENDENCIES) ! @rm -f btrap$(EXEEXT) $(CXXLINK) $(btrap_LDFLAGS) $(btrap_OBJECTS) $(btrap_LDADD) $(LIBS) ! alertlist$(EXEEXT): $(alertlist_OBJECTS) $(alertlist_DEPENDENCIES) ! @rm -f alertlist$(EXEEXT) $(CXXLINK) $(alertlist_LDFLAGS) $(alertlist_OBJECTS) $(alertlist_LDADD) $(LIBS) ! ack$(EXEEXT): $(ack_OBJECTS) $(ack_DEPENDENCIES) ! @rm -f ack$(EXEEXT) $(CXXLINK) $(ack_LDFLAGS) $(ack_OBJECTS) $(ack_LDADD) $(LIBS) ! bensond$(EXEEXT): $(bensond_OBJECTS) $(bensond_DEPENDENCIES) ! @rm -f bensond$(EXEEXT) $(CXXLINK) $(bensond_LDFLAGS) $(bensond_OBJECTS) $(bensond_LDADD) $(LIBS) .cc.o: $(CXXCOMPILE) -c $< + .cc.obj: + $(CXXCOMPILE) -c `cygpath -w $<` .cc.lo: $(LTCXXCOMPILE) -c $< |
|
From: Bob T. <bt...@us...> - 2001-06-03 23:35:09
|
Update of /cvsroot/benson/benson2/src/scripts In directory usw-pr-cvs1:/tmp/cvs-serv13579/src/scripts Modified Files: Makefile.in Log Message: Several changes to the build environment Index: Makefile.in =================================================================== RCS file: /cvsroot/benson/benson2/src/scripts/Makefile.in,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Makefile.in 2001/05/29 05:05:15 1.5 --- Makefile.in 2001/06/03 23:33:40 1.6 *************** *** 64,77 **** CXX = @CXX@ DLLTOOL = @DLLTOOL@ HAVE_X11 = @HAVE_X11@ - LD = @LD@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ - NM = @NM@ OBJDUMP = @OBJDUMP@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ VERSION = @VERSION@ idl = @idl@ --- 64,79 ---- CXX = @CXX@ DLLTOOL = @DLLTOOL@ + ECHO = @ECHO@ + EXEEXT = @EXEEXT@ HAVE_X11 = @HAVE_X11@ LIBTOOL = @LIBTOOL@ LIBTOOL_VERSION = @LIBTOOL_VERSION@ LN_S = @LN_S@ MAKEINFO = @MAKEINFO@ OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ + STRIP = @STRIP@ VERSION = @VERSION@ idl = @idl@ |
|
From: Bob T. <bt...@us...> - 2001-06-03 23:35:09
|
Update of /cvsroot/benson/benson2
In directory usw-pr-cvs1:/tmp/cvs-serv13579
Modified Files:
Makefile.in aclocal.m4 config.guess config.h.in config.sub
configure configure.in ltmain.sh
Log Message:
Several changes to the build environment
Index: Makefile.in
===================================================================
RCS file: /cvsroot/benson/benson2/Makefile.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** Makefile.in 2001/05/29 05:05:15 1.3
--- Makefile.in 2001/06/03 23:33:40 1.4
***************
*** 64,77 ****
CXX = @CXX@
DLLTOOL = @DLLTOOL@
HAVE_X11 = @HAVE_X11@
- LD = @LD@
LIBTOOL = @LIBTOOL@
LIBTOOL_VERSION = @LIBTOOL_VERSION@
LN_S = @LN_S@
MAKEINFO = @MAKEINFO@
- NM = @NM@
OBJDUMP = @OBJDUMP@
PACKAGE = @PACKAGE@
RANLIB = @RANLIB@
VERSION = @VERSION@
idl = @idl@
--- 64,79 ----
CXX = @CXX@
DLLTOOL = @DLLTOOL@
+ ECHO = @ECHO@
+ EXEEXT = @EXEEXT@
HAVE_X11 = @HAVE_X11@
LIBTOOL = @LIBTOOL@
LIBTOOL_VERSION = @LIBTOOL_VERSION@
LN_S = @LN_S@
MAKEINFO = @MAKEINFO@
OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
PACKAGE = @PACKAGE@
RANLIB = @RANLIB@
+ STRIP = @STRIP@
VERSION = @VERSION@
idl = @idl@
Index: aclocal.m4
===================================================================
RCS file: /cvsroot/benson/benson2/aclocal.m4,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** aclocal.m4 2001/05/29 05:05:15 1.5
--- aclocal.m4 2001/06/03 23:33:40 1.6
***************
*** 172,175 ****
--- 172,183 ----
fi
+ AC_MSG_CHECKING(for ssliiop support)
+ if test "x$ssliiop" = "x" ; then
+ AC_MSG_RESULT(not found)
+ else
+ AC_MSG_RESULT(found)
+ LDFLAGS="-L$ssldir/lib $LDFLAGS"
+ fi
[...3648 lines suppressed...]
! AC_DEFUN(AM_PROG_NM, [indir([AC_PROG_NM])])dnl
! dnl This is just to silence aclocal about the macro not being used
! ifelse([AC_DISABLE_FAST_INSTALL])dnl
--- 3935,3948 ----
])
! # old names
! AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL])
! AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
! AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
! AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
! AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
! AC_DEFUN([AM_PROG_LD], [AC_PROG_LD])
! AC_DEFUN([AM_PROG_NM], [AC_PROG_NM])
! # This is just to silence aclocal about the macro not being used
! ifelse([AC_DISABLE_FAST_INSTALL])
Index: config.guess
===================================================================
RCS file: /cvsroot/benson/benson2/config.guess,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** config.guess 2001/03/23 03:13:24 1.1.1.1
--- config.guess 2001/06/03 23:33:40 1.2
***************
*** 1,7 ****
#! /bin/sh
# Attempt to guess a canonical system name.
! # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
# Free Software Foundation, Inc.
! #
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
--- 1,9 ----
#! /bin/sh
# Attempt to guess a canonical system name.
[...1094 lines suppressed...]
+ /bin/universe = `(/bin/universe) 2>/dev/null`
+ /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null`
+ /bin/arch = `(/bin/arch) 2>/dev/null`
+ /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null`
+ /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
+
+ UNAME_MACHINE = ${UNAME_MACHINE}
+ UNAME_RELEASE = ${UNAME_RELEASE}
+ UNAME_SYSTEM = ${UNAME_SYSTEM}
+ UNAME_VERSION = ${UNAME_VERSION}
+ EOF
+
exit 1
+
+ # Local variables:
+ # eval: (add-hook 'write-file-hooks 'time-stamp)
+ # time-stamp-start: "timestamp='"
+ # time-stamp-format: "%:y-%02m-%02d"
+ # time-stamp-end: "'"
+ # End:
Index: config.h.in
===================================================================
RCS file: /cvsroot/benson/benson2/config.h.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** config.h.in 2001/05/29 05:05:15 1.2
--- config.h.in 2001/06/03 23:33:40 1.3
***************
*** 10,13 ****
--- 10,19 ----
#undef HAVE_PERL_EVAL_PV
+ /* Define if you have the <dlfcn.h> header file. */
+ #undef HAVE_DLFCN_H
+
+ /* Define if you have the compat library (-lcompat). */
+ #undef HAVE_LIBCOMPAT
+
/* Define if you have the dl library (-ldl). */
#undef HAVE_LIBDL
Index: config.sub
===================================================================
RCS file: /cvsroot/benson/benson2/config.sub,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** config.sub 2001/03/23 03:13:24 1.1.1.1
--- config.sub 2001/06/03 23:33:40 1.2
***************
*** 1,7 ****
#! /bin/sh
! # Configuration validation subroutine script, version 1.1.
! # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
# Free Software Foundation, Inc.
! #
# This file is (in principle) common to ALL GNU software.
# The presence of a machine in this file suggests that SOME GNU software
--- 1,9 ----
#! /bin/sh
! # Configuration validation subroutine script.
! # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
# Free Software Foundation, Inc.
!
! timestamp='2001-04-20'
!
# This file is (in principle) common to ALL GNU software.
# The presence of a machine in this file suggests that SOME GNU software
***************
*** 28,32 ****
# the same distribution terms that you use for the rest of that program.
- # Written by Per Bothner <bo...@cy...>.
# Please send patches to <con...@gn...>.
#
--- 30,33 ----
***************
*** 51,71 ****
# It is wrong to echo any other type of specification.
! if [ x$1 = x ]
! then
! echo Configuration name missing. 1>&2
! echo "Usage: $0 CPU-MFR-OPSYS" 1>&2
! echo "or $0 ALIAS" 1>&2
! echo where ALIAS is a recognized configuration type. 1>&2
! exit 1
! fi
! # First pass through any local machine types.
! case $1 in
! *local*)
! echo $1
! exit 0
! ;;
! *)
! ;;
esac
--- 52,115 ----
# It is wrong to echo any other type of specification.
! me=`echo "$0" | sed -e 's,.*/,,'`
! usage="\
! Usage: $0 [OPTION] CPU-MFR-OPSYS
! $0 [OPTION] ALIAS
!
! Canonicalize a configuration name.
!
! Operation modes:
! -h, --help print this help, then exit
! -t, --time-stamp print date of last modification, then exit
! -v, --version print version number, then exit
!
! Report bugs and patches to <con...@gn...>."
!
! version="\
! GNU config.sub ($timestamp)
!
! Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
! Free Software Foundation, Inc.
!
! This is free software; see the source for copying conditions. There is NO
! warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
!
! help="
! Try \`$me --help' for more information."
!
! # Parse command line
! while test $# -gt 0 ; do
! case $1 in
! --time-stamp | --time* | -t )
! echo "$timestamp" ; exit 0 ;;
! --version | -v )
! echo "$version" ; exit 0 ;;
! --help | --h* | -h )
! echo "$usage"; exit 0 ;;
! -- ) # Stop option processing
! shift; break ;;
! - ) # Use stdin as input.
! break ;;
! -* )
! echo "$me: invalid option $1$help"
! exit 1 ;;
!
! *local*)
! # First pass through any local machine types.
! echo $1
! exit 0;;
!
! * )
! break ;;
! esac
! done
!
! case $# in
! 0) echo "$me: missing argument$help" >&2
! exit 1;;
! 1) ;;
! *) echo "$me: too many arguments$help" >&2
! exit 1;;
esac
***************
*** 74,78 ****
maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
case $maybe_os in
! nto-qnx* | linux-gnu*)
os=-$maybe_os
basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
--- 118,122 ----
maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
case $maybe_os in
! nto-qnx* | linux-gnu* | storm-chaos* | os2-emx*)
os=-$maybe_os
basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
***************
*** 100,104 ****
-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
! -apple)
os=
basic_machine=$1
--- 144,148 ----
-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
! -apple | -axis)
os=
basic_machine=$1
***************
*** 172,193 ****
# Recognize the basic CPU types without company name.
# Some are omitted here because they have special meanings below.
! tahoe | i860 | ia64 | m32r | m68k | m68000 | m88k | ns32k | arc | arm \
! | arme[lb] | pyramid | mn10200 | mn10300 | tron | a29k \
| 580 | i960 | h8300 \
! | x86 | ppcbe | mipsbe | mipsle | shbe | shle | armbe | armle \
| hppa | hppa1.0 | hppa1.1 | hppa2.0 | hppa2.0w | hppa2.0n \
| hppa64 \
| alpha | alphaev[4-8] | alphaev56 | alphapca5[67] \
| alphaev6[78] \
! | we32k | ns16k | clipper | i370 | sh | powerpc | powerpcle \
! | 1750a | dsp16xx | pdp11 | mips16 | mips64 | mipsel | mips64el \
| mips64orion | mips64orionel | mipstx39 | mipstx39el \
| mips64vr4300 | mips64vr4300el | mips64vr4100 | mips64vr4100el \
! | mips64vr5000 | miprs64vr5000el | mcore \
! | sparc | sparclet | sparclite | sparc64 | sparcv9 | v850 | c4x \
! | thumb | d10v | fr30 | avr)
basic_machine=$basic_machine-unknown
;;
! m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | z8k | v70 | h8500 | w65 | pj | pjl)
;;
--- 216,247 ----
# Recognize the basic CPU types without company name.
# Some are omitted here because they have special meanings below.
! tahoe | i860 | ia64 | m32r | m68k | m68000 | m88k | ns32k | arc \
! | arm | arme[lb] | arm[bl]e | armv[2345] | armv[345][lb] | strongarm | xscale \
! | pyramid | mn10200 | mn10300 | tron | a29k \
| 580 | i960 | h8300 \
! | x86 | ppcbe | mipsbe | mipsle | shbe | shle \
| hppa | hppa1.0 | hppa1.1 | hppa2.0 | hppa2.0w | hppa2.0n \
| hppa64 \
| alpha | alphaev[4-8] | alphaev56 | alphapca5[67] \
| alphaev6[78] \
! | we32k | ns16k | clipper | i370 | sh | sh[34] \
! | powerpc | powerpcle \
! | 1750a | dsp16xx | pdp10 | pdp11 \
! | mips16 | mips64 | mipsel | mips64el \
| mips64orion | mips64orionel | mipstx39 | mipstx39el \
| mips64vr4300 | mips64vr4300el | mips64vr4100 | mips64vr4100el \
! | mips64vr5000 | miprs64vr5000el | mcore | s390 | s390x \
! | sparc | sparclet | sparclite | sparc64 | sparcv9 | sparcv9b \
! | v850 | c4x \
! | thumb | d10v | d30v | fr30 | avr | openrisc | tic80 \
! | pj | pjl | h8500)
basic_machine=$basic_machine-unknown
;;
! m6811 | m68hc11 | m6812 | m68hc12)
! # Motorola 68HC11/12.
! basic_machine=$basic_machine-unknown
! os=-none
! ;;
! m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | z8k | v70 | w65)
;;
***************
*** 195,199 ****
# because (1) that's what they normally are, and
# (2) the word "unknown" tends to confuse beginning users.
! i[34567]86)
basic_machine=$basic_machine-pc
;;
--- 249,253 ----
# because (1) that's what they normally are, and
# (2) the word "unknown" tends to confuse beginning users.
! i*86 | x86_64)
basic_machine=$basic_machine-pc
;;
***************
*** 205,214 ****
# Recognize the basic CPU types with company name.
# FIXME: clean up the formatting here.
! vax-* | tahoe-* | i[34567]86-* | i860-* | ia64-* | m32r-* | m68k-* | m68000-* \
! | m88k-* | sparc-* | ns32k-* | fx80-* | arc-* | arm-* | c[123]* \
| mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \
| power-* | none-* | 580-* | cray2-* | h8300-* | h8500-* | i960-* \
| xmp-* | ymp-* \
! | x86-* | ppcbe-* | mipsbe-* | mipsle-* | shbe-* | shle-* | armbe-* | armle-* \
| hppa-* | hppa1.0-* | hppa1.1-* | hppa2.0-* | hppa2.0w-* \
| hppa2.0n-* | hppa64-* \
--- 259,269 ----
# Recognize the basic CPU types with company name.
# FIXME: clean up the formatting here.
! vax-* | tahoe-* | i*86-* | i860-* | ia64-* | m32r-* | m68k-* | m68000-* \
! | m88k-* | sparc-* | ns32k-* | fx80-* | arc-* | c[123]* \
! | arm-* | armbe-* | armle-* | armv*-* | strongarm-* | xscale-* \
| mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \
| power-* | none-* | 580-* | cray2-* | h8300-* | h8500-* | i960-* \
| xmp-* | ymp-* \
! | x86-* | ppcbe-* | mipsbe-* | mipsle-* | shbe-* | shle-* \
| hppa-* | hppa1.0-* | hppa1.1-* | hppa2.0-* | hppa2.0w-* \
| hppa2.0n-* | hppa64-* \
***************
*** 217,229 ****
| we32k-* | cydra-* | ns16k-* | pn-* | np1-* | xps100-* \
| clipper-* | orion-* \
! | sparclite-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \
! | sparc64-* | sparcv9-* | sparc86x-* | mips16-* | mips64-* | mipsel-* \
| mips64el-* | mips64orion-* | mips64orionel-* \
| mips64vr4100-* | mips64vr4100el-* | mips64vr4300-* | mips64vr4300el-* \
| mipstx39-* | mipstx39el-* | mcore-* \
! | f301-* | armv*-* | s390-* | sv1-* | t3e-* \
| m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \
! | thumb-* | v850-* | d30v-* | tic30-* | c30-* | fr30-* \
! | bs2000-*)
;;
# Recognize the various machine names and aliases which stand
--- 272,286 ----
| we32k-* | cydra-* | ns16k-* | pn-* | np1-* | xps100-* \
| clipper-* | orion-* \
! | sparclite-* | pdp10-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \
! | sparc64-* | sparcv9-* | sparcv9b-* | sparc86x-* \
! | mips16-* | mips64-* | mipsel-* \
| mips64el-* | mips64orion-* | mips64orionel-* \
| mips64vr4100-* | mips64vr4100el-* | mips64vr4300-* | mips64vr4300el-* \
| mipstx39-* | mipstx39el-* | mcore-* \
! | f30[01]-* | f700-* | s390-* | s390x-* | sv1-* | t3e-* \
! | [cjt]90-* \
| m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \
! | thumb-* | v850-* | d30v-* | tic30-* | tic80-* | c30-* | fr30-* \
! | bs2000-* | tic54x-* | c54x-* | x86_64-* | pj-* | pjl-*)
;;
# Recognize the various machine names and aliases which stand
***************
*** 262,273 ****
;;
amiga | amiga-*)
! basic_machine=m68k-cbm
;;
amigaos | amigados)
! basic_machine=m68k-cbm
os=-amigaos
;;
amigaunix | amix)
! basic_machine=m68k-cbm
os=-sysv4
;;
--- 319,330 ----
;;
amiga | amiga-*)
! basic_machine=m68k-unknown
;;
amigaos | amigados)
! basic_machine=m68k-unknown
os=-amigaos
;;
amigaunix | amix)
! basic_machine=m68k-unknown
os=-sysv4
;;
***************
*** 316,321 ****
os=-unicos
;;
! [ctj]90-cray)
! basic_machine=c90-cray
os=-unicos
;;
--- 373,378 ----
os=-unicos
;;
! [cjt]90)
! basic_machine=${basic_machine}-cray
os=-unicos
;;
***************
*** 323,326 ****
--- 380,386 ----
basic_machine=m68k-crds
;;
+ cris | cris-* | etrax*)
+ basic_machine=cris-axis
+ ;;
da30 | da30-*)
basic_machine=m68k-da30
***************
*** 370,373 ****
--- 430,437 ----
os=-sysv
;;
+ go32)
+ basic_machine=i386-pc
+ os=-go32
+ ;;
h3050r* | hiux*)
basic_machine=hppa1.1-hitachi
***************
*** 445,461 ****
;;
# I'm not sure what "Sysv32" means. Should this be sysv3.2?
! i[34567]86v32)
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
os=-sysv32
;;
! i[34567]86v4*)
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
os=-sysv4
;;
! i[34567]86v)
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
os=-sysv
;;
! i[34567]86sol2)
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
os=-solaris2
--- 509,525 ----
;;
# I'm not sure what "Sysv32" means. Should this be sysv3.2?
! i*86v32)
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
os=-sysv32
;;
! i*86v4*)
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
os=-sysv4
;;
! i*86v)
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
os=-sysv
;;
! i*86sol2)
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
os=-solaris2
***************
*** 469,480 ****
os=-vsta
;;
- i386-go32 | go32)
- basic_machine=i386-unknown
- os=-go32
- ;;
- i386-mingw32 | mingw32)
- basic_machine=i386-unknown
- os=-mingw32
- ;;
iris | iris4d)
basic_machine=mips-sgi
--- 533,536 ----
***************
*** 502,505 ****
--- 558,565 ----
os=-sysv
;;
+ mingw32)
+ basic_machine=i386-pc
+ os=-mingw32
+ ;;
miniframe)
basic_machine=m68000-convergent
***************
*** 532,536 ****
;;
msdos)
! basic_machine=i386-unknown
os=-msdos
;;
--- 592,596 ----
;;
msdos)
! basic_machine=i386-pc
os=-msdos
;;
***************
*** 596,599 ****
--- 656,663 ----
os=-mon960
;;
+ nonstopux)
+ basic_machine=mips-compaq
+ os=-nonstopux
+ ;;
np1)
basic_machine=np1-gould
***************
*** 631,656 ****
basic_machine=ns32k-pc532
;;
! pentium | p5 | k5 | k6 | nexen)
basic_machine=i586-pc
;;
! pentiumpro | p6 | 6x86)
basic_machine=i686-pc
;;
pentiumii | pentium2)
! basic_machine=i786-pc
;;
! pentium-* | p5-* | k5-* | k6-* | nexen-*)
basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
;;
! pentiumpro-* | p6-* | 6x86-*)
basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
;;
pentiumii-* | pentium2-*)
! basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
;;
pn)
basic_machine=pn-gould
;;
! power) basic_machine=rs6000-ibm
;;
ppc) basic_machine=powerpc-unknown
--- 695,720 ----
basic_machine=ns32k-pc532
;;
! pentium | p5 | k5 | k6 | nexgen)
basic_machine=i586-pc
;;
! pentiumpro | p6 | 6x86 | athlon)
basic_machine=i686-pc
;;
pentiumii | pentium2)
! basic_machine=i686-pc
;;
! pentium-* | p5-* | k5-* | k6-* | nexgen-*)
basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
;;
! pentiumpro-* | p6-* | 6x86-* | athlon-*)
basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
;;
pentiumii-* | pentium2-*)
! basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
;;
pn)
basic_machine=pn-gould
;;
! power) basic_machine=power-ibm
;;
ppc) basic_machine=powerpc-unknown
***************
*** 667,670 ****
--- 731,738 ----
basic_machine=i386-ibm
;;
+ pw32)
+ basic_machine=i586-unknown
+ os=-pw32
+ ;;
rom68k)
basic_machine=m68k-rom68k
***************
*** 758,761 ****
--- 826,833 ----
os=-unicos
;;
+ tic54x | c54x*)
+ basic_machine=tic54x-unknown
+ os=-coff
+ ;;
tx39)
basic_machine=mipstx39-unknown
***************
*** 853,856 ****
--- 925,932 ----
basic_machine=vax-dec
;;
+ pdp10)
+ # there are many clones, so DEC is not a safe bet
+ basic_machine=pdp10-unknown
+ ;;
pdp11)
basic_machine=pdp11-dec
***************
*** 859,863 ****
basic_machine=we32k-att
;;
! sparc | sparcv9)
basic_machine=sparc-sun
;;
--- 935,942 ----
basic_machine=we32k-att
;;
! sh3 | sh4)
! basic_machine=sh-unknown
! ;;
! sparc | sparcv9 | sparcv9b)
basic_machine=sparc-sun
;;
***************
*** 881,884 ****
--- 960,966 ----
os=-coff
;;
+ *-unknown)
+ # Make sure to match an already-canonicalized machine name.
+ ;;
*)
echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
***************
*** 940,949 ****
| -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \
| -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \
! | -openstep* | -oskit*)
# Remember, each alternative MUST END IN *, to match a version number.
;;
-qnx*)
case $basic_machine in
! x86-* | i[34567]86-*)
;;
*)
--- 1022,1032 ----
| -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \
| -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \
! | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
! | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* | -os2*)
# Remember, each alternative MUST END IN *, to match a version number.
;;
-qnx*)
case $basic_machine in
! x86-* | i*86-*)
;;
*)
***************
*** 1001,1005 ****
os=-nextstep2
;;
! -nsk)
os=-nsk
;;
--- 1084,1088 ----
os=-nextstep2
;;
! -nsk*)
os=-nsk
;;
***************
*** 1038,1042 ****
os=-xenix
;;
! -*mint | -*MiNT)
os=-mint
;;
--- 1121,1125 ----
os=-xenix
;;
! -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
os=-mint
;;
***************
*** 1072,1075 ****
--- 1155,1161 ----
os=-aout
;;
+ pdp10-*)
+ os=-tops20
+ ;;
pdp11-*)
os=-none
***************
*** 1180,1184 ****
os=-rtu
;;
! f301-fujitsu)
os=-uxpv
;;
--- 1266,1270 ----
os=-rtu
;;
! f30[01]-fujitsu | f700-fujitsu)
os=-uxpv
;;
***************
*** 1258,1262 ****
vendor=apple
;;
! -*mint | -*MiNT)
vendor=atari
;;
--- 1344,1348 ----
vendor=apple
;;
! -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
vendor=atari
;;
***************
*** 1267,1268 ****
--- 1353,1362 ----
echo $basic_machine$os
+ exit 0
+
+ # Local variables:
+ # eval: (add-hook 'write-file-hooks 'time-stamp)
+ # time-stamp-start: "timestamp='"
+ # time-stamp-format: "%:y-%02m-%02d"
+ # time-stamp-end: "'"
+ # End:
Index: configure
===================================================================
RCS file: /cvsroot/benson/benson2/configure,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** configure 2001/05/29 05:05:15 1.6
--- configure 2001/06/03 23:33:40 1.7
***************
*** 20,37 ****
ac_help="$ac_help
--with-gnu-ld assume the C compiler uses GNU ld [default=no]"
ac_help="$ac_help
--disable-libtool-lock avoid locking (might break parallel builds)"
ac_help="$ac_help
--with-x use the X Window System"
ac_help="$ac_help
! --with-mico=dir Find MICO installation below dir"
ac_help="$ac_help
! --with-omniorb=dir Find omniORB installation below dir"
[...6020 lines suppressed...]
s%@LN_S@%$LN_S%g
s%@LIBTOOL@%$LIBTOOL%g
s%@LIBTOOL_VERSION@%$LIBTOOL_VERSION%g
- s%@CPP@%$CPP%g
s%@X_CFLAGS@%$X_CFLAGS%g
s%@X_PRE_LIBS@%$X_PRE_LIBS%g
--- 7409,7421 ----
s%@build_vendor@%$build_vendor%g
s%@build_os@%$build_os%g
s%@LN_S@%$LN_S%g
+ s%@OBJEXT@%$OBJEXT%g
+ s%@EXEEXT@%$EXEEXT%g
+ s%@ECHO@%$ECHO%g
+ s%@RANLIB@%$RANLIB%g
+ s%@STRIP@%$STRIP%g
+ s%@CPP@%$CPP%g
s%@LIBTOOL@%$LIBTOOL%g
s%@LIBTOOL_VERSION@%$LIBTOOL_VERSION%g
s%@X_CFLAGS@%$X_CFLAGS%g
s%@X_PRE_LIBS@%$X_PRE_LIBS%g
Index: configure.in
===================================================================
RCS file: /cvsroot/benson/benson2/configure.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** configure.in 2001/06/03 22:40:45 1.5
--- configure.in 2001/06/03 23:33:40 1.6
***************
*** 59,92 ****
dnl *********************************************************************
! if test "$perl" = yes; then
! AC_PATH_PROG(perlpath, perl)
! AC_MSG_CHECKING(for Perl compile flags)
! PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null`
! if test "_$PERL_CFLAGS" = _ ; then
! AC_MSG_RESULT([not found, building without perl.])
! perl=no
! exit
! else
! PERL_LDFLAGS=`$perlpath -MExtUtils::Embed -e ldopts |$sedpath 's/-lgdbm //'`
! PERL_LDFLAGS=`echo $PERL_LDFLAGS |$sedpath 's/-ldb //'`
! PERL_LDFLAGS=`echo $PERL_LDFLAGS |$sedpath 's/-lndbm //'`
! if test "$system" = "Linux"; then
! PERL_LDFLAGS=`echo $PERL_LDFLAGS |$sedpath 's/-lnsl //'`
! PERL_LDFLAGS=`echo $PERL_LDFLAGS |$sedpath 's/-lposix //'`
! fi
! PERL_LDFLAGS=`echo $PERL_LDFLAGS |$sedpath 's/-lc //'`
! AC_MSG_RESULT(ok)
! CXXFLAGS="$CXXFLAGS $PERL_CFLAGS"
! LIBS=`echo "$LIBS $PERL_LDFLAGS" | $sedpath 's/ \+/ /g'`
! LIBS=`echo "$LIBS" | tr ' ' '\n' | sort | uniq | tr '\n' ' '`
! AC_DEFINE(USE_PERL)
! AC_CHECK_FUNCS(perl_eval_pv)
! (cd src/modules/Handlers;perl Makefile.PL)
! (cd src/modules/Server;perl Makefile.PL)
! (cd src/modules/Benson;perl Makefile.PL)
! fi
fi
! echo $LIBS
AC_OUTPUT(Makefile src/perl/Makefile src/corba/Makefile \
--- 59,94 ----
dnl *********************************************************************
! AC_PATH_PROG(perlpath, perl)
! AC_MSG_CHECKING(for Perl compile flags)
! PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null`
! if test "_$PERL_CFLAGS" = _ ; then
! AC_MSG_RESULT([not found, building without perl.])
! perl=no
! exit
! else
! PERL_LDFLAGS=`$perlpath -MExtUtils::Embed -e ldopts |$sedpath 's/-lgdbm //'`
! PERL_LDFLAGS=`echo $PERL_LDFLAGS |$sedpath 's/-ldb //'`
! PERL_LDFLAGS=`echo $PERL_LDFLAGS |$sedpath 's/-lndbm //'`
! if test "$system" = "Linux"; then
! PERL_LDFLAGS=`echo $PERL_LDFLAGS |$sedpath 's/-lnsl //'`
! PERL_LDFLAGS=`echo $PERL_LDFLAGS |$sedpath 's/-lposix //'`
! fi
! PERL_LDFLAGS=`echo $PERL_LDFLAGS |$sedpath 's/-lc //'`
! AC_MSG_RESULT(ok)
! CXXFLAGS="$CXXFLAGS $PERL_CFLAGS"
! LIBS=`echo "$LIBS $PERL_LDFLAGS" | $sedpath 's/ \+/ /g'`
! LIBS=`echo "$LIBS" | tr ' ' '\n' | sort | uniq | tr '\n' ' '`
! AC_DEFINE(USE_PERL)
! AC_CHECK_FUNCS(perl_eval_pv)
! (cd src/modules/Handlers;perl Makefile.PL)
! (cd src/modules/Server;perl Makefile.PL)
! (cd src/modules/Benson;perl Makefile.PL)
fi
! if test "x$debug" = "x"; then
! CXXFLAGS=`echo $CXXFLAGS | $sedpath 's/\-g //g'`
! else
! CXXFLAGS="$CXXFLAGS -g"
! fi
AC_OUTPUT(Makefile src/perl/Makefile src/corba/Makefile \
Index: ltmain.sh
===================================================================
RCS file: /cvsroot/benson/benson2/ltmain.sh,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** ltmain.sh 2001/03/23 03:13:27 1.1.1.1
--- ltmain.sh 2001/06/03 23:33:40 1.2
***************
*** 1,6 ****
# ltmain.sh - Provide generalized library-building support services.
! # NOTE: Changing this file will not affect anything until you rerun ltconfig.
#
! # Copyright (C) 1996-1999 Free Software Foundation, Inc.
# Originally by Gordon Matzigkeit <go...@gn...>, 1996
#
--- 1,7 ----
# ltmain.sh - Provide generalized library-building support services.
! # NOTE: Changing this file will not affect anything until you rerun configure.
#
[...4292 lines suppressed...]
compile)
$echo \
***************
*** 3888,3891 ****
--- 4806,4811 ----
-o OUTPUT-FILE set the output file name to OUTPUT-FILE
+ -prefer-pic try to building PIC objects only
+ -prefer-non-pic try to building non-PIC objects only
-static always build a \`.o' file suitable for static linking
***************
*** 3967,3970 ****
--- 4887,4892 ----
-lNAME OUTPUT-FILE requires the installed library libNAME
-module build a library that can dlopened
+ -no-fast-install disable the fast-install mode
+ -no-install link a not-installable executable
-no-undefined declare that a library does not refer to external symbols
-o OUTPUT-FILE create OUTPUT-FILE from the specified objects
|
|
From: Bob T. <bt...@us...> - 2001-06-03 23:34:20
|
Update of /cvsroot/benson/benson2 In directory usw-pr-cvs1:/tmp/cvs-serv3868 Modified Files: configure.in acinclude.m4 Log Message: Added changes to the build environment Index: configure.in =================================================================== RCS file: /cvsroot/benson/benson2/configure.in,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** configure.in 2001/05/29 05:05:15 1.4 --- configure.in 2001/06/03 22:40:45 1.5 *************** *** 35,45 **** AC_PREREQ(2.9) ! AC_ARG_WITH(mico, [ --with-mico=dir Find MICO installation below dir],mico_dir=$withval, with_mico=no) ! AC_ARG_WITH(omniorb, [ --with-omniorb=dir Find omniORB installation below dir],omni_dir=$withval, with_omni=no) ! AC_ARG_ENABLE(mico-dispatcher,[ --disable-mico-dispatcher Disable MICO-specific event dispatcher]) ! AC_ARG_ENABLE(debug, [ --enable-debug Compile using -g]) ! AC_ARG_ENABLE(perl, [ --disable-perl Disable use of perl scripting], perl=$enableval, perl=yes) AC_CHECK_LIB(socket, open) AC_CHECK_LIB(dl, open) --- 35,46 ---- AC_PREREQ(2.9) ! AC_ARG_WITH(mico, [ --with-mico=dir Find MICO installation below dir],mico_dir=$withval, with_mico=no) ! AC_ARG_WITH(omniorb, [ --with-omniorb=dir Find omniORB installation below dir],omni_dir=$withval, with_omni=no) ! AC_ARG_WITH(ssliiop, [ --with-ssl=dir Find SSL libraries for SSLIIOP support below dir],ssl_dir=$withval, with_ssl=no) ! AC_ARG_ENABLE(debug, [ --enable-debug Compile using -g]) ! AC_ARG_ENABLE(profile, [ --enable-profiling Compile using -pg]) + AC_CHECK_LIB(compat, open) AC_CHECK_LIB(socket, open) AC_CHECK_LIB(dl, open) Index: acinclude.m4 =================================================================== RCS file: /cvsroot/benson/benson2/acinclude.m4,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** acinclude.m4 2001/05/20 05:54:16 1.4 --- acinclude.m4 2001/06/03 22:40:45 1.5 *************** *** 160,163 **** --- 160,171 ---- fi + AC_MSG_CHECKING(for ssliiop support) + if test "x$ssliiop" = "x" ; then + AC_MSG_RESULT(not found) + else + AC_MSG_RESULT(found) + LDFLAGS="-L$ssldir/lib $LDFLAGS" + fi + # # Mico setup complete |
|
From: Bob T. <bt...@us...> - 2001-06-03 23:01:51
|
Update of /cvsroot/benson/benson2 In directory usw-pr-cvs1:/tmp/cvs-serv31058 Modified Files: ChangeLog Log Message: Updated the ChangeLog information for the latest changes Index: ChangeLog =================================================================== RCS file: /cvsroot/benson/benson2/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** ChangeLog 2001/05/30 03:31:26 1.10 --- ChangeLog 2001/06/03 22:14:12 1.11 *************** *** 1,9 **** version 2.0a9 - Now uses POA vs BOA ! - alert_list now uses AV instead of an HV. version 2.0a8 & version 2.0a7 - Mostly bug fixes, found a major bug in the agent, that I am still ! working on. - Monitor.pm has had major reworking, is more stable now and robust. --- 1,15 ---- + version 2.0a11 + + version 2.0a10 + - Bugfix for the suppress problems, that were created because of the + arrays. + version 2.0a9 - Now uses POA vs BOA ! - Now uses array of hashs instead of hash of hashs for the alert_list version 2.0a8 & version 2.0a7 - Mostly bug fixes, found a major bug in the agent, that I am still ! working on. - Monitor.pm has had major reworking, is more stable now and robust. |
|
From: Bob T. <bt...@us...> - 2001-06-01 17:30:29
|
Update of /cvsroot/benson/benson2/src/modules/Handlers/lib/Benson/Handlers In directory usw-pr-cvs1:/tmp/cvs-serv25396/lib/Benson/Handlers Modified Files: Monitor.pm Log Message: Fixed the suppress bug, lying dormant Index: Monitor.pm =================================================================== RCS file: /cvsroot/benson/benson2/src/modules/Handlers/lib/Benson/Handlers/Monitor.pm,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** Monitor.pm 2001/05/30 03:21:57 1.8 --- Monitor.pm 2001/06/01 17:30:26 1.9 *************** *** 69,74 **** # otherwise it appears in the hash list, and suppression handlers # may try to suppress based on this. ! delete $alerts[$current_alert]; ! my $clean_aref = \@alerts; my $trap_ref = new Benson::Alert ($s,$clean_aref); --- 69,76 ---- # otherwise it appears in the hash list, and suppression handlers # may try to suppress based on this. ! my @clean_alerts = @alerts; ! delete $clean_alerts[$current_alert]; ! ! my $clean_aref = \@clean_alerts; my $trap_ref = new Benson::Alert ($s,$clean_aref); |
|
From: Bob T. <bt...@us...> - 2001-05-30 03:31:29
|
Update of /cvsroot/benson/benson2 In directory usw-pr-cvs1:/tmp/cvs-serv4563 Modified Files: ChangeLog Log Message: ChangeLog Index: ChangeLog =================================================================== RCS file: /cvsroot/benson/benson2/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** ChangeLog 2001/05/20 05:54:16 1.9 --- ChangeLog 2001/05/30 03:31:26 1.10 *************** *** 1,4 **** --- 1,5 ---- version 2.0a9 - Now uses POA vs BOA + - alert_list now uses AV instead of an HV. version 2.0a8 & version 2.0a7 |