summaryrefslogtreecommitdiffstats
path: root/source/configure.in
Commit message (Collapse)AuthorAgeFilesLines
...
* /tmp/cvsVTEaY5Gerald Carter2001-08-241-83/+44
|
* Fixed detection of CUPS. We need to check for the presence of the cupsTim Potter2001-08-231-1/+15
| | | | header files as well as libcups.
* Added Mike Davidsons Tru64 ACL patch.Jeremy Allison2001-08-101-2/+2
| | | | Jeremy.
* merge from 2.2Gerald Carter2001-08-071-9/+18
|
* Stop HP/UX building shared libraries for the moment ...Richard Sharpe2001-08-061-1/+1
|
* Put HPUX on mmap blacklist.Jeremy Allison2001-08-021-0/+2
| | | | Jeremy.
* changed --with-profile to --with-profiling-data to "stop the madness!"Gerald Carter2001-08-021-2/+2
| | | | | | | | | | of people somehow thinking this was related to user profiles. Hope this is ok Herb. jerry
* Rewrite of winbind autoconf fragment.Tim Potter2001-08-011-17/+50
| | | | | | | | | - can now use --with-winbind to force compilation on systems that are not linux or solaris (-: - don't compile winbind if the unix domain socket test fails - compile right number of bits if --with-pam used
* Fix from Michael Davidson <md@caldera.com> for DEC OSF/1 ACLs (ie.Jeremy Allison2001-07-261-0/+5
| | | | | Digital UNIX). Jeremy.
* a better test for unix domain socketsAndrew Tridgell2001-07-251-1/+20
|
* added a --with-libiconv=BASEDIR/ option to allow easier use of anAndrew Tridgell2001-07-251-2/+24
| | | | alternative iconv library
* Store winbindd in the sbin directory. Make the winbind pam module also asTim Potter2001-07-241-2/+5
| | | | | | | | a sbin program. Currently the pam and nss modules are installed into @prefix@/sbin - I'm not sure whether this is a good idea or not. Perhaps they should be left in the build tree and copied across as needed by hand or a packaging tool.
* Another fine mess, err, fine tune to the Slowaris build ...Richard Sharpe2001-07-241-2/+1
|
* Make the Slowaris build a bit nicer with ccRichard Sharpe2001-07-241-1/+1
|
* Fix some fscked up things that I added to the Solaris CC build of shared libsRichard Sharpe2001-07-231-1/+1
|
* One more possible fix for Solaris CC and GCCRichard Sharpe2001-07-231-1/+2
|
* Fix the POOBAD_CC on Slowaris so we can handle things correctly ...Richard Sharpe2001-07-231-1/+11
| | | | Lets see how this goes.
* Try and build shared on SCO. Assume that it is like others, but usesRichard Sharpe2001-07-231-0/+2
| | | | -KPIC, which it does!
* OK, I think I have fscking IRIX figured out for building PIC code.Richard Sharpe2001-07-231-1/+5
| | | | You have to check which fsking compiler is used and do different things!
* Fix the PIC flag for IRIXRichard Sharpe2001-07-181-1/+1
|
* Fix from bernd@arresum.inka.de for broken krb configure.Jeremy Allison2001-07-161-4/+18
| | | | Jeremy.
* A few tweaks around linking libsmbclientRichard Sharpe2001-07-141-2/+3
|
* Fix a stupid error in passing options to CC under AIXRichard Sharpe2001-07-121-1/+1
|
* A serious set of changes to build libsmbclienmt. Copied much ofthis fromRichard Sharpe2001-07-111-26/+29
| | | | CUPS.
* Change the order of the -fPIC and -KPIC tests to ensure that UnixWareRichard Sharpe2001-07-101-6/+7
| | | | is handled.
* removed remnants of libtoolAndrew Tridgell2001-07-081-2/+0
|
* The big character set handling changeover!Andrew Tridgell2001-07-041-0/+17
| | | | | | | This commit gets rid of all our old codepage handling and replaces it with iconv. All internal strings in Samba are now in "unix" charset, which may be multi-byte. See internals.doc and my posting to samba-technical for a more complete explanation.
* Removed the default addition of /include to the directory given inJeremy Allison2001-07-031-1/+1
| | | | | --with-sslinc. Should allow building on RH7.1 when set correctly. Jeremy.
* Fixed quoting bug - shell programming sucks.Tim Potter2001-07-031-1/+1
|
* Only build the pam_winbind module if --with-pam used.Tim Potter2001-07-021-3/+8
| | | | | Replaced extra shell variable with_pam_for_crypto with a check against $with_pam
* Not all OSs have setbuffer, so we better check for it.Andrew Bartlett2001-07-021-0/+2
| | | | Andrew Bartlett
* These changes cause the libsmbclient stuff to always build a non-shared ↵Richard Sharpe2001-06-291-1/+7
| | | | | | library and to build a shared library only for the four OSes that we currently like. I will probably add HP/UX and AIX support based on the CUPS stuff soon ...
* Ensured all the system calls in msdfs.c go through the vfs layer.Jeremy Allison2001-06-291-1/+1
| | | | | | Added vfs calls to symlink() and readlink() with appropriate configure checks. Jeremy.
* Add check for working AF_LOCAL sockets, which are borkenMartin Pool2001-06-261-0/+10
| | | | | on RH7.0 with _LARGEFILE64_SOURCE, and probably not present on non-Unix systems like VMS.
* fixed usage of socklen_t and also tidied up SIG_ATOMIC_T, using a typedef ↵Andrew Tridgell2001-06-251-0/+13
| | | | instead of a define
* Added patches to remove Linux specific XFS ACLs. These are now handled by theJeremy Allison2001-06-181-10/+1
| | | | | | generic Linux ACL code. rpc_server/srv_samr_nt.c: Don't delete a policy handle before it's created. Jeremy.
* Added getconf flags for RH7.1 lfs support. Changed while() to a for()Jeremy Allison2001-06-061-2/+2
| | | | | loop in Simo's code (removes much grp = gep->next code). Jeremy.
* Compile fix for wbinfo on solaris.Tim Potter2001-06-041-1/+1
|
* Added a --with/without winbind option to configure. The default is toTim Potter2001-06-011-8/+26
| | | | | | compile winbind on supported systems but this may be disabled using --without-winbind. Using --with-winbind on unsupported systems has no effect.
* - added AC_HAVE_DECL() macro to aclocal.m4, so we can easily addAndrew Tridgell2001-05-301-22/+8
| | | | | | tests for a fn or variable being defined in headers - used this to add prototypes for asprintf and vasprintf on systems that don't have them
* Try to fix build by adding autoconf tests for pam headers.Jeremy Allison2001-05-221-0/+2
| | | | Jeremy.
* Ohh boy, I should be working on lots of other things, but I am pissed off, soRichard Sharpe2001-05-171-4/+4
| | | | | | I needed to get down and dirty and do some coding etc ... Change -fpic to -fPIC ... Many people suggest that this is better ...
* Added winbind programs to build for supported systems (i.e linux andTim Potter2001-05-161-3/+20
| | | | | | solaris) so the autobuilder can have a crack at it. Cosmetic fix for large file support ./configure output.
* Fixed SHM_R/SHM_W warnings by moving sys/ipc.h and sys/shm.h into includes.hJeremy Allison2001-05-031-2/+2
| | | | | | and using autoconf tests. Added "restrict acl with mask" parameter. Jeremy.
* added more complete C99 snprintf testAndrew Tridgell2001-05-011-2/+7
|
* - added test for vasprintfAndrew Tridgell2001-04-281-1/+1
| | | | | | | | - cleaned up GNUC printf attribute macros - added enum handling in mkproto - removed non-vararg code - made slprintf and vslprintf just macros for snprintf and vsnprintf - don't need slprintf code any more
* added asprintf testAndrew Tridgell2001-04-281-1/+1
|
* added test for C99 compliant vsnprintfAndrew Tridgell2001-04-271-0/+19
|
* fixed typoAndrew Tridgell2001-04-271-1/+1
|
* Fixed REPLACE_GETPASS test.Jeremy Allison2001-04-261-1/+1
| | | | Jeremy.