aboutsummaryrefslogtreecommitdiffstats
path: root/util-src
Commit message (Collapse)AuthorAgeFilesLines
* util-src/Makefile: Add missing flags to building of util.signalMatthew Wild2009-10-191-1/+1
|
* MergeWaqas Hussain2009-10-023-7/+24
|\
| * util.encodings: Don't throw an error but return nil when passed nil or a ↵Matthew Wild2009-09-291-1/+5
| | | | | | | | non-string value
| * util.pposix: Compatibility with Solaris systems (thanks Filip)Matthew Wild2009-09-291-2/+12
| |
| * util.signal: Change ifdef to allow signal.kill() on Solaris (thanks Filip)Matthew Wild2009-09-291-1/+1
| |
| * Makefile: Don't combine variable export with assignment for compatibility ↵Matthew Wild2009-09-291-4/+11
| | | | | | | | with other shells (thanks Filip)
* | util.encodings: Removed a bit of unreachable code.Waqas Hussain2009-10-021-1/+0
| |
* | util.encodings: Included idn-free.h, which explicitly declares the idn_free ↵Waqas Hussain2009-10-021-0/+1
| | | | | | | | function.
* | util.encodings: Fixed: Last change was not ANSI C compatible.Waqas Hussain2009-10-021-1/+6
|/
* Makefile.win: Updated the windows Makefile with more appropriate paths.Waqas Hussain2009-09-221-2/+2
|
* util.encodings: Fixed an issue with cross-module memory deallocation ↵Waqas Hussain2009-09-221-4/+4
| | | | (crashes on some windows versions).
* pposix, mod_posix: Bump pposix version numberMatthew Wild2009-07-231-1/+1
|
* pposix: Add setgid() functionMatthew Wild2009-07-231-0/+63
|
* pposix: Change LOG_EMERG -> LOG_CRIT, which makes more sense, thanks to ↵Matthew Wild2009-07-211-1/+1
| | | | intosi for reporting and an initial patch
* Close std{in,out,err} when daemonizingvault/0.4.20.4.2Matthew Wild2009-05-221-2/+2
|
* Makefiles: Add signal.so to install targetsMatthew Wild2009-04-121-1/+1
|
* util.lsignal: Add lsignal library for catching POSIX signalsMatthew Wild2009-04-121-0/+387
|
* Makefiles, util.signal: Add lsignal library for catching POSIX signalsMatthew Wild2009-04-121-1/+6
|
* 0.3->0.4Matthew Wild2009-03-203-3/+3
|
* pposix: Standardize error messagesMatthew Wild2009-03-031-7/+9
|
* pposix: Small fix for copyright noticeMatthew Wild2009-03-031-1/+1
|
* Make the code actually build.Tobias Markmann2009-02-221-13/+13
|
* Added missing code.Tobias Markmann2009-02-221-1/+28
|
* Adding setrlimits() binding.Tobias Markmann2009-02-221-0/+82
|
* util.pposix: Add getuid/setuid (we don't use them yet)Matthew Wild2009-02-151-1/+80
|
* Use $CC, $LD in Makefile. Add --c-compiler, --linker flags to ./configure ↵Matthew Wild2009-02-141-7/+8
| | | | script. Add --lflags to ./configure script. Thanks to Lorenzo for the initial patch!
* util.pposix: Fix incompatible pointer type compiler warningsMatthew Wild2009-02-131-5/+6
|
* Licensing/version updates for some files (forgot to commit, doh...)Matthew Wild2009-02-023-331/+301
|
* Remove redundant linking in util-src modules' MakefileMatthew Wild2009-02-021-2/+2
|
* pposix: Remove debug lineMatthew Wild2009-01-161-1/+0
|
* pposix: Add syslog_setmask (use config: minimum_log_level = 'warn' etc.)Matthew Wild2009-01-161-0/+17
|
* pposix: Add _NAME and _VERSIONMatthew Wild2009-01-161-0/+8
|
* mod_posix/pposix: Fix reporting of incorrect PID on daemonization. Log ↵Matthew Wild2009-01-151-8/+21
| | | | correct PID, and support writing a pidfile (pidfile = '/path/to/prosody.pid' in config). Added getpid() to pposix and improved function names.
* mod_posix: Support for logging to syslog (log = 'syslog' in config)Matthew Wild2009-01-151-0/+129
|
* Makefile fix for clean targetMatthew Wild2008-12-281-0/+1
|
* Fixed util.encodings.base64.decode to not truncate results when encountering ↵Waqas Hussain2008-12-081-3/+5
| | | | an '=' before the end of the given input.
* Remove some debugging from pposix.cMatthew Wild2008-12-061-2/+0
|
* Add posix support library, and adjust makefiles for itMatthew Wild2008-12-062-2/+101
|
* Fix Makefile to link with Lua againvault/0.1.00.1.0Matthew Wild2008-12-031-2/+2
|
* Fix configure to save LFLAGS, and also set proper defaults for all sensible OSesMatthew Wild2008-12-031-1/+1
|
* Making makefile work under OS X finally. Yeah OS X's gcc is a little bit ↵Tobias Markmann2008-12-031-5/+10
| | | | strange.
* and the C files tooMatthew Wild2008-12-032-0/+40
|
* Use install to strip symbolsMatthew Wild2008-11-301-2/+1
|
* Potential fixes for building on Mac OSXMatthew Wild2008-11-301-3/+3
|
* Add -fPIC to util-src/MakefileMatthew Wild2008-11-291-2/+2
|
* Forced merge.Tobias Markmann2008-11-291-8/+11
|\
| * Add a top-level Makefile and ./configure script. Update util-src Makefile ↵Matthew Wild2008-11-291-7/+10
| | | | | | | | for this.
* | Use unsigned int instead of uint because uint is already in use on OS X.Tobias Markmann2008-11-281-3/+1
| |
* | To use free you should include stdlib.h rather than malloc.h according to ↵Tobias Markmann2008-11-281-1/+1
| | | | | | | | man page of free() and various C reference websites.
* | Do idna_to_ascii when building own response.Tobias Markmann2008-11-281-2/+2
|/