summaryrefslogtreecommitdiffstats
path: root/source/aclocal.m4
Commit message (Collapse)AuthorAgeFilesLines
* Always rebuild modules after running ./configure (to preventJelmer Vernooij2003-03-251-1/+4
| | | | undefined symbol errors)
* Print list of builtin modules in 'smbd -b'Jelmer Vernooij2003-03-251-0/+1
|
* - Add support to auth/ for the new modules systemJelmer Vernooij2003-03-241-2/+2
| | | | - Quite some small fixes (also fixes the build)
* When using --with-static-modules=subsystem, don't build modules thatJelmer Vernooij2003-03-241-1/+1
| | | | can't be build
* Simplify modules interface and make it easier to buildJelmer Vernooij2003-03-241-9/+17
| | | | | complete subsystems as modules (--with-shared-modules=rpc,pdb_xml,pdb_ldap works now, for example)
* Put in the new modules system. It's now used by passdb and rpc. I willJelmer Vernooij2003-03-191-1/+1
| | | | put a doc about it in dev-doc later today.
* Put in some macros for the new modules systemJelmer Vernooij2003-03-181-0/+25
|
* Fixes from Paul Green and vorlon@debian.org for building shared librariesAndrew Bartlett2003-02-221-0/+64
| | | | (make it possible to build both shared and static) and -lcrypt handling.
* Improve detection of iconv(3) for various platforms. M4 code is similar to ↵Alexander Bokovoy2003-02-191-0/+92
| | | | what I use in Midgard for past few years, modified for Samba needs.
* Third-party configuration scripts may produce undesirable additions to ↵Alexander Bokovoy2003-02-151-0/+23
| | | | | | | | | | | | | CFLAGS/CPPFLAGS and LIBS/LDFALGS. In particular, they often don't check where the appropriate libraries were installed and pass -I/usr/include and -L/usr/lib as part of CFLAGS/LDFLAGS. While the latter isn't dangerous, passing system include directory through -I lead to change of its status in CPP from system to user-defined in many cases. This patch cleans up CFLAGS/CPPFLAGS from errorenous -I/usr/include and LIBS/LDFLAGS from -L/usr/lib. This is done as two m4 macros which are called before AC_OUTPUT.
* Add support to build plugins in source/Jelmer Vernooij2002-11-051-0/+359
|
* Remove obsolete acconfig.h - we now use comments in AC_DEFINE()Jelmer Vernooij2002-10-211-2/+2
|
* merging some autoconf changes from SAMBA_2_2Gerald Carter2002-06-241-0/+11
|
* Removed libtool.m4 includes.Tim Potter2002-05-101-838/+0
|
* Added SWAT i18n feature:Motonobu Takahashi2001-09-241-0/+407
| | | | | | | | | | | | | | | | | | | | | | | | | | | | TO enable configure with --with-i18n-swat to support this gettext is integrated and a new directories name "po" and "intl" are created. now these languages are supported: en - English (default) ja - Japanese po - Polish tr - Turkish To add your language, to create ${your_language}.po by translating source/po/en.po into your language is needed. some of html and image files of various language version are not included yet, though message catalogue files are installed. you need to copy files manually under ${swatdir}/lang/$ln/{help,images,included,using_samba} And also added a option to intall manual pages: of various lang version To enable configure with --with-manlangs but manual pages themself are not included yet.
* - added AC_HAVE_DECL() macro to aclocal.m4, so we can easily addAndrew Tridgell2001-05-301-0/+14
| | | | | | 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
* continued the split of the kernel level oplocks code into a moreAndrew Tridgell2000-06-101-13/+0
| | | | | | | | | modular form. In this pass I added oplock_irix.c and added a "struct kernel_oplocks" that describes a kernel oplock implementation. I also removed the maintainence mode from the Makefile. It was causing too much trouble. If someone really likes it they can keep a patch around to enable it themselves.
* fixes for broken IRIX header file merged from 2.0 branchHerb Lewis2000-03-311-0/+8
|
* IRIX include fixes.Jeremy Allison2000-03-311-0/+9
| | | | Jeremy.
* Adding libtool support to HEAD branch. We're going to need this forTim Potter2000-03-131-0/+432
| | | | | various things yet to be merged from TNG. The smbwrapper stuff should probably be ported across too.
* Makefile.in: Added maintainer mode fixes.Jeremy Allison1998-11-251-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | aclocal.m4: Added AC_LIBTESTFUNC. configure.in: Fixed -lsecurity -lsec problems. client.c: dos_ fixes. groupdb/aliasunix.c: Dead code removal. include/includes.h: Added default PRINTCAP_NAME. lib/genrand.c: dos_ fixes. lib/replace.c: Added strtoul. lib/system.c: dos_ fixes. lib/util.c: dos_ fixes. lib/util_sid.c: Signed/unsigned fixes. lib/util_str.c: removed bad const. locking/locking_slow.c: dos_ fixes. printing/printing.c: dos_ fixes. rpc_server/srv_samr.c: Dead code removal. rpc_server/srv_sid.c: global_myworkgroup defined with wrong size AGAIN ! smbd/dir.c: dos_ fixes. smbd/open.c: dos_ fixes. smbd/oplock.c: dos_ fixes. smbd/reply.c smbd/server.c smbd/service.c smbd/uid.c: dos_ fixes. Jeremy.
* auto-detect the right flag for the compiler to produce PIC codeAndrew Tridgell1998-10-081-0/+13
|
* more OSF1 changes as well as changes to allow us to use the standardAndrew Tridgell1998-10-071-0/+14
| | | | includes.h in wrapped.c, thus making porting much simpler
* check whether system type is the same as stored in the cache (fullAlexandre Oliva1998-09-241-0/+36
stand-alone macro, candidate for inclusion in the next release of autoconf) create configure flag --enable-maintainer-mode, that enables automatic rebuilding of configure from configure.in and aclocal.m4, and of config.h.in based on acconfig.h. This assumes autoconf and autoheader are available. Maintainer mode also introduces automatic dependency tracking of include files, but it depends on features provided by gcc and GNU make, so you must not enable maintainer mode if you are not using any of these