-current not building

2014-04-13 Thread Chris Smith
-current not currently building:
==
mandoc -Tlint -Wfatal /usr/src/usr.sbin/ldapd/ldapd.conf.5
cc   -o ldapd ber.o log.o control.o util.o ldapd.o ldape.o conn.o
attributes.o namespace.o btree.o filter.o search.o parse.o auth.o
modify.o index.o ssl.o ssl_privsep.o validate.o uuid.o schema.o
imsgev.o syntax.o matching.o -levent -lssl -lcrypto -lz -lutil
/usr/lib/libssl.so.22.0: undefined reference to `CRYPTO_memcmp'
collect2: ld returned 1 exit status
*** Error 1 in usr.sbin/ldapd (bsd.prog.mk:95 'ldapd')
*** Error 2 in usr.sbin (bsd.subdir.mk:48 'all')
*** Error 2 in . (bsd.subdir.mk:48 'all')
*** Error 2 in /usr/src (Makefile:89 'build')
==



Re: -current not building

2014-04-13 Thread Theo de Raadt
Get new code. A shared library was not cranked correctly.


 -current not currently building:
 ==
 mandoc -Tlint -Wfatal /usr/src/usr.sbin/ldapd/ldapd.conf.5
 cc   -o ldapd ber.o log.o control.o util.o ldapd.o ldape.o conn.o
 attributes.o namespace.o btree.o filter.o search.o parse.o auth.o
 modify.o index.o ssl.o ssl_privsep.o validate.o uuid.o schema.o
 imsgev.o syntax.o matching.o -levent -lssl -lcrypto -lz -lutil
 /usr/lib/libssl.so.22.0: undefined reference to `CRYPTO_memcmp'
 collect2: ld returned 1 exit status
 *** Error 1 in usr.sbin/ldapd (bsd.prog.mk:95 'ldapd')
 *** Error 2 in usr.sbin (bsd.subdir.mk:48 'all')
 *** Error 2 in . (bsd.subdir.mk:48 'all')
 *** Error 2 in /usr/src (Makefile:89 'build')
 ==



Re: -current not building

2014-04-13 Thread Chris Smith
Guess I'm missing the point, Downloaded src from scratch and now
getting a different error (on two separate systems) when trying to
build userland:

mandoc -Tlint -Wfatal /usr/src/usr.sbin/ntpd/ntpctl.8
=== usr.sbin/openssl
cc -O2 -pipe  -DMONOLITH -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5
-DOPENSSL_NO_SSL2 -I/usr/src/usr.sbin/openssl/../../lib/libssl/src
-c /usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:72:
error: expected '=', ',', ';', 'asm' or '__attribute__' before 'cb'
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c: In
function 'verify_main':
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:97:
error: 'cb' undeclared (first use in this function)
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:97:
error: (Each undeclared identifier is reported only once
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:97:
error: for each function it appears in.)
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c: At top level:
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:311:
error: expected '=', ',', ';', 'asm' or '__attribute__' before 'cb'
*** Error 1 in usr.sbin/openssl (sys.mk:87 'verify.o')
*** Error 1 in usr.sbin (bsd.subdir.mk:48 'all')
*** Error 1 in . (bsd.subdir.mk:48 'all')
*** Error 1 in /usr/src (Makefile:89 'build')

These things built -current fine a week ago.

Chris

On Sun, Apr 13, 2014 at 4:12 PM, Theo de Raadt dera...@cvs.openbsd.org wrote:
 Get new code. A shared library was not cranked correctly.


 -current not currently building:
 ==
 mandoc -Tlint -Wfatal /usr/src/usr.sbin/ldapd/ldapd.conf.5
 cc   -o ldapd ber.o log.o control.o util.o ldapd.o ldape.o conn.o
 attributes.o namespace.o btree.o filter.o search.o parse.o auth.o
 modify.o index.o ssl.o ssl_privsep.o validate.o uuid.o schema.o
 imsgev.o syntax.o matching.o -levent -lssl -lcrypto -lz -lutil
 /usr/lib/libssl.so.22.0: undefined reference to `CRYPTO_memcmp'
 collect2: ld returned 1 exit status
 *** Error 1 in usr.sbin/ldapd (bsd.prog.mk:95 'ldapd')
 *** Error 2 in usr.sbin (bsd.subdir.mk:48 'all')
 *** Error 2 in . (bsd.subdir.mk:48 'all')
 *** Error 2 in /usr/src (Makefile:89 'build')
 ==



Re: -current not building

2014-04-13 Thread Ted Unangst
On Sun, Apr 13, 2014 at 23:15, Chris Smith wrote:
 Guess I'm missing the point, Downloaded src from scratch and now
 getting a different error (on two separate systems) when trying to
 build userland:
 
 mandoc -Tlint -Wfatal /usr/src/usr.sbin/ntpd/ntpctl.8
 === usr.sbin/openssl
 cc -O2 -pipe  -DMONOLITH -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5
 -DOPENSSL_NO_SSL2 -I/usr/src/usr.sbin/openssl/../../lib/libssl/src
 -c /usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c
 /usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:72:
 error: expected '=', ',', ';', 'asm' or '__attribute__' before 'cb'

 These things built -current fine a week ago.

If you're not subscribed to source-changes, you should be. And if you
are, you should have seen a few dozen commits to libssl recently.

Do you need to build current? Probably not. That's why we provide
snapshots.

Build errors that don't come with patches aren't very interesting
because by the time you report it, somebody else will have found it
and fixed it.



Re: -current not building

2014-04-13 Thread Chris Smith
OK, I'll try again. I do follow the source changes via gmane with a
newsreader but I think there's a bit of delay.

Thanks.

On Sun, Apr 13, 2014 at 11:27 PM, Ted Unangst t...@tedunangst.com wrote:
 On Sun, Apr 13, 2014 at 23:15, Chris Smith wrote:
 Guess I'm missing the point, Downloaded src from scratch and now
 getting a different error (on two separate systems) when trying to
 build userland:

 mandoc -Tlint -Wfatal /usr/src/usr.sbin/ntpd/ntpctl.8
 === usr.sbin/openssl
 cc -O2 -pipe  -DMONOLITH -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5
 -DOPENSSL_NO_SSL2 -I/usr/src/usr.sbin/openssl/../../lib/libssl/src
 -c /usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c
 /usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:72:
 error: expected '=', ',', ';', 'asm' or '__attribute__' before 'cb'

 These things built -current fine a week ago.

 If you're not subscribed to source-changes, you should be. And if you
 are, you should have seen a few dozen commits to libssl recently.

 Do you need to build current? Probably not. That's why we provide
 snapshots.

 Build errors that don't come with patches aren't very interesting
 because by the time you report it, somebody else will have found it
 and fixed it.



Re: -current not building

2014-04-13 Thread Theo de Raadt
We'd love to rsync the repository more real-time, but haven't got the
bandwidth.

And even if we did, there still would be moments between when you
fetch, start a build.

Hint to everyone:  Fetch.  Build.  See error?  re-fetch, rebuild.  If
it happens the 2nd time, then maybe...

Do you understand it is a lot of noise?

OK, I'll try again. I do follow the source changes via gmane with a
newsreader but I think there's a bit of delay.

Thanks.

On Sun, Apr 13, 2014 at 11:27 PM, Ted Unangst t...@tedunangst.com wrote:
 On Sun, Apr 13, 2014 at 23:15, Chris Smith wrote:
 Guess I'm missing the point, Downloaded src from scratch and now
 getting a different error (on two separate systems) when trying to
 build userland:

 mandoc -Tlint -Wfatal /usr/src/usr.sbin/ntpd/ntpctl.8
 === usr.sbin/openssl
 cc -O2 -pipe  -DMONOLITH -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5
 -DOPENSSL_NO_SSL2 -I/usr/src/usr.sbin/openssl/../../lib/libssl/src
 -c /usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c
 /usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:72:
 error: expected '=', ',', ';', 'asm' or '__attribute__' before 'cb'

 These things built -current fine a week ago.

 If you're not subscribed to source-changes, you should be. And if you
 are, you should have seen a few dozen commits to libssl recently.

 Do you need to build current? Probably not. That's why we provide
 snapshots.

 Build errors that don't come with patches aren't very interesting
 because by the time you report it, somebody else will have found it
 and fixed it.



Re: -current not building

2014-04-13 Thread Theo de Raadt
It is a live development tree:

 118 2014/03/26
 180 2014/03/27
  81 2014/03/28
  57 2014/03/29
  63 2014/03/30
  97 2014/03/31
  65 2014/04/01
  45 2014/04/02
  77 2014/04/03
  32 2014/04/04
  34 2014/04/05
  42 2014/04/06
  74 2014/04/07
  47 2014/04/08
  47 2014/04/09
  46 2014/04/10
  51 2014/04/11
  39 2014/04/12
  86 2014/04/13

That is the daily commit count.

If we had better network, we would get data to out to the fanout
mirrors faster.

It is what it is.  Work with it.

Guess I'm missing the point, Downloaded src from scratch and now
getting a different error (on two separate systems) when trying to
build userland:

mandoc -Tlint -Wfatal /usr/src/usr.sbin/ntpd/ntpctl.8
=== usr.sbin/openssl
cc -O2 -pipe  -DMONOLITH -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5
-DOPENSSL_NO_SSL2 -I/usr/src/usr.sbin/openssl/../../lib/libssl/src
-c /usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:72:
error: expected '=', ',', ';', 'asm' or '__attribute__' before 'cb'
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c: In
function 'verify_main':
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:97:
error: 'cb' undeclared (first use in this function)
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:97:
error: (Each undeclared identifier is reported only once
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:97:
error: for each function it appears in.)
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c: At top level:
/usr/src/usr.sbin/openssl/../../lib/libssl/src/apps/verify.c:311:
error: expected '=', ',', ';', 'asm' or '__attribute__' before 'cb'
*** Error 1 in usr.sbin/openssl (sys.mk:87 'verify.o')
*** Error 1 in usr.sbin (bsd.subdir.mk:48 'all')
*** Error 1 in . (bsd.subdir.mk:48 'all')
*** Error 1 in /usr/src (Makefile:89 'build')

These things built -current fine a week ago.

Chris

On Sun, Apr 13, 2014 at 4:12 PM, Theo de Raadt dera...@cvs.openbsd.org wrote:
 Get new code. A shared library was not cranked correctly.


 -current not currently building:
 ==
 mandoc -Tlint -Wfatal /usr/src/usr.sbin/ldapd/ldapd.conf.5
 cc   -o ldapd ber.o log.o control.o util.o ldapd.o ldape.o conn.o
 attributes.o namespace.o btree.o filter.o search.o parse.o auth.o
 modify.o index.o ssl.o ssl_privsep.o validate.o uuid.o schema.o
 imsgev.o syntax.o matching.o -levent -lssl -lcrypto -lz -lutil
 /usr/lib/libssl.so.22.0: undefined reference to `CRYPTO_memcmp'
 collect2: ld returned 1 exit status
 *** Error 1 in usr.sbin/ldapd (bsd.prog.mk:95 'ldapd')
 *** Error 2 in usr.sbin (bsd.subdir.mk:48 'all')
 *** Error 2 in . (bsd.subdir.mk:48 'all')
 *** Error 2 in /usr/src (Makefile:89 'build')
 ==



-current not building on macppc

2006-01-12 Thread Michael Steinfeld
HW: Mac Mini
I just cvs'd my src and attempted a 'make build'
here is the stop error, is there a fix for this?

ty.


installing a.out.h ar.h assert.h bitstring.h blf.h bm.h bsd_auth.h
cast.h cpio.h ctype.h curses.h db.h dbm.h des.h dirent.h disktab.h
dlfcn.h elf_abi.h err.h errno.h fnmatch.h fstab.h fts.h ftw.h getopt.h
glob.h grp.h ifaddrs.h inttypes.h iso646.h kvm.h langinfo.h libgen.h
limits.h locale.h login_cap.h malloc.h math.h md4.h md5.h memory.h
mpool.h ndbm.h netdb.h netgroup.h nlist.h nl_types.h ohash.h olf_abi.h
paths.h poll.h pwd.h ranlib.h re_comp.h readpassphrase.h regex.h
resolv.h rmd160.h search.h setjmp.h sgtty.h sha1.h sha2.h skipjack.h
signal.h stab.h stdbool.h stddef.h stdio.h stdlib.h string.h strings.h
struct.h sysexits.h tar.h time.h ttyent.h tzfile.h unistd.h utime.h
utmp.h vis.h wchar.h wctype.h link.h link_aout.h link_elf.h ieeefp.h
installing arpa protocols rpc rpcsvc
installing fcntl.h syslog.h termios.h stdarg.h stdint.h varargs.h
installing float.h frame.h
chown -R root:bin /usr/include
find /usr/include -type f -print0 |  xargs -0r chmod a=r
xargs: unknown option -- r
usage: xargs [-0opt] [-E eofstr] [-I replstr [-R replacements]] [-J replstr]
 [-L number] [-n number [-x]] [-P maxprocs] [-s size]
 [utility [argument ...]]
*** Error code 1

Stop in /usr/src/include (line 89 of Makefile).
*** Error code 1

Stop in /usr/src (line 73 of Makefile).



Re: -current not building on macppc

2006-01-12 Thread Stuart Henderson
On 2006/01/12 20:22, Michael Steinfeld wrote:
 HW: Mac Mini
 I just cvs'd my src and attempted a 'make build'
 here is the stop error, is there a fix for this?

First, install a snapshot.
If that doesn't help, clean your src tree.



Re: -current not building on macppc

2006-01-12 Thread Tobias Ulmer
On Thu, Jan 12, 2006 at 08:22:12PM -0500, Michael Steinfeld wrote:
 HW: Mac Mini
 I just cvs'd my src and attempted a 'make build'
 here is the stop error, is there a fix for this?
 
 ty.
 
 
 installing a.out.h ar.h assert.h bitstring.h blf.h bm.h bsd_auth.h
 cast.h cpio.h ctype.h curses.h db.h dbm.h des.h dirent.h disktab.h
 dlfcn.h elf_abi.h err.h errno.h fnmatch.h fstab.h fts.h ftw.h getopt.h
 glob.h grp.h ifaddrs.h inttypes.h iso646.h kvm.h langinfo.h libgen.h
 limits.h locale.h login_cap.h malloc.h math.h md4.h md5.h memory.h
 mpool.h ndbm.h netdb.h netgroup.h nlist.h nl_types.h ohash.h olf_abi.h
 paths.h poll.h pwd.h ranlib.h re_comp.h readpassphrase.h regex.h
 resolv.h rmd160.h search.h setjmp.h sgtty.h sha1.h sha2.h skipjack.h
 signal.h stab.h stdbool.h stddef.h stdio.h stdlib.h string.h strings.h
 struct.h sysexits.h tar.h time.h ttyent.h tzfile.h unistd.h utime.h
 utmp.h vis.h wchar.h wctype.h link.h link_aout.h link_elf.h ieeefp.h
 installing arpa protocols rpc rpcsvc
 installing fcntl.h syslog.h termios.h stdarg.h stdint.h varargs.h
 installing float.h frame.h
 chown -R root:bin /usr/include
 find /usr/include -type f -print0 |  xargs -0r chmod a=r
 xargs: unknown option -- r
 usage: xargs [-0opt] [-E eofstr] [-I replstr [-R replacements]] [-J replstr]
  [-L number] [-n number [-x]] [-P maxprocs] [-s size]
  [utility [argument ...]]
 *** Error code 1
 
 Stop in /usr/src/include (line 89 of Makefile).
 *** Error code 1
 
 Stop in /usr/src (line 73 of Makefile).
 


I guess it has something to do with the instructions in this document:
http://openbsd.org/faq/current.html

Tobias ;)