aboutsummaryrefslogtreecommitdiff
path: root/lang/erlang14/files
Commit message (Collapse)AuthorAgeFilesLines
* Back when Erlang R15 was imported, lang/erlang14 was added as aJimmy Olgeni2013-01-3011-263/+0
| | | | | | | | | safety fallback option. Since no issues came up with R15 it can now be removed. Notes: svn path=/head/; revision=311243
* Move the rc.d scripts of the form *.sh.in to *.inDoug Barton2012-08-051-0/+0
| | | | | | | | | Where necessary add $FreeBSD$ to the file No PORTREVISION bump necessary because this is a no-op Notes: svn path=/head/; revision=302141
* In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-1/+1
| | | | | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other. Notes: svn path=/head/; revision=289156
* Do not include util.h.Jimmy Olgeni2011-10-171-0/+15
| | | | | | | | | | | | If net/libbgpdump was installed then the Erlang build would pick up a stray util.h and fail to build. No PORTREVISION bump required: existing installations are just fine. Reported by: Kurt Jaeger <pi opsec eu> Notes: svn path=/head/; revision=283721
* Upgrade to version R14B03.Jimmy Olgeni2011-05-251-33/+0
| | | | Notes: svn path=/head/; revision=274651
* In FreeBSD jails, the source and destination address of connectionsJimmy Olgeni2010-12-231-0/+33
| | | | | | | | | | | | | | to localhost are changed to be the IP address of the jail. Consider connections from the host's IP address to itself (e.g., the source and destination address match) to be local for the access control checks. Reported by: <tom diogunix com> Obtained from: Michael Santos <michael santos gmail com> Notes: svn path=/head/; revision=266792
* Upgrade to version R14B01.Jimmy Olgeni2010-12-153-70/+1
| | | | Notes: svn path=/head/; revision=266347
* Upgrade to version R14B, with a couple of fixes from the ErlangJimmy Olgeni2010-09-275-41/+45
| | | | | | | mailing lists. Notes: svn path=/head/; revision=261973
* Remove obsolete message about nsswitch.conf in FreeBSD 5.x (noJimmy Olgeni2010-07-231-4/+0
| | | | | | | PORTREVISION bump, which would be overkill for this). Notes: svn path=/head/; revision=258088
* Patch erlc.c to automatically pass the "-smp disable" arguments toJimmy Olgeni2010-04-071-0/+13
| | | | | | | | | | the Erlang runtime. This should hopefully fix the pointyhat build hangs which seem related to the Erlang SMP runtime (beam.smp). Notes: svn path=/head/; revision=252413
* Begin the process of deprecating sysutils/rc_subr byDoug Barton2010-03-271-1/+1
| | | | | | | s#. %%RC_SUBR%%#. /etc/rc.subr# Notes: svn path=/head/; revision=251553
* Add missing emacs files.Jimmy Olgeni2010-03-201-0/+17
| | | | | | | Obtained from: Nico Kruber <kruber at zib dot de> Notes: svn path=/head/; revision=251313
* Upgrade to version r13b04.Jimmy Olgeni2010-03-1511-110/+29
| | | | | | | Obtained from: vanilla (with additional SCTP fix) Notes: svn path=/head/; revision=251084
* Upgrade to version R13B03.Jimmy Olgeni2009-11-271-207/+0
| | | | | | | Obtained from: Kenji Rikitake <kenji.rikitake at acm.org> (mostly) Notes: svn path=/head/; revision=244847
* Improve Emacs indentation code (the try/after clause is now handled correctly.)Jimmy Olgeni2009-10-261-0/+207
| | | | | | | Obtained from: Steve Vinoski <vinoski at gmail.com> Notes: svn path=/head/; revision=243354
* Upgrade to version R13B02.Jimmy Olgeni2009-09-223-46/+0
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=241917
* Fix a few "bad example" problems in the rc.d scripts that have beenDoug Barton2009-07-151-4/+3
| | | | | | | | | | | | | | | | | | | | | | | propogated by copy and paste. 1. Primarily the "empty variable" default assignment, which is mostly ${name}_flags="", but fix a few others as well. 2. Where they are not already documented, add the existence of the _flags (or other deleted empties) option to the comments, and in some cases add comments from scratch. 3. Replace things that look like: prefix=%%PREFIX%% command=${prefix}/sbin/foo to just use %%PREFIX%%. In many cases the $prefix variable is only used once, and in some cases it is not used at all. 4. In a few cases remove ${name}_flags from command_args 5. Remove a long-stale comment about putting the port's rc.d script in /etc/rc.d (which is no longer necessary). No PORTREVISION bumps because all of these changes are noops. Notes: svn path=/head/; revision=237892
* The per-thread last floating point exception pointer is not initializedJimmy Olgeni2009-07-011-0/+13
| | | | | | | | | | to NULL when it is allocated. As a result, spurious floating point exceptions are reported. Obtained from: David Reiss <dreiss at cs.stanford.edu> Notes: svn path=/head/; revision=236869
* Add bugfix for ei_decode_big.Jimmy Olgeni2009-06-131-0/+17
| | | | | | | | | | | | | | "The high order bits of the 16-bits digit (short) are read, even if the byte (at u[(i*2)+1]) doesn't belong to the big. In other words, big numbers such as 16#1234567890 with an odd number of bytes are decoded with a garbage byte (i.e. 16#XX1234567890)." http://erlang.org/pipermail/erlang-bugs/2008-October/001023.html Obtained from: Paul Guyot <pguyot at kallisys.net> Notes: svn path=/head/; revision=235681
* files/patch-lib_compiler_src_beam__utils.erl:Jimmy Olgeni2009-06-122-0/+30
| | | | | | | | | | | | | | | Fix "Internal consistency check failed" compiler error. Obtained from: Bjorn Gustavsson <bgustavsson at gmail.com> files/patch-lib_inets_src_http__client_http.erl: The process would hang because {stream,{self,once}} is not recognized as an invalid option. Obtained from: Adam Kocoloski <adam.kocoloski at gmail.com> Notes: svn path=/head/; revision=235652
* Upgrade to version R13B01.Jimmy Olgeni2009-06-111-27/+0
| | | | Notes: svn path=/head/; revision=235576
* Remove dependency on GCC 4.3: allow proper CFLAGS to reach lib/wx/configure.Jimmy Olgeni2009-06-101-0/+11
| | | | | | | Obtained from: vanilla Notes: svn path=/head/; revision=235548
* Upgrade to version R13B.Jimmy Olgeni2009-06-031-33/+31
| | | | | | | Submitted by: Kenji Rikitake <kenji.rikitake at acm.org> (with a few changes) Notes: svn path=/head/; revision=235117
* Fix an issue related to mktime(3) returning -1 when tm_isdst is true but the ↵Jimmy Olgeni2008-11-172-0/+44
| | | | | | | | | | | | | timestamp cannot be represented. Previously, -1 was interpreted as a valid result leading erlang:localtime_to_universaltime/2 to return {{1969, 12, 31}, {23, 59, 59}}. A detailed explanation may be found here: http://www.erlang.org/pipermail/erlang-bugs/2008-November/001077.html Obtained from: Paul Guyot <pguyot at kallisys.net> Notes: svn path=/head/; revision=222989
* Upgrade to version R12B-5.Jimmy Olgeni2008-11-054-33/+40
| | | | Notes: svn path=/head/; revision=222432
* Add correct exit code patch.Jimmy Olgeni2008-11-021-0/+11
| | | | Notes: svn path=/head/; revision=222325
* Retire incorrect patch (QAT).Jimmy Olgeni2008-11-021-11/+0
| | | | Notes: svn path=/head/; revision=222324
* Create missing empty directory from pkg-plist to avoid a pkg_delete warning.Jimmy Olgeni2008-11-021-0/+11
| | | | | | | | | Make sure that Install exits with 0 (restore previous patch). No PORTREVISION change needed. Notes: svn path=/head/; revision=222323
* Unbreak SCTP support and bump PORTREVISION.Jimmy Olgeni2008-11-011-0/+22
| | | | Notes: svn path=/head/; revision=222282
* Add support for Firefox and Seamonkey.Jimmy Olgeni2008-11-011-1/+1
| | | | Notes: svn path=/head/; revision=222281
* Remove obsolete patches.Jimmy Olgeni2008-11-013-42/+0
| | | | Notes: svn path=/head/; revision=222280
* Remove obsolete patch.Jimmy Olgeni2008-11-011-14/+0
| | | | Notes: svn path=/head/; revision=222277
* Upgrade to version R12B-4.Jimmy Olgeni2008-09-051-0/+14
| | | | Notes: svn path=/head/; revision=219943
* Upgrade to version R12B-3.Jimmy Olgeni2008-06-145-85/+12
| | | | Notes: svn path=/head/; revision=214860
* Upgrade to version R12B-1.Jimmy Olgeni2008-02-072-178/+0
| | | | Notes: svn path=/head/; revision=206869
* Upgrade to version R12B-0 with OSP1 source patch.Jimmy Olgeni2007-12-232-22/+6
| | | | Notes: svn path=/head/; revision=204414
* Force use of libcrypto.so. This will fix the build on amd64 (tested on sledge).Jimmy Olgeni2007-07-311-1/+10
| | | | | | | | PR: ports/114022 Submitted by: benno Notes: svn path=/head/; revision=196861
* * Use gcc(1) rather than ld(1) to link the crypto_drv.so port driver, else ↵Jimmy Olgeni2007-07-024-0/+201
| | | | | | | | | | | the Erlang runtime would fail to load it. * Use the correct struct member when compiling SCTP support (this should unbreak CURRENT). Submitted by: dumbbell Notes: svn path=/head/; revision=194726
* Upgrade to version R11B-5.Jimmy Olgeni2007-06-141-0/+26
| | | | Notes: svn path=/head/; revision=193471
* Add missing patch after R11B-5 upgrade.Jimmy Olgeni2007-06-141-0/+13
| | | | Notes: svn path=/head/; revision=193470
* Upgrade to version R11B-4.Jimmy Olgeni2007-05-286-94/+1
| | | | Notes: svn path=/head/; revision=192249
* Fix formatting exception in io:format.Jimmy Olgeni2007-02-231-0/+16
| | | | | | | Obtained from: Hans Bolinder <hans.bolinder(at)ericsson.com> Notes: svn path=/head/; revision=185755
* The Erlang runtime could occasionally segfault when writing erl_crash.dumpJimmy Olgeni2007-02-201-0/+27
| | | | | | | | | files, due to a fixed size buffer. Using encode_size_struct will fix it. Obtained from: Christopher Faulet <christopher.faulet(at)capflam.org> Notes: svn path=/head/; revision=185576
* Remove some debug code that was included into the release.Jimmy Olgeni2007-02-201-0/+23
| | | | Notes: svn path=/head/; revision=185571
* Fix "edoc: error in layout 'edoc_layout'" issue.Jimmy Olgeni2007-02-151-0/+21
| | | | | | | Obtained from: Bertil Karlsson <bertil.karlsson(at)ericsson.com> Notes: svn path=/head/; revision=185257
* Fix http:request error.Jimmy Olgeni2007-02-151-0/+23
| | | | | | | Obtained from: Ingela Anderton Andin <ingela(at)erix.ericsson.se> Notes: svn path=/head/; revision=185256
* Fix dialyzer_init_plt path.Jimmy Olgeni2007-02-081-1/+1
| | | | Notes: svn path=/head/; revision=184638
* Upgrade to version R11B-3.Jimmy Olgeni2007-02-023-47/+10
| | | | Notes: svn path=/head/; revision=183940
* Fix R11B-2 SMP timer race condition bug.Jimmy Olgeni2006-12-311-0/+36
| | | | | | | Obtained from: Rickard Green <rickard.s.green(at)ericsson.com> Notes: svn path=/head/; revision=181175
* Improve pkg-message management using SUB_FILES.Jimmy Olgeni2006-12-121-0/+15
| | | | Notes: svn path=/head/; revision=179567