Log of /eggdrop1.6/configure
Parent Directory
|
Revision Log
|
Revision Graph
Revision
1.172 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Oct 2 17:34:33 2011 UTC
(9 years, 3 months ago)
by
pseudo
Branch:
MAIN
CVS Tags:
HEAD
Changes since
1.171: +0 -57 lines
Diff to
previous 1.171
Removed -mwin32 on Windows. It's no longer necessary and causes problems with Cygwin 1.7.
Revision
1.169 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Apr 1 12:10:08 2011 UTC
(9 years, 9 months ago)
by
pseudo
Branch:
MAIN
Changes since
1.168: +7 -5 lines
Diff to
previous 1.168
Fixed dns.mod on QNX6/Mac OS X/Solaris. Rewrote dns.mod's autoconf checks to detect the resolver library properly on Darwin/Solaris/QNX6.
Backport of the 1.8 patch.
Revision
1.166 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Jun 29 15:52:23 2010 UTC
(10 years, 6 months ago)
by
thommey
Branch:
MAIN
Changes since
1.165: +119 -4 lines
Diff to
previous 1.165
Overwrite the Tcl notifier with our own version of it if possible.
Integrate Tcl events and sockets into our own eventloop and socketlist.
Don't fork() before initializing Tcl anymore with overwritten notifier.
Replace max-dcc with a dynamically enlarging array, limited by the new setting max-socks.
Add two configure checks against the Tcl library to check if the notifier can be replaced.
Revision
1.165 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Mar 14 18:21:59 2010 UTC
(10 years, 10 months ago)
by
pseudo
Branch:
MAIN
Changes since
1.164: +49 -58 lines
Diff to
previous 1.164
Added a configure option to set the handlen
Added a configure option to enable dns debugging and made it default for make debug.
Removed obsolete check for broken sscanf from configure.
Revision
1.164 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Thu Feb 18 09:52:29 2010 UTC
(10 years, 11 months ago)
by
pseudo
Branch:
MAIN
Changes since
1.163: +36 -1 lines
Diff to
previous 1.163
Changed the definition of the 'Function' type to avoid data loss with functions returning 64-bit types. 64-bit builds will no longer crash due to pointers being truncated to 32 bits.
Created new function pointer type 'IntFunc' for use only with functions returning int.
Fixes Bugzilla Bug # 485 "64-bit eggdrop builds crash on some systems"
Revision
1.163 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Jan 26 03:12:15 2010 UTC
(10 years, 11 months ago)
by
tothwolf
Branch:
MAIN
Changes since
1.162: +5433 -8517 lines
Diff to
previous 1.162
Added runtime check using Tcl_GetCurrentThread() to autodetect a threaded Tcl library when compiled and linked against Tcl 8.1 and later.
Replaced EGG_TCL_ENABLE_THREADS and EGG_TCL_CHECK_THREADS autoconf macros with EGG_TCL_CHECK_GETCURRENTTHREAD.
Revision
1.161 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Thu Jul 10 10:56:22 2008 UTC
(12 years, 6 months ago)
by
tothwolf
Branch:
MAIN
Changes since
1.160: +3 -10 lines
Diff to
previous 1.160
Removed Solaris RANDMAX autoconf hack.
Added proper preprocessor checks for RANDOM_MAX and RAND_MAX.
Added autoconf tests and preprocessor checks for rand() and lrand48().
Simplified randint macro to make it faster.
Added argument sanity checking for tcl_rand() / Tcl [rand] command.
Added min:max value sanity checking in irc.mod set_delay(). This should match the aop-delay behavior documented in eggdrop.conf now.
Revision
1.160 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Thu Jul 10 10:06:53 2008 UTC
(12 years, 6 months ago)
by
tothwolf
Branch:
MAIN
Changes since
1.159: +18 -18 lines
Diff to
previous 1.159
More minor autoconf changes.
Context and ContextNote should use 'do {} while (0)' instead of '{}'.
Put Context init code into an #ifdef DEBUG_CONTEXT block.
Revision
1.158 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Jul 4 03:17:25 2008 UTC
(12 years, 6 months ago)
by
tothwolf
Branch:
MAIN
Changes since
1.157: +230 -13 lines
Diff to
previous 1.157
Require autoconf 2.60 now.
Added AC_PRESERVE_HELP_ORDER macro to configure.ac
Added new autoconf macros to aclocal.m4 and configure.ac: EGG_DEBUG_ENABLE EGG_DEBUG_DEFAULTS EGG_DEBUG_OPTIONS EGG_DEBUG_CFLAGS EGG_ENABLE_DEBUG_CONTEXT
Added new configure options: --enable-debug --enable-debug-mem --enable-debug-assert --enable-debug-context
Replaced ENABLE_STRIP define with DEBUG
DEBUG_CONTEXT is now defined in config.h instead of eggdrop.h
Refactored DEBUG and DEBUG_CONTEXT conditional code in main.c.
Don't default set unlimited core file size for non-debug builds.
Revision
1.157 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Jul 4 02:41:42 2008 UTC
(12 years, 6 months ago)
by
tothwolf
Branch:
MAIN
Changes since
1.156: +102 -8 lines
Diff to
previous 1.156
Added EGG_APPEND_VAR and EGG_CHECK_ICC autoconf macros to aclocal.m4.
Replaced autoconf 'var="$var <string>"' with EGG_APPEND_VAR macro.
Replaced no_pipe and no_wall variable hacks with a proper test for the Intel C Compiler (icc).
Put '-pipe' in CFLAGS not CC.
Added GPL header to AH_TOP macro in configure.ac for config.h.in.
Removed unused std_args.h header check and HAVE_STD_ARGS_H conditionals.
Revision
1.156 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Jul 4 01:52:55 2008 UTC
(12 years, 6 months ago)
by
tothwolf
Branch:
MAIN
Changes since
1.155: +141 -137 lines
Diff to
previous 1.155
Refactored root Makefile.in variables.
Removed unnecessary '-g' flag from LD variables (-g is ignored).
Renamed DEBCFLAGS to DEBCFLGS
Moved -g3 compiler flag to DEBCFLGS variable.
Removed double quoting "`command`" in autoconf macro tests.
Changed autoconf macro 'test ! foo = bar' tests to 'test foo != bar'. Both are portable but '!=' is now more common in autoconf macros and is easier to read.
Revision
1.155 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Wed Jul 2 07:31:27 2008 UTC
(12 years, 6 months ago)
by
tothwolf
Branch:
MAIN
Changes since
1.154: +41 -33 lines
Diff to
previous 1.154
Fixed EGG_PROG_HEAD_1 autoconf macro cache checking. You can't use AC_MSG_RESULT() within AC_CACHE_VAL().
Moved --enable-strip configure check from EGG_PROG_STRIP to it's own macro: EGG_ENABLE_STRIP()
Revision
1.154 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Wed Jun 18 09:42:50 2008 UTC
(12 years, 7 months ago)
by
tothwolf
Branch:
MAIN
Changes since
1.153: +194 -38 lines
Diff to
previous 1.153
Fixed broken EGG_TCL_CHECK_HEADER macro Tcl header 'not found' message.
Don't use "${var-x}" in place of "x$var". The use of "x$var" is more portable and standard practice in autoconf macros.
Added AC_CANONICAL_* macros to EGG_OS_VERSION in preparation to move from our old 'uname -s' and 'uname -r' hacks to a canonical triplet.
Revision
1.152 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Wed Jun 18 06:03:20 2008 UTC
(12 years, 7 months ago)
by
tothwolf
Branch:
MAIN
Changes since
1.151: +4505 -4192 lines
Diff to
previous 1.151
Completely rewrote EGG_TCL_CHECK_THREADS autoconf macro to make --enable-tcl-threads and --disable-tcl-threads threaded Tcl library configure options more robust.
Fixed --enable-tcl-threads configure option so it will enable threaded Tcl library support even if we don't autodetect a threaded Tcl library.
Explicitly offer both --enable-tcl-threads and --disable-tcl-threads configure options that can forcefully enable or disable threaded Tcl library support. Previously either worked but only showing --disable-tcl-threads in --help could be confusing.
Added code to print an explicit message to show if threaded Tcl library support will be enabled or not.
We no longer link against pthread library unless threaded Tcl library support is enabled.
Revision
1.144 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Jul 9 22:00:18 2006 UTC
(14 years, 6 months ago)
by
wcc
Branch:
MAIN
Changes since
1.143: +2 -1 lines
Diff to
previous 1.143
* Revert to old config.guess / config.sub. It was causing problems on a few
OS's. I just want to get 1.6.18 out, so I'll stick this back in as soon
as it is.
Revision
1.131 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Aug 24 03:41:04 2004 UTC
(16 years, 5 months ago)
by
wcc
Branch:
MAIN
Changes since
1.130: +10 -10 lines
Diff to
previous 1.130
* Ran autoconf, and made a misc/runautotools to automate updating all
of the configure scripts.
Revision
1.128 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Mon Aug 9 03:19:01 2004 UTC
(16 years, 5 months ago)
by
wcc
Branch:
MAIN
Changes since
1.127: +2 -2 lines
Diff to
previous 1.127
* Much needed updates to the man page (its been 4 years!).
* Misc doc stuff.. probably more coming.
Revision
1.127 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Jul 25 22:16:43 2004 UTC
(16 years, 6 months ago)
by
wcc
Branch:
MAIN
Changes since
1.126: +2 -2 lines
Diff to
previous 1.126
* Ran autoconf.
(In case anyone is wondering.. no, I'm not "forgetting".. I run it on it's
own commit so that the "created from configure.ac revision XX" revision
number is correct.. that way we can make sure it's always current.)
Revision
1.122 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Jun 15 07:20:54 2004 UTC
(16 years, 7 months ago)
by
wcc
Branch:
MAIN
Changes since
1.121: +428 -0 lines
Diff to
previous 1.121
* Removed 'eggautoconf' crao; moved to autoconf 2.59 for modules. This
should fix some of the module-configure/make config bugs. Couple more
commits coming in a sec. Test me (although already tested pretty well).
Needs to at least be tested on Cygwin, and I don't have access to
Cygwin ATM.
Revision
1.120 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Jun 4 16:41:08 2004 UTC
(16 years, 7 months ago)
by
wcc
Branch:
MAIN
Changes since
1.119: +1 -1 lines
Diff to
previous 1.119
- Don't let .tcl mkdir create duplicate filedb entries.
* Found by: fabulous - Patch by: Wingman
Revision
1.119 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Jun 4 14:07:48 2004 UTC
(16 years, 7 months ago)
by
wcc
Branch:
MAIN
Changes since
1.118: +439 -92 lines
Diff to
previous 1.118
- Fixed a compile error related to varargs when using old Tcl versions.
* Found by: Thomas Neumayer - Patch by: Wcc
- Fixed a compile error on systems that don't have socklen_t.
* Found by: Brad Edwards - Patch by: Wcc
-- .cvsignore stuff for autoscan.
Revision
1.118 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Thu Jun 3 14:10:18 2004 UTC
(16 years, 7 months ago)
by
wcc
Branch:
MAIN
Changes since
1.117: +2 -2 lines
Diff to
previous 1.117
* Fixed some indenting.
* Make head -n 1, if existant, take precedence over -1 to suppress
warnings on newer versions of head. This will not affect systems
that do not support -n 1.
* Help stuff.
Revision
1.112 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Jan 18 02:11:39 2004 UTC
(17 years ago)
by
wcc
Branch:
MAIN
Changes since
1.111: +29 -14 lines
Diff to
previous 1.111
* More build process/build process documentation updates and portability
stuff.
* Changed trace (back?) to +t as it should be. This is a botnet command
and should be set to 'botnet master' instead of all partyline users.
Revision
1.111 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Mon Jan 12 07:49:17 2004 UTC
(17 years ago)
by
wcc
Branch:
MAIN
Changes since
1.110: +244 -2 lines
Diff to
previous 1.110
* Use AC_FUNC_SELECT_ARGTYPES() macro to fix select() warnings on
several OS's. This is a better solution than the previous "OS_HACKS"
#ifdefs.
Revision
1.110 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Jan 9 05:56:35 2004 UTC
(17 years ago)
by
wcc
Branch:
MAIN
Changes since
1.109: +3 -3 lines
Diff to
previous 1.109
* Yay, 2004 copyright. That sucked.. I need to write a script to do
that... *pops knuckles and stretches*.
Revision
1.106 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Jan 9 01:36:38 2004 UTC
(17 years ago)
by
wcc
Branch:
MAIN
Changes since
1.105: +797 -786 lines
Diff to
previous 1.105
* Fixes/updates for newer autoconf versions. This should fix the
permissions errors.
* Removed --disable-cc-optimization.
Revision
1.99 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sat Nov 1 23:26:56 2003 UTC
(17 years, 2 months ago)
by
wcc
Branch:
MAIN
Changes since
1.98: +3 -162 lines
Diff to
previous 1.98
* Remove IPv6 for now. I know we've discussed this on the lists and in
#eggdrop/#eggdev on Undernet, and I think we pretty much agreed (as far
as 'agreeing' goes on eggdev anyway ;p) to ditch this hacked togeather
code and get Ian's code tested and put that in an upcoming release instead.
IPv6 realllyyyyyyy screwed up .15. I'm basically ready to release .16..
can anyone think of anything else that needs to be done? Bugzilla is dead
and i'm not sure if eggdev's up or not, but changes appears to work. The
lists have been down alot lately. Anyway, e-mail me if I forgot any little
pieces, but I don't think I did. -- Wcc
Revision
1.97 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Jun 10 15:16:07 2003 UTC
(17 years, 7 months ago)
by
stdarg
Branch:
MAIN
Changes since
1.96: +4 -0 lines
Diff to
previous 1.96
* Make room for the core file if we're not stripping the files
* When I do cvs diff config.h.in, there's one of those id tags in it.. isn't that wrong?
Revision
1.96 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Jun 10 04:27:19 2003 UTC
(17 years, 7 months ago)
by
stdarg
Branch:
MAIN
Changes since
1.95: +888 -288 lines
Diff to
previous 1.95
* Removed stripping, added --enable-strip option to configure. Needs testing
since I don't know much about autoconf!
Revision
1.91 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Wed Mar 5 04:32:24 2003 UTC
(17 years, 10 months ago)
by
wcc
Branch:
MAIN
Changes since
1.90: +7 -368 lines
Diff to
previous 1.90
* Reverted C99 snprintf() stuff for now. This patch needed further testing
before commit. It is creating many header conflicts, etc.
Revision
1.88 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Feb 28 04:01:36 2003 UTC
(17 years, 10 months ago)
by
wcc
Branch:
MAIN
Changes since
1.87: +3 -0 lines
Diff to
previous 1.87
* We should compile on Tru64 UNIX now. The problem was due to snprintf()
and vsnprintf() apparently being in a shared 'compatability' library on
hese systems (from what I could get out of their horrible documentation).
We will now use Eggdrop's snprintf() and vsnprintf() compatablity
functions for OSF1/Tru64/Digital UNIX. Could anyone with access to a Tru64
system please verify that Eggdrop compiles fine on it now?
Reported by Shane.
Revision
1.79 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Mar 12 19:11:32 2002 UTC
(18 years, 10 months ago)
by
guppy
Branch:
MAIN
CVS Tags:
eggdrop1_6_11,
v2_0
Changes since
1.78: +2 -2 lines
Diff to
previous 1.78
./configure's output was broken when showing the line telling users to either make config or make iconfig because of a comma in the string
Revision
1.73 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Dec 4 20:12:54 2001 UTC
(19 years, 1 month ago)
by
guppy
Branch:
MAIN
Changes since
1.72: +615 -607 lines
Diff to
previous 1.72
added nakee's patch for --disable-cc-optimize but renamed it to --disable-cc-optimzation -- I also updated the compiling faq to tell people about this option.
Revision
1.62 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Jul 1 07:19:38 2001 UTC
(19 years, 6 months ago)
by
guppy
Branch:
MAIN
Changes since
1.61: +421 -411 lines
Diff to
previous 1.61
tothwolf's lastest aclocal.m4 patch .. lets test this on as many systems as possible until 1.6.5 is released .. any problems, i'll wank it but from what I can see, this is needed to clean up our mess :P~
Revision
1.61 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Jun 29 13:58:53 2001 UTC
(19 years, 6 months ago)
by
guppy
Branch:
MAIN
Changes since
1.60: +2 -2 lines
Diff to
previous 1.60
Silly guppy, making bugs that crash the bot <g> .. 1.6.5 is looking nice .. many many many bug fixes and even a few legacy bugs got fixed .. what else can we fix in a week?
Revision
1.59 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Mon Jun 25 21:32:07 2001 UTC
(19 years, 7 months ago)
by
guppy
Branch:
MAIN
Changes since
1.58: +140 -86 lines
Diff to
previous 1.58
added a fixed up version of Kirben's pthreads patch .. also I forgot an update for his previous cygwin_bind patch
Revision
1.57 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Jun 22 05:49:30 2001 UTC
(19 years, 7 months ago)
by
guppy
Branch:
MAIN
Changes since
1.56: +61 -15 lines
Diff to
previous 1.56
I added my libsafe_hacks patch because I want to get a few people to test it tonight also, I have a patch I'm trying to hack into eggdrop
Revision
1.48 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Oct 1 19:19:20 2000 UTC
(20 years, 3 months ago)
by
fabian
Branch:
MAIN
Changes since
1.47: +184 -131 lines
Diff to
previous 1.47
fabian: applied SuperS' osfix3 patch. Fixed tcl configuration caching (should have made a seperate patch, but I'm too lazy. Someone please fix me ;)).
Revision
1.47 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Oct 1 19:14:41 2000 UTC
(20 years, 3 months ago)
by
fabian
Branch:
MAIN
Changes since
1.46: +151 -107 lines
Diff to
previous 1.46
fabian: applied TheUnknown's patch solaris-config. Adjusted to cache result.
Revision
1.38 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Jul 9 14:23:34 2000 UTC
(20 years, 6 months ago)
by
fabian
Branch:
MAIN
Changes since
1.37: +119 -99 lines
Diff to
previous 1.37
updates to the modules_cygwin patch, 963151788 -- I forgot to rebuild configure
Revision
1.10 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Thu Nov 11 21:44:55 1999 UTC
(21 years, 2 months ago)
by
fabian
Branch:
MAIN
Changes since
1.9: +109 -108 lines
Diff to
previous 1.9
dns_fixagain.patch which fixes a bug in blocking dns code and turns on debugmem to default on linux
Revision
1.5 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Oct 10 00:56:32 1999 UTC
(21 years, 3 months ago)
by
fabian
Branch:
MAIN
Changes since
1.4: +85 -73 lines
Diff to
previous 1.4
yet another tree merge and fixups... let's see how long it takes until I learn this stuff
This form allows you to request diffs between any two revisions of this file.
For each of the two "sides" of the diff,
select a symbolic revision name using the selection box, or choose
'Use Text Field' and enter a numeric revision.