jra/samba/.git
16 years agor8481: switched ldb ejs called over to an OO interface, so you do:
Andrew Tridgell [Fri, 15 Jul 2005 05:40:34 +0000 (05:40 +0000)]
r8481: switched ldb ejs called over to an OO interface, so you do:

var ldb = ldb_init();

res = ldb.search(dbfile, "(objectClass=user)");

you can also do:

ldbSearch = ldb.search;
res = ldbSearch(dbfile, "(objectClass=user)");

if you want the old interface (ie. you can use this to import
functions into the global or local namespace).
(This used to be commit 3093057d9735cbb62f57e7159264d5a28b85320f)

16 years agor8480: fixed a typo
Andrew Tridgell [Fri, 15 Jul 2005 00:00:48 +0000 (00:00 +0000)]
r8480: fixed a typo

(metze, I assume this was just a typo? it broke the build on oehmesrs6k)
(This used to be commit aa68459fe7579b385dd1824680ec641052029a1e)

16 years agor8479: * Sync CSS with current samba.org stylesheets.
Deryck Hodge [Thu, 14 Jul 2005 19:21:02 +0000 (19:21 +0000)]
r8479: * Sync CSS with current samba.org stylesheets.
* Add wide.css so it's availble for future pages.
* Move SWAT specific styles to swat.css to make future syncs easier.

deryck
(This used to be commit 7ddc3ed5b87687a66995d2555c683efcb93be7e2)

16 years agor8477: Simplify header/footer handling. esp variables allow
Deryck Hodge [Thu, 14 Jul 2005 18:11:07 +0000 (18:11 +0000)]
r8477: Simplify header/footer handling.  esp variables allow
for individual page titles, so we don't need the split
header/footer here like we do on samba.org.

deryck
(This used to be commit af893fe83346f516402d0d6271533eedefa0ce4b)

16 years agor8476: add a note that DsAddEntry is very incomplete yet
Stefan Metzmacher [Thu, 14 Jul 2005 14:48:56 +0000 (14:48 +0000)]
r8476: add a note that DsAddEntry is very incomplete yet

metze
(This used to be commit 53b91754107b790e2349a97069ea03a7bd6ff712)

16 years agor8474: add some more attid mappings
Stefan Metzmacher [Thu, 14 Jul 2005 14:40:28 +0000 (14:40 +0000)]
r8474: add some more attid mappings
for the password fields

metze
(This used to be commit 8454d32eb2f0aa4287956951c2550f060f7f10b3)

16 years agor8471: --ejs taking an optional arguments interferes with the pidl extra args
Andrew Tridgell [Thu, 14 Jul 2005 13:44:54 +0000 (13:44 +0000)]
r8471: --ejs taking an optional arguments interferes with the pidl extra args
(This used to be commit a9d05af0fd802cf0cbe1298c3c988dcd2eb1b848)

16 years agor8470: looks like popt portability is going to be a bit of a fight :(
Andrew Tridgell [Thu, 14 Jul 2005 13:33:17 +0000 (13:33 +0000)]
r8470: looks like popt portability is going to be a bit of a fight :(
(This used to be commit d3872a6e4ce0227fa3c84173562551d0270918b6)

16 years agor8469: the extra pidl args need to be normal args, not after a --, otherwise pidl...
Andrew Tridgell [Thu, 14 Jul 2005 13:27:18 +0000 (13:27 +0000)]
r8469: the extra pidl args need to be normal args, not after a --, otherwise pidl tries to compile
"--uint-enums" as a IDL file :-)

This should help the build on AIX 5.2
(This used to be commit f54e6c83e48cc2d1f03827337b68658057206898)

16 years agor8467: using both math.h and float.h breaks popt on freebsd 5.4
Andrew Tridgell [Thu, 14 Jul 2005 13:21:27 +0000 (13:21 +0000)]
r8467: using both math.h and float.h breaks popt on freebsd 5.4
(This used to be commit a1acb3300eec7717df24ecdf7205fb4e395d8c16)

16 years agor8466: it is not portable to assert() a va_list (it breaks on alpha for example)
Andrew Tridgell [Thu, 14 Jul 2005 13:17:14 +0000 (13:17 +0000)]
r8466: it is not portable to assert() a va_list (it breaks on alpha for example)
(This used to be commit 2a64ee4227840de4aebe2ebe1887dfd167831738)

16 years agor8465: once we define socklen_t, then tell other include files we have it. This preve...
Andrew Tridgell [Thu, 14 Jul 2005 13:14:47 +0000 (13:14 +0000)]
r8465: once we define socklen_t, then tell other include files we have it. This prevents roken
trying to redefine it
(This used to be commit aa9491c0cb00f5cab9e00983bf2a0c266011904a)

16 years agor8464: the last few functions needed by irix 6.4.
Andrew Tridgell [Thu, 14 Jul 2005 12:58:48 +0000 (12:58 +0000)]
r8464: the last few functions needed by irix 6.4.
(This used to be commit 903d963ca8fdefa23eaa77b5117d90b6b84866ab)

16 years agor8463: more irix fixes. This one adds some missing addrinfo functions
Andrew Tridgell [Thu, 14 Jul 2005 12:34:52 +0000 (12:34 +0000)]
r8463: more irix fixes. This one adds some missing addrinfo functions
(This used to be commit 87f7098ee3a24be202b6aaa1ab2a4e44b7b89975)

16 years agor8462: added a test for %lld support to our snprintf() configure test.
Andrew Tridgell [Thu, 14 Jul 2005 12:16:16 +0000 (12:16 +0000)]
r8462: added a test for %lld support to our snprintf() configure test.

our snprintf replacement code is going to be getting a good workout :)
(This used to be commit 3e9e5af4cee16e2316b544eebb489f87fd064ff4)

16 years agor8461: fixed integer64 handling on bit endian platforms. The ejs code used
Andrew Tridgell [Thu, 14 Jul 2005 12:00:31 +0000 (12:00 +0000)]
r8461: fixed integer64 handling on bit endian platforms. The ejs code used
%Ld, which is an invalid format code.

This will probably cause problems on systems that don't have %lld, but
do have a working snprintf otherwise. We will need to expand the
snprintf configure test to make sure we replace snprintf on those
platforms
(This used to be commit ccc87eb8aaf571d91170555a732d287746b3430f)

16 years agor8460: removed the unused function krb5_locate_kdc(). It causes a build failure on...
Andrew Tridgell [Thu, 14 Jul 2005 09:56:27 +0000 (09:56 +0000)]
r8460: removed the unused function krb5_locate_kdc(). It causes a build failure on irix.

Andrew, if you planned on using this in the future then we can put it
back and work out how to make it portable
(This used to be commit eaa74913fedefbf33f7cfab6648bf05aa3cdbbb3)

16 years agor8459: move to the more portable script execution method
Andrew Tridgell [Thu, 14 Jul 2005 09:51:49 +0000 (09:51 +0000)]
r8459: move to the more portable script execution method
(This used to be commit d7e4dcaaaa37c4992f763e37ca2d655e4d267283)

16 years agor8458: next target is irix - this gets the socket wrapper code building
Andrew Tridgell [Thu, 14 Jul 2005 09:23:52 +0000 (09:23 +0000)]
r8458: next target is irix - this gets the socket wrapper code building
(This used to be commit 3d4a2221c3e032bbb6c23d132e00588f44f5e2ed)

16 years agor8456: avoid double inclusion of roken.h (this was breaking the build on irix 6.4)
Andrew Tridgell [Thu, 14 Jul 2005 08:50:57 +0000 (08:50 +0000)]
r8456: avoid double inclusion of roken.h (this was breaking the build on irix 6.4)
(This used to be commit 8c432af87d9ae9a5bdce5ce1ca96dc46adda793e)

16 years agor8453: my solaris10 box doesn't have math.h
Andrew Tridgell [Thu, 14 Jul 2005 07:35:48 +0000 (07:35 +0000)]
r8453: my solaris10 box doesn't have math.h

maybe sun isn't very good at maths?
(This used to be commit ab67c8b2b7847ecad803dfc04a66007b8f6b4abe)

16 years agor8452: allow for the ugly hack:
Andrew Tridgell [Thu, 14 Jul 2005 07:21:59 +0000 (07:21 +0000)]
r8452: allow for the ugly hack:

#!/bin/sh
exec smbscript "$0" ${1+"$@"}

which is needed because bloody solaris puts 'env' in /bin instead of /usr/bin

also neaten up the #! handling code.
(This used to be commit 778bcd3738e42d8adfd4529f790c898f0d904363)

16 years agor8451: samba4 finally builds on solaris 8 sparc with heimdal and ejs
Andrew Tridgell [Thu, 14 Jul 2005 07:04:21 +0000 (07:04 +0000)]
r8451: samba4 finally builds on solaris 8 sparc with heimdal and ejs

its been a long haul ...
(This used to be commit 3c4291e49abed14973b4a4fa1a9277918b896cac)

16 years agor8450: more configure tests for solaris. It now builds some binaries, but
Andrew Tridgell [Thu, 14 Jul 2005 06:36:19 +0000 (06:36 +0000)]
r8450: more configure tests for solaris. It now builds some binaries, but
fails in the ejs floating point code.
(This used to be commit 30e1b6140e9f6246cb66eef7cf108d1ccf62bd40)

16 years agor8449: - search for lex and yacc properly
Andrew Tridgell [Thu, 14 Jul 2005 05:54:32 +0000 (05:54 +0000)]
r8449: - search for lex and yacc properly

- added target specific flags to get the #include order right for
  com_err and asn1 files in heimdal
(This used to be commit c721c8ca380db756ae2ccf3711be894bab8d5318)

16 years agor8448: - added a test target for tdb
Andrew Tridgell [Thu, 14 Jul 2005 04:27:55 +0000 (04:27 +0000)]
r8448: - added a test target for tdb

- reduced the torture size so it doesn't kill the build farm hosts
(This used to be commit 7a88a9f06cbe5c125edad0da7908b94bcedfe4fc)

16 years agor8447: fixed make install in the farm
Andrew Tridgell [Thu, 14 Jul 2005 04:00:38 +0000 (04:00 +0000)]
r8447: fixed make install in the farm
(This used to be commit 4a61a5c70efdf3842e19ae74a2b56c4b10e8e294)

16 years agor8446: if provisioning fails then don't try to run the test suite!
Andrew Tridgell [Thu, 14 Jul 2005 03:13:04 +0000 (03:13 +0000)]
r8446: if provisioning fails then don't try to run the test suite!
(This used to be commit 7c1bc27254ea58b63c66ce1dbc9f7630c0bedbad)

16 years agor8445: if a system doesn't have "nogroup" then try "nobody"
Andrew Tridgell [Thu, 14 Jul 2005 03:10:17 +0000 (03:10 +0000)]
r8445: if a system doesn't have "nogroup" then try "nobody"
(This used to be commit 433f9d0a619ff34a4b7506950ee091fb8d34870d)

16 years agor8444: make ./configure.mumble CC='ccache cc'
Love Hörnquist Åstrand [Thu, 14 Jul 2005 02:56:18 +0000 (02:56 +0000)]
r8444: make ./configure.mumble CC='ccache cc'
work by using "@$" instead of $*
(This used to be commit 98e8049bc3f0b1d550344161ef34801be3ccb3ae)

16 years agor8443: added talloc.3 to the tree to try to allow talloc to build on systems without...
Andrew Tridgell [Thu, 14 Jul 2005 02:44:30 +0000 (02:44 +0000)]
r8443: added talloc.3 to the tree to try to allow talloc to build on systems without xsltproc
(This used to be commit 0e5b89b1e8871a76c2f9c94d7d7552498d16f350)

16 years agor8442: remove tdbtest from our build. If you want it, then do
Andrew Tridgell [Thu, 14 Jul 2005 02:37:01 +0000 (02:37 +0000)]
r8442: remove tdbtest from our build. If you want it, then do
'make bin/tdbtest' manually in the tdb tree
(This used to be commit 28dd79587df523c5622d09bd6d59305ae79af479)

16 years agor8441: don't build tdbtest by default as there are too many systems that
Andrew Tridgell [Thu, 14 Jul 2005 02:35:51 +0000 (02:35 +0000)]
r8441: don't build tdbtest by default as there are too many systems that
don't have libgdbm, and the configure test for gdbm is broken
(This used to be commit 5c4c3e9a8d9d853028271f228ad36388f4cb2012)

16 years agor8440: - several build farm hosts were failing 'make clean' as the list of
Andrew Tridgell [Thu, 14 Jul 2005 01:11:40 +0000 (01:11 +0000)]
r8440: - several build farm hosts were failing 'make clean' as the list of
  objects was overflowing their command line limits. Fix this by using a
  find -exec command. It's slower, but should be more portable.

- remove generated ASN1 files in 'make clean'
(This used to be commit da783f915865c8c5d2e02f927ebbf84719389655)

16 years agor8439: removed an accidential commit
Andrew Tridgell [Thu, 14 Jul 2005 00:52:12 +0000 (00:52 +0000)]
r8439: removed an accidential commit
(This used to be commit 985b5b0171e647d794135413799ea36851396549)

16 years agor8438: - More win32 portability fixes. Now fails on socketwrapper (because
Jelmer Vernooij [Wed, 13 Jul 2005 22:11:52 +0000 (22:11 +0000)]
r8438: - More win32 portability fixes. Now fails on socketwrapper (because
unix domain sockets are not available on win32)
- Update howto
(This used to be commit c88ee6b61b290806064993dba3fc27ea9e59cc63)

16 years agor8437: Win32 doesn't have u_int*_t
Jelmer Vernooij [Wed, 13 Jul 2005 21:54:34 +0000 (21:54 +0000)]
r8437: Win32 doesn't have u_int*_t
(This used to be commit 5b007037dfacc5e13141ca41241543ac11a567b6)

16 years agor8436: Check for sys/sockets.h
Jelmer Vernooij [Wed, 13 Jul 2005 21:44:56 +0000 (21:44 +0000)]
r8436: Check for sys/sockets.h
(This used to be commit 7757226ba5930824e32e069dc4986a2a29be40f8)

16 years agor8434: Win32 portability updates from Steven Edwards <steven_ed4153@yahoo.com>:
Jelmer Vernooij [Wed, 13 Jul 2005 20:44:46 +0000 (20:44 +0000)]
r8434: Win32 portability updates from Steven Edwards <steven_ed4153@yahoo.com>:
 - undefine anything in the win32 api or PSDK headers that Samba already defines
 - map BSD error codes to Winsock Error codes
(This used to be commit d2ea6191259a28a32a1f4ffdff067b1a80e8dcc9)

16 years agor8430: readd my hack to display the hashes with -d 100
Stefan Metzmacher [Wed, 13 Jul 2005 15:19:28 +0000 (15:19 +0000)]
r8430: readd my hack to display the hashes with -d 100

metze
(This used to be commit b3f01ef0df2579decbbb67586157d089f528dd13)

16 years agor8429: fix compiler warnings
Stefan Metzmacher [Wed, 13 Jul 2005 15:18:20 +0000 (15:18 +0000)]
r8429: fix compiler warnings

metze
(This used to be commit b9ee5818808f2e0cd38c0c5d2ef15cba22d4edbe)

16 years agor8425: add err() and errx() functions needed by for compile_et on some systems
Andrew Tridgell [Wed, 13 Jul 2005 13:55:06 +0000 (13:55 +0000)]
r8425: add err() and errx() functions needed by for compile_et on some systems
(This used to be commit 72a769b6d1a1ce5f8a19010074960b692b4755db)

16 years agor8424: bring in some more of heimdals m4 macros, and remove the hard-coding of severa...
Andrew Tridgell [Wed, 13 Jul 2005 12:35:21 +0000 (12:35 +0000)]
r8424: bring in some more of heimdals m4 macros, and remove the hard-coding of several test
results
(This used to be commit b173c938b2ced061ee341831e96001455fbf83d1)

16 years agor8423: remove the dependency on the full roken lib for asn1_compile
Andrew Tridgell [Wed, 13 Jul 2005 12:12:33 +0000 (12:12 +0000)]
r8423: remove the dependency on the full roken lib for asn1_compile

this should fix the -lsocket problem on solaris
(This used to be commit 4c462cdab318e69b1ee84837246700ecb36eafca)

16 years agor8422: needed on irix 6.4
Andrew Tridgell [Wed, 13 Jul 2005 11:30:34 +0000 (11:30 +0000)]
r8422: needed on irix 6.4
(This used to be commit db3f227c1c3b837e235566a7df7411d4d7e52c12)

16 years agor8421: needed for build on solaris10
Andrew Tridgell [Wed, 13 Jul 2005 11:28:37 +0000 (11:28 +0000)]
r8421: needed for build on solaris10
(This used to be commit c40d6d4b5cd6613d1161615b6ba213a26acda29e)

16 years agor8420: slowly getting my way through some more heimdal portability fixes
Andrew Tridgell [Wed, 13 Jul 2005 11:17:32 +0000 (11:17 +0000)]
r8420: slowly getting my way through some more heimdal portability fixes
(This used to be commit 59c3de6ca8b8e153e5cfd67da5f2afc2e23d36db)

16 years agor8419: in order to use our replace.h, heimdal needs stdarg.h
Andrew Tridgell [Wed, 13 Jul 2005 11:02:56 +0000 (11:02 +0000)]
r8419: in order to use our replace.h, heimdal needs stdarg.h
(This used to be commit 234fc1fb052fe6a2cef47861b13bdd82b57fc49b)

16 years agor8418: PRINTF_ATTRIBUTE declaration has to come before it is used :-)
Andrew Tridgell [Wed, 13 Jul 2005 10:58:43 +0000 (10:58 +0000)]
r8418: PRINTF_ATTRIBUTE declaration has to come before it is used :-)
(This used to be commit a1ca8352f48cf1942e5a060c79ae1cc78b8a3668)

16 years agor8417: fixed handling of PRINTF_ATTRIBUTE for heimdal portion of build
Andrew Tridgell [Wed, 13 Jul 2005 10:22:13 +0000 (10:22 +0000)]
r8417: fixed handling of PRINTF_ATTRIBUTE for heimdal portion of build
(This used to be commit 117d2fa31d3a7e0b37c09979aa41243c564c0385)

16 years agor8416: added the extra_cflags.txt system from smb-build
Andrew Tridgell [Wed, 13 Jul 2005 09:44:55 +0000 (09:44 +0000)]
r8416: added the extra_cflags.txt system from smb-build

this removes the need for recursive make for heimdal, which is a big
win. It should also make it easier/cleaner to build ldb/tdb/appweb etc
in both in-tree and out-of-tree forms by allowing us to specify
different CFLAGS (and thus different include paths) per directory or
file
(This used to be commit b2f9b8aa32426198aa21a703ab4f1d59fb77e512)

16 years agor8415: get rid of the last 2 runtime perl scripts
Andrew Tridgell [Wed, 13 Jul 2005 06:08:35 +0000 (06:08 +0000)]
r8415: get rid of the last 2 runtime perl scripts
(This used to be commit b775884474bd28c0c3d45546b1bf3ac52601ed24)

16 years agor8414: Some C++ friendlyness fixes - 'not' is apparently a keyword in C++.
Tim Potter [Wed, 13 Jul 2005 05:55:28 +0000 (05:55 +0000)]
r8414: Some C++ friendlyness fixes - 'not' is apparently a keyword in C++.
(This used to be commit bcfb3a45e4a5962fe763f8071d4458f4bd11605b)

16 years agor8413: mark exprbug() as fixed, and add a new bug
Andrew Tridgell [Wed, 13 Jul 2005 05:32:41 +0000 (05:32 +0000)]
r8413: mark exprbug() as fixed, and add a new bug
(This used to be commit c470c3ceac668635c83aa80730321ae7c41ad626)

16 years agor8412: cope with some lost messages in the ping test (netbsd gets this)
Andrew Tridgell [Wed, 13 Jul 2005 05:31:21 +0000 (05:31 +0000)]
r8412: cope with some lost messages in the ping test (netbsd gets this)
(This used to be commit fcf60823c6171ec109195cb8d61de5b0e02fd005)

16 years agor8411: we need to use mprVarToNumber() instead of var->integer now, to cope with
Andrew Tridgell [Wed, 13 Jul 2005 05:30:23 +0000 (05:30 +0000)]
r8411: we need to use mprVarToNumber() instead of var->integer now, to cope with
the 64 bit integer support

this fixes the exit status from smbscript
(This used to be commit f476e7aeec56a921fd286d3fe2cb0a229e57a9e8)

16 years agor8410: converted the newuser script to js
Andrew Tridgell [Wed, 13 Jul 2005 05:29:05 +0000 (05:29 +0000)]
r8410: converted the newuser script to js
(This used to be commit b90aa3c5a7cd7e91a8fc804c3cd9f2155761cf28)

16 years agor8409: fixed another error found on netbsd.
Andrew Tridgell [Wed, 13 Jul 2005 03:55:22 +0000 (03:55 +0000)]
r8409: fixed another error found on netbsd.

some of our torture code does its own timeout processing, which means
there is no event timer in the event context. To fix this gererically
I have added a 30 second timout to all select/epoll calls so the
callers timeout loop is guaranteed to run eventually
(This used to be commit 01e5aa146439f2dbf6c4133a0b5d910383a6576b)

16 years agor8408: its quite common in our code to free up a connection when we get an
Andrew Tridgell [Wed, 13 Jul 2005 03:25:36 +0000 (03:25 +0000)]
r8408: its quite common in our code to free up a connection when we get an
error, but sometimes a socket option may then happen on the NULL
socket. This has been handled by the individual libraries up to now,
but its cleaner to centralise it here
(This used to be commit d9864e1f9aac1fb19f054c2da996a5099e90941e)

16 years agor8407: fixed a bug left over from our old socket code.
Andrew Tridgell [Wed, 13 Jul 2005 03:01:26 +0000 (03:01 +0000)]
r8407: fixed a bug left over from our old socket code.

Thanks to lha for giving me a login on a netbsd machine to see this
(This used to be commit 4e66f682e4f1c31bbe9441a13af2c245db31433d)

16 years agor8406: make sure we give an error in ldbAdd() if any record fails
Andrew Tridgell [Wed, 13 Jul 2005 02:16:58 +0000 (02:16 +0000)]
r8406: make sure we give an error in ldbAdd() if any record fails
(This used to be commit 632f99017ded607c80022f730b6ec7e37bd13642)

16 years agor8405: update var.c from upstream
Andrew Tridgell [Wed, 13 Jul 2005 00:47:54 +0000 (00:47 +0000)]
r8405: update var.c from upstream
(This used to be commit 288c178d5fef80947590fd58e3c9b1fbcdddcdf6)

16 years agor8404: small upstream merges of appweb code
Andrew Tridgell [Wed, 13 Jul 2005 00:43:16 +0000 (00:43 +0000)]
r8404: small upstream merges of appweb code
(This used to be commit 205ff9a82bd51eae3c1400ea0a24fcf2a662e96f)

16 years agor8403: Reinstate linkpad.gif at Deryck's suggestion.
Tim Potter [Wed, 13 Jul 2005 00:43:00 +0000 (00:43 +0000)]
r8403: Reinstate linkpad.gif at Deryck's suggestion.

Install *.gif from swat/images when installing swat.
(This used to be commit 156e090c2c0ec2c7bdf66405c3742839b82fe757)

16 years agor8401: add a readme pointing to the upstream sources
Andrew Tridgell [Wed, 13 Jul 2005 00:17:02 +0000 (00:17 +0000)]
r8401: add a readme pointing to the upstream sources
(This used to be commit 2dcae5c98ca66a26fd6ae6d27cf7eb31cf16fee3)

16 years agor8400: separate out the mpr code, as it is in the upstream appweb sources
Andrew Tridgell [Wed, 13 Jul 2005 00:12:22 +0000 (00:12 +0000)]
r8400: separate out the mpr code, as it is in the upstream appweb sources
(This used to be commit 0e30b6e4cc9e70975d3179cfeddc4bfcc8c8fbb7)

16 years agor8399: move the ejs and esp code closer to the directory layout used by the
Andrew Tridgell [Wed, 13 Jul 2005 00:06:38 +0000 (00:06 +0000)]
r8399: move the ejs and esp code closer to the directory layout used by the
upstream sources. This makes it much easier to keep it up to date.

I will separate out the mpr code into lib/appweb/mpr next
(This used to be commit 52db7a052baeb0f11361ed69b71cb790039e3cc9)

16 years agor8397: merged an upstream fix for the expression bug tpot found yesterday
Andrew Tridgell [Tue, 12 Jul 2005 23:49:08 +0000 (23:49 +0000)]
r8397: merged an upstream fix for the expression bug tpot found yesterday
(This used to be commit 93712dd894b4ddaa2281034c754c0fa15f5ec34c)

16 years agor8394: Make sure the argument to ctype is*(3) macros are unsigned char as
Love Hörnquist Åstrand [Tue, 12 Jul 2005 22:22:59 +0000 (22:22 +0000)]
r8394: Make sure the argument to ctype is*(3) macros are unsigned char as
required by ISO C99.
(This used to be commit 56fd21c806e816cf4c3d23881f26474f858b45e2)

16 years agor8393: check for bswap16 and bswap32
Love Hörnquist Åstrand [Tue, 12 Jul 2005 22:20:12 +0000 (22:20 +0000)]
r8393: check for bswap16 and bswap32
(This used to be commit 707e3726d3b200edef7995eaa5b41a434d5ce9b1)

16 years agor8390: (smb_pam_start): move variable to scope within #ifdef to avoid warning
Love Hörnquist Åstrand [Tue, 12 Jul 2005 20:56:27 +0000 (20:56 +0000)]
r8390: (smb_pam_start): move variable to scope within #ifdef to avoid warning
for those PAM implementations w/o PAM_RHOST and/or PAM_TTY
(This used to be commit 95cb2d942f7cffc9131519c865656fb615395d04)

16 years agor8377: forgot an ldif test
Simo Sorce [Tue, 12 Jul 2005 13:37:11 +0000 (13:37 +0000)]
r8377: forgot an ldif test
(This used to be commit ed804262dc6abf01ffdeb03a36d94cf40b9f033c)

16 years agor8376: remove version info from configure.in
Stefan Metzmacher [Tue, 12 Jul 2005 13:05:50 +0000 (13:05 +0000)]
r8376: remove version info from configure.in

metze
(This used to be commit bfce35bf6341d02d8c01105564c05267134f8b0f)

16 years agor8375: - move from netr_StringLarge to lsa_StringLarge
Stefan Metzmacher [Tue, 12 Jul 2005 12:25:50 +0000 (12:25 +0000)]
r8375: - move from netr_StringLarge to lsa_StringLarge

- we need to use lsa_StringLarge in lsa_DnsDomainInfo, to make windows clients happy

metze
(This used to be commit 044d18f85f82b4ab5d71a6ae366052af0dbe8e7e)

16 years agor8374: avoid running flex and bison unless needed
Andrew Tridgell [Tue, 12 Jul 2005 12:12:03 +0000 (12:12 +0000)]
r8374: avoid running flex and bison unless needed

this should stop the files changes in svn for other developers
(This used to be commit 18d3deb777bd6aa4dd102fa2a2838d0afc2bd74c)

16 years agor8373: New wildcard matching code.
Simo Sorce [Tue, 12 Jul 2005 12:04:54 +0000 (12:04 +0000)]
r8373: New wildcard matching code.
This code applies correct ldap standard wildcard matching code
removes WILDCARD matching from tdb @ATTRIBUTES, that's now handled independently
adds some more tests for wildcard matching
fixes dn comparison code in ldb_match
(This used to be commit 4eb5863042011988d85092d7dde3d809aa15bd59)

16 years agor8372: - split out provisioning logic into a separate ejs library
Andrew Tridgell [Tue, 12 Jul 2005 11:46:34 +0000 (11:46 +0000)]
r8372: - split out provisioning logic into a separate ejs library

- added a provisioning web page
(This used to be commit 7476cb94132cf2849ec19360468904ca6fe8de2c)

16 years agor8371: the objectGUID is now stored in binary...
Stefan Metzmacher [Tue, 12 Jul 2005 11:45:29 +0000 (11:45 +0000)]
r8371: the objectGUID is now stored in binary...

metze
(This used to be commit b920b306b3813ba4a220249dbd7e443605074c9b)

16 years agor8370: remove the '$' from in the cn: attribute for computer and dc accounts
Stefan Metzmacher [Tue, 12 Jul 2005 10:59:12 +0000 (10:59 +0000)]
r8370: remove the '$' from in the cn: attribute for computer and dc accounts

metze
(This used to be commit 206f33778e8ff88b5eea493ead31342cc4405a22)

16 years agor8369: update the configure script I use
Andrew Tridgell [Tue, 12 Jul 2005 10:38:45 +0000 (10:38 +0000)]
r8369: update the configure script I use
(This used to be commit 1f1e8f7d0fb4f69bc4aaeefc94ab246729c446f2)

16 years agor8368: the type filed depends on the user being present or not
Stefan Metzmacher [Tue, 12 Jul 2005 09:40:34 +0000 (09:40 +0000)]
r8368: the type filed depends on the user being present or not

call ndr_print for each call

metze
(This used to be commit 0a07e4ef8d869d35ceb0761495e367077f2361ba)

16 years agor8367: another configure test needed by netbsd for heimdal
Andrew Tridgell [Tue, 12 Jul 2005 09:31:41 +0000 (09:31 +0000)]
r8367: another configure test needed by netbsd for heimdal
(This used to be commit 8ddf866438231192c4884877d9e80f0d525ee431)

16 years agor8365: fixed a problem on netbsd
Andrew Tridgell [Tue, 12 Jul 2005 09:09:42 +0000 (09:09 +0000)]
r8365: fixed a problem on netbsd
(This used to be commit d5d0769da93219dbd582139482d34b744b359b99)

16 years agor8364: fixed a valgrind bug spotted by simo
Andrew Tridgell [Tue, 12 Jul 2005 09:02:58 +0000 (09:02 +0000)]
r8364: fixed a valgrind bug spotted by simo
(This used to be commit ef804e8f36f1835d5d61f69565f1195a70f37e74)

16 years agor8363: - we need to correct the realm for the krbtgt/NETBIOSDOMAINREALM
Stefan Metzmacher [Tue, 12 Jul 2005 09:02:27 +0000 (09:02 +0000)]
r8363: - we need to correct the realm for the krbtgt/NETBIOSDOMAINREALM
  into krbtgt/DNS.DOMAIN.REALM too
  with this a windows client asks for the correct ticket when you try to login
  (but it's still not working correct, as some how we mess up the dns host name of the
   client and it asks for the wrong service principal)

- fix some compiler wranings
- fix some debug messages

metze
(This used to be commit c4c93eeec20ceb062d37f392139a5ef8bbb626f5)

16 years agor8362: change AC_INIT to the new version, improves failure reporting from autoconf
Love Hörnquist Åstrand [Tue, 12 Jul 2005 08:21:09 +0000 (08:21 +0000)]
r8362: change AC_INIT to the new version, improves failure reporting from autoconf

configure: WARNING: sys/mount.h: present but cannot be compiled
[...]
configure: WARNING:     ## ------------------------------------------ ##
configure: WARNING:     ## Report this to the AC_PACKAGE_NAME lists.  ##
configure: WARNING:     ## ------------------------------------------ ##

configure: WARNING: sys/mount.h: present but cannot be compiled
[...]
configure: WARNING:     ## ---------------------------------------- ##
configure: WARNING:     ## Report this to samba-technical@samba.org ##
configure: WARNING:     ## ---------------------------------------- ##
(This used to be commit f872686d83e3fbfaff89f2ff7ca2457c0a72d27c)

16 years agor8361: ctype is* macros needs unsigned arguments
Love Hörnquist Åstrand [Tue, 12 Jul 2005 08:17:34 +0000 (08:17 +0000)]
r8361: ctype is* macros needs unsigned arguments
(This used to be commit 07a7ab0a6af7224c4290043442a304baef656e94)

16 years agor8359: fix a shell warning
Stefan Metzmacher [Tue, 12 Jul 2005 08:03:46 +0000 (08:03 +0000)]
r8359: fix a shell warning

metze
(This used to be commit 9739aa75d27e854657c97208850f07d40adb4dbd)

16 years agor8358: Return an error message if js include path not set instead of silently
Tim Potter [Tue, 12 Jul 2005 07:17:04 +0000 (07:17 +0000)]
r8358: Return an error message if js include path not set instead of silently
failing.
(This used to be commit 797d9cf0c72992b2d5b9912d0f41873b6acc3195)

16 years agor8357: Call lp_load() so we can access the various lp_functions().
Tim Potter [Tue, 12 Jul 2005 07:15:22 +0000 (07:15 +0000)]
r8357: Call lp_load() so we can access the various lp_functions().
(This used to be commit f76a7ec2a2ef5db7ca7dced519474495d7ea02dc)

16 years agor8356: avoid warning from AC_CHECK_HEADER that file is present but cannot be compiled
Love Hörnquist Åstrand [Tue, 12 Jul 2005 07:12:46 +0000 (07:12 +0000)]
r8356: avoid warning from AC_CHECK_HEADER that file is present but cannot be compiled
for sys/mount.h
(This used to be commit f70e8b4f6ea0db0a7a9134848fefcd0389aabe56)

16 years agor8355: - added a vsprintf() function
Andrew Tridgell [Tue, 12 Jul 2005 06:57:25 +0000 (06:57 +0000)]
r8355: - added a vsprintf() function

- removed the --outputdir option from provision, as its not used any
  more (as ejs knows the real paths)
(This used to be commit abbf9c703c17c2edc2d978dade3619a96c38d0d9)

16 years agor8354: work around a js bug found by tpot
Andrew Tridgell [Tue, 12 Jul 2005 06:39:36 +0000 (06:39 +0000)]
r8354: work around a js bug found by tpot
(This used to be commit c6f7ace3333af31bc0d37264b3d8a75c79bb88e4)

16 years agor8353: Use a PNG instead of a GIF for padding. Also fixes a file not found
Tim Potter [Tue, 12 Jul 2005 06:31:17 +0000 (06:31 +0000)]
r8353: Use a PNG instead of a GIF for padding.  Also fixes a file not found
error as only PNG files were being installed by 'make installswat'.
(This used to be commit eaf9c455de3025155fb502fb4c93eefa4eb13f7e)

16 years agor8352: we need to override "setup directory" for the build farm hosts
Andrew Tridgell [Tue, 12 Jul 2005 06:17:40 +0000 (06:17 +0000)]
r8352: we need to override "setup directory" for the build farm hosts
(This used to be commit 1a80850d579504c9b236e591630173f0f316a876)

16 years agor8351: When finished sending call stream_terminate_connection() with a nice
Tim Potter [Tue, 12 Jul 2005 06:17:19 +0000 (06:17 +0000)]
r8351: When finished sending call stream_terminate_connection() with a nice
message instead of NULL.

Fix up some other terminate messgages to be consistent.
(This used to be commit c0428ef3376e439cdc04fea046738cecb7a01560)

16 years agor8350: fixed the --root option to provision
Andrew Tridgell [Tue, 12 Jul 2005 06:12:52 +0000 (06:12 +0000)]
r8350: fixed the --root option to provision
(This used to be commit 506e07d6e064375aaee20133d722b6b44d63b083)

16 years agor8349: as we don't use standard dirs, we need to create smb.conf before we run provision
Andrew Tridgell [Tue, 12 Jul 2005 06:08:14 +0000 (06:08 +0000)]
r8349: as we don't use standard dirs, we need to create smb.conf before we run provision
(This used to be commit c64a68cd40d644c273528d0433bdf554c11bcf00)

16 years agor8348: switch selftest to use the new provision script
Andrew Tridgell [Tue, 12 Jul 2005 06:06:30 +0000 (06:06 +0000)]
r8348: switch selftest to use the new provision script
(This used to be commit 52517e48ea4e5debdc5e6f4a934ce74833300e5f)

16 years agor8347: replace the perl provision script with a ejs script
Andrew Tridgell [Tue, 12 Jul 2005 06:02:20 +0000 (06:02 +0000)]
r8347: replace the perl provision script with a ejs script

I don't mind depending on perl at compile time, but I want to avoid
depending on it at runtime. This also will make it easy to add web
install wizard
(This used to be commit f27a68176984c6856fad2e3a028458eb96943f80)