Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder libpcap-solaris10-i386 Build #2898

Results:

Build successful

SourceStamp:

Projectlibpcap
Repositoryhttps://git.tcpdump.org/libpcap
Branchmaster
Revision19fc50f95d47bb6999c0e3b7d901d502f16daabf
Got Revision19fc50f95d47bb6999c0e3b7d901d502f16daabf
Changes2 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-libpcap-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git update ( 16 secs )
    1. stdio
  2. shell Set developer mode ( 0 secs )
    1. stdio
  3. shell_1 './autogen.sh' ( 2 secs )
    1. stdio
  4. shell_2 './configure' ( 11 secs )
    1. stdio
    2. config.log
  5. shell_3 'gmake' ( 7 secs )
    1. stdio
  6. shell_4 'rm -rf ...' ( 0 secs )
    1. stdio
  7. shell_5 'gmake install ...' ( 0 secs )
    1. stdio
  8. trigger triggered trigger-tcpdump-solaris10-i386 ( 1 mins, 34 secs )
    1. - no logs -
    2. tcpdump-solaris10-i386 #5363

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/libpcap-solaris10-i386 slave
buildername libpcap-solaris10-i386 Builder
buildnumber 2898 Build
codebase Build
got_revision 19fc50f95d47bb6999c0e3b7d901d502f16daabf Git
project libpcap Build
repository https://git.tcpdump.org/libpcap Build
revision 19fc50f95d47bb6999c0e3b7d901d502f16daabf Build
scheduler schedule-libpcap-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/libpcap-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Francois-Xavier Le Bail

Timing:

StartTue Apr 9 07:53:07 2024
EndTue Apr 9 07:55:21 2024
Elapsed2 mins, 13 secs

All Changes:

:

  1. Change #194833

    Category libpcap
    Changed by Francois-Xavier Le Bail <devel.fx.lebailohnoyoudont@orange.fr>
    Changed at Tue 09 Apr 2024 07:41:42
    Repository https://git.tcpdump.org/libpcap
    Project libpcap
    Branch master
    Revision 013f094a6acc9000536f7871d35a468da6e2ec50

    Comments

    Makefile.in(s): Fix the depend target
    Fix an error on Solaris 10 like:
    ./mkdep: /opt/solarisstudio12.3/bin/cc -D_STDC_C99=: not found
    
    When configure get some compiler option like:
    checking for /opt/solarisstudio12.3/bin/cc option to accept ISO C99...
    -D_STDC_C99=
    Makefile will contain:
    CC = /opt/solarisstudio12.3/bin/cc -D_STDC_C99=
    
    And if we use '-c "$(CC)"' mkdep will set and try to run:
    CC="/opt/solarisstudio12.3/bin/cc -D_STDC_C99=", which is incorrect.
    
    Remove the quotes to allow mkdep to set CC with the compiler name and
    set flags with the option.

    Changed files

    • Makefile.in
    • rpcapd/Makefile.in
    • testprogs/Makefile.in
  2. Change #194834

    Category libpcap
    Changed by Francois-Xavier Le Bail <devel.fx.lebailohnoyoudont@orange.fr>
    Changed at Tue 09 Apr 2024 07:41:42
    Repository https://git.tcpdump.org/libpcap
    Project libpcap
    Branch master
    Revision 19fc50f95d47bb6999c0e3b7d901d502f16daabf

    Comments

    mkdep: Exit with a non-zero status if a command fails
    This could help detect errors such as in the previous commit.

    Changed files

    • mkdep