summaryrefslogtreecommitdiff
path: root/configure
Commit message (Expand)AuthorAgeFilesLines
* Fix for NthDegree, thanks for the info :)•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6399 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-191-1/+1
* Commit #999999, Brain learns to spell.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6391 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-1/+1
* $(FLAGS) was omitted from build line of a directory based module•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6390 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-1/+1
* Fix the dependency checking to not rebuild an entire module dir when one file...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6389 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-5/+6
* Change stuff around•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6380 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-8/+4
* YAY I FIXED IT!•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6379 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-2/+2
* Reverting this back to normality•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6378 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-2/+2
* Revert this back to sanity, still doesnt work tho•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6377 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-3/+3
* why wont this fucking thing find the includes?!•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6376 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-5/+5
* Whoops, wrong include dir•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6375 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-1/+1
* Folder -> Directory•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6374 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-1/+1
* Add output to ./configure -update to show when it finds a directory in the mo...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6373 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-0/+4
* Module splitting now works!•••Heres how it works (and m_spanningtree will make use of it): Create a directory in src/modules whos name starts m_, e.g. src/modules/m_spanningtree/ Inside it place .cpp files and headers. When configure runs, it scans for dirs matching the pattern, goes into them (note: it does not recurse, it only reads that dir) and compiles a list of .cpp files within. (all other file types are ignored). It then queries each .cpp file for its 'configure macros' as found in other modules, on a file by file basis. The makefile will then build a set of rules that will compile the whole lot together on a module by module basis, and "ar" the lot up then link the .a file (as in modes/) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6371 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-1/+1
* Fixes•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6370 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-0/+12
* Stuff to detect split modules in dirs - not tested yet•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6369 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-181-13/+47
* If you have a broken config, rerun full configure to fix•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6341 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-141-3/+2
* Move showhelp() into make/configure.pm•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6323 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-141-75/+0
* Slightly decraqed configure•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6322 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-141-109/+0
* Starting tidying up the configure script, and moving a lot of stuff into func...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6320 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-141-252/+16
* Fix broken ./configure macros broken by introduction of an eval•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6316 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-141-0/+5
* Improved detail in configure, and two new functions exec() and eval() are mor...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6312 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-141-3/+3
* Extra stuff to improve buildsystem, calculate lib and include dirs at configu...•••rather than erroring at buildtime like we used to. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6306 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-131-5/+8
* Someone forgot to make correct deps for timer.h. Fixed.•••Added InspTimer::CancelRepeat(), we can use this within the Tick method to cancel a repeat so that the timer is deleted after the tick, as DelTimer isnt safe within the Tick method git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6283 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-091-13/+13
* Merge buildsystem tweaks from darix:•••$ patch <inspircd-1.1b8_build_system.patch $ patch <inspircd-1.1b8_mod_permissions.patch Thanks :-) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6225 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2007-01-041-1/+1
* Part 1 of my plan to take over the world. pay it no attention.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6195 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-12-311-1/+1
* have configure detect SOMAXCONN and store it in a string define, SOMAXCONN_S•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6126 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-12-261-0/+3
* Add defaults for a ton of config vars, fix indentation, and add MAXCLIENTS_S ...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6125 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-12-261-0/+1
* Fix --with-max-clients not taking a parameter (reported by erich)•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6092 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-12-241-1/+1
* Removed a pointless check in ./configure --clean that made it only work with ...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6057 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar special2006-12-211-3/+1
* Use $^O rather than chomp(`uname`); - use perl's neat detection of the OS nam...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6031 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-12-171-29/+16
* Fix configure stuff AGAIN.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5983 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-12-131-16/+20
* On now-ancient freebsd 5.2.1, fix the compile by forcing the $(CC) var down t...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5982 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-12-131-2/+2
* Removal of AES, this is no longer required. (This also eliminates code that i...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5915 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-12-101-14/+7
* Fix for bug #177, generate the version string at configure time and write it ...•••then when running the ./inspircd, output the string, this way we dont need the source code to hand to report the version. (btw special, the doctor has cured you of perlprogramophobia) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5841 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-12-041-0/+13
* Apply CXXFLAGS patch from darix•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5774 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-11-191-1/+1
* Remove unused /usr/local/lib from helperfuncs.cpp include dirs etc, its not b...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5773 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-11-191-3/+3
* Add -fno-strict-aliasing to shut up gcc when building with -O2. We know what ...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5771 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-11-191-4/+4
* Add CXXFLAGS appending thing from darix•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5769 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-11-181-0/+2
* Enable removal of debug info for tiny systems•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5699 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-11-111-1/+15
* More pipe. Everyone likes pipe•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5629 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-11-021-27/+27
* Fix the makefile confusion removal of these headers creates•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5601 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-10-311-2/+2
* Update configure, remove a bunch of deprecated makefiles that have been just ...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5600 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-10-311-2/+2
* Test commit 2•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5598 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-10-311-0/+1
* Test commit•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5597 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-10-311-1/+0
* Test commit•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5579 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-10-291-0/+1
* Added unsupported warning for non-interactive configure. WE DONT SUPPORT NON-...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5543 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-10-261-0/+5
* Allow configuring of MAX_DESCRIPTORS by picking max number of clients•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5542 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-10-261-1/+2
* Remove the fucking optimization directive from configure, it's not supported,...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5538 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar w00t2006-10-261-39/+5
* Add $ModDep: special comment, similar to $CompileFlags and $LinkerFlags.•••$ModDep allows a module to specify headers it depends on, e.g. all of the headers which use u_listmode.h now do this: /* $ModDep: ../../include/u_listmode.h */ git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5534 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-10-231-2/+17
* Apply patch for bug#155 submitted by jamie•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5368 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2006-10-011-1/+1