]> git.ipfire.org Git - thirdparty/freeswitch.git/log
thirdparty/freeswitch.git
11 years agoUpdate SubmittingPatches doc for JIRA smart commits
Travis Cross [Wed, 2 Jul 2014 18:37:11 +0000 (18:37 +0000)] 
Update SubmittingPatches doc for JIRA smart commits

11 years agoonly count unmuted channels in positioning
Anthony Minessale [Wed, 2 Jul 2014 17:57:23 +0000 (22:57 +0500)] 
only count unmuted channels in positioning

11 years agovs2010 reswig
Jeff Lenk [Wed, 2 Jul 2014 17:46:26 +0000 (12:46 -0500)] 
vs2010 reswig

11 years agoexpand table width a bit
Anthony Minessale [Wed, 2 Jul 2014 17:18:44 +0000 (22:18 +0500)] 
expand table width a bit

11 years agoexpand positioning api usage
Anthony Minessale [Tue, 1 Jul 2014 23:49:16 +0000 (04:49 +0500)] 
expand positioning api usage

11 years agoFS-6637 try this instead
Anthony Minessale [Tue, 1 Jul 2014 18:59:40 +0000 (23:59 +0500)] 
FS-6637 try this instead

11 years agoFS-6637 nevermind, this is already in the code
Anthony Minessale [Tue, 1 Jul 2014 18:53:45 +0000 (23:53 +0500)] 
FS-6637 nevermind, this is already in the code

11 years agoFS-6637 try this patch
Anthony Minessale [Tue, 1 Jul 2014 17:31:55 +0000 (22:31 +0500)] 
FS-6637 try this patch

11 years agofs_cli: fix compiler error on CentOS 6 caused by recent short uuid logging change
Chris Rienzo [Mon, 30 Jun 2014 21:30:59 +0000 (17:30 -0400)] 
fs_cli: fix compiler error on CentOS 6 caused by recent short uuid logging change

11 years agoAdd support for 16-byte auth tag for AES GCM mode.
jfigus [Thu, 8 May 2014 17:34:53 +0000 (13:34 -0400)] 
Add support for 16-byte auth tag for AES GCM mode.

11 years agoSet the algorithm member on cipher_t when allocating AES crypto instance. Apply...
jfigus [Mon, 28 Apr 2014 14:06:17 +0000 (10:06 -0400)] 
Set the algorithm member on cipher_t when allocating AES crypto instance.  Apply same fix to NULL cipher.

11 years agoAvoid buffer-overflow on short RTCP/SRTCP packets
Travis Cross [Sun, 29 Jun 2014 18:42:29 +0000 (18:42 +0000)] 
Avoid buffer-overflow on short RTCP/SRTCP packets

In `srtp_unprotect_rtcp()` we are not validating that the packet
length is as long as the minimum required.  This would cause
`enc_octet_len` to underflow, which would cause us to try to decrypt
data past the end of the packet in memory -- a buffer over-read and
buffer overflow.

In `srtp_protect_rtcp()`, we were similarly not validating the packet
length.  Here we were also polluting the address of the SRTCP
encrypted flag and index (the `trailer`), causing us to write one word
to a bogus memory address before getting to the encryption where we
would also overflow.

In this commit we add checks to appropriately validate the RTCP/SRTCP
packet lengths.

`srtp_unprotect_rtcp_aead()` (but not protect) did correctly validate
the packet length; this check would now be redundant as the check in
`srtcp_unprotect_rtcp()` will also run first, so it has been removed.

11 years agoAvoid buffer over-read on null cipher AEAD
Travis Cross [Sun, 29 Jun 2014 17:32:33 +0000 (17:32 +0000)] 
Avoid buffer over-read on null cipher AEAD

In the defined AEAD modes, SRTP packets must always be encrypted and
authenticated, but SRTCP packets may be only authenticated.  It's
possible, therefore, for us to end up in `srtp_protect_aead()` without
the `sec_serv_conf` bit being set.  We should just ignore this and
encrypt the RTP packet anyway.

What we are doing instead is encrypting the packet anyway, but setting
`enc_start` to NULL first.  This causes `aad_len` to underflow which
will cause us to over-read in `cipher_set_aad()`.

If we could get past that, we would try to read and write memory
starting at 0x0 down in `cipher_encrypt()`.

This commit causes us to not check the `sec_serv_conf` bit and never
set `enc_start` to NULL in `srtp_protect_aead()`.

`srtp_unprotect_aead()` does not contain a similar error.

11 years agoPrevent buffer overflow from untrusted RTP/SRTP lengths
Travis Cross [Sun, 29 Jun 2014 01:10:29 +0000 (01:10 +0000)] 
Prevent buffer overflow from untrusted RTP/SRTP lengths

When computing the start address of the RTP data to encrypt or SRTP
data to decrypt (`enc_start`), we are using `hdr->cc` (the CSRC
count), which is untrusted data from the packet, and the length field
of an RTP header extension, which is also untrusted and unchecked data
from the packet.

This value then pollutes our calculation of how much data we'll be
encrypting or decrypting (`enc_octet_len`), possibly causing us to
underflow.

We'll then call `cipher_encrypt()` or `cipher_decrypt()` with these
two values, causing us to read from and write to arbitrary addresses
in memory.

(In the AEAD functions, we'd also pollute `aad_len`, which would cause
us to read undefined memory in `cipher_set_aad`.)

This commit adds checks to verify that the `enc_start` we calculate is
sane based on the actual packet length.

11 years agoFix misspelling in comment
Travis Cross [Sun, 29 Jun 2014 00:13:30 +0000 (00:13 +0000)] 
Fix misspelling in comment

11 years agoFS-6540 This should proxy all refers now, the param has changed to proxy-refer
Anthony Minessale [Mon, 30 Jun 2014 17:53:22 +0000 (12:53 -0500)] 
FS-6540 This should proxy all refers now, the param has changed to proxy-refer

11 years agofix volume adjustments in stereo conference
Anthony Minessale [Mon, 30 Jun 2014 18:39:42 +0000 (23:39 +0500)] 
fix volume adjustments in stereo conference

11 years agosome refactoring to make new stereo stuff more stable
Anthony Minessale [Mon, 30 Jun 2014 18:00:45 +0000 (23:00 +0500)] 
some refactoring to make new stereo stuff more stable

11 years agotweaks
Anthony Minessale [Sun, 29 Jun 2014 23:39:46 +0000 (04:39 +0500)] 
tweaks

11 years agocheck for member channel
Anthony Minessale [Sun, 29 Jun 2014 20:59:16 +0000 (01:59 +0500)] 
check for member channel

11 years agoCheck for too many SRTP errors before warning
Travis Cross [Sun, 29 Jun 2014 20:40:49 +0000 (20:40 +0000)] 
Check for too many SRTP errors before warning

We're checking whether we've hit the warning threshold before checking
whether we should just end the call.  This causes an off-by-one error
where we take one SRTP error more than intended.

This commit reverses the order of the tests.

11 years agoadd openal code to mod_conference
Anthony Minessale [Sun, 29 Jun 2014 20:23:03 +0000 (01:23 +0500)] 
add openal code to mod_conference

11 years agocheck for proper openal symbol to enable functionality
Anthony Minessale [Sun, 29 Jun 2014 20:22:46 +0000 (01:22 +0500)] 
check for proper openal symbol to enable functionality

11 years agoadd 44.1khz codec defs
Anthony Minessale [Sun, 29 Jun 2014 20:22:16 +0000 (01:22 +0500)] 
add 44.1khz codec defs

11 years agoadjust ringing var
Anthony Minessale [Sun, 29 Jun 2014 19:00:35 +0000 (00:00 +0500)] 
adjust ringing var

11 years agoFAX tweaks
Steve Underwood [Sat, 28 Jun 2014 18:11:25 +0000 (02:11 +0800)] 
FAX tweaks

11 years agoFixed updating of the modem type after a FAX ECM CTC.
Steve Underwood [Sat, 28 Jun 2014 08:43:05 +0000 (16:43 +0800)] 
Fixed updating of the modem type after a FAX ECM CTC.

11 years agoHandle SRTP_READ_ERROR in mod_rayo
Travis Cross [Sat, 28 Jun 2014 06:42:57 +0000 (06:42 +0000)] 
Handle SRTP_READ_ERROR in mod_rayo

11 years agoAllow more SRTP errors before killing call
Travis Cross [Sat, 28 Jun 2014 03:43:08 +0000 (03:43 +0000)] 
Allow more SRTP errors before killing call

In a carrier interop we saw the call get killed for SRTP failures
during a reinvite.  We're wondering if the SRTP errors may have been
transitory and if it may have recovered after a few more packets.

It's debatable whether we should kill calls at all for SRTP auth
failures; semantically the right thing to do when a MAC fails is to
ignore the packet completely.  So raising this limit to 100 packets
shouldn't do any harm.  With this change we still warn at 10 errors
and every 10 errors thereafter.

11 years agoRelay cause of hangup on SRTP failure
Travis Cross [Sat, 28 Jun 2014 01:18:50 +0000 (01:18 +0000)] 
Relay cause of hangup on SRTP failure

We hangup the channel after receiving 10 SRTP packets in a row with a
bad auth tag or that are replayed.  Prior to this commit we were
indicating a normal clearing.  When doing interop and looking first at
packet traces, this made freeswitch's behavior look surprising.  With
this commit we'll indicate more loudly what's happening.

11 years agoFix misspelled function
Travis Cross [Sat, 28 Jun 2014 00:32:41 +0000 (00:32 +0000)] 
Fix misspelled function

switch_rtp_set_invalid_handler has been misspelled as
switch_rtp_set_invald_handler going all the way back to the
beginning.  So while it's possible that someone somewhere could be
relying on this misspelling, I think it's more likely that no one has
used it much and that's why it wasn't spotted.  We don't even use it
ourselves anywhere anymore.

Introduced in commit: 828e03715f67f358671c6691c3e9c0f2a66ec6ec

11 years agoAdd editor footer to core files missing it
Travis Cross [Fri, 27 Jun 2014 23:55:27 +0000 (23:55 +0000)] 
Add editor footer to core files missing it

11 years agoAllow reincarnation from mod_sofia's shutdown-on-fail
Travis Cross [Fri, 27 Jun 2014 22:14:14 +0000 (22:14 +0000)] 
Allow reincarnation from mod_sofia's shutdown-on-fail

mod_sofia's parameter shutdown-on-fail now accepts the value
"reincarnate-now".  This will cause the switch to exit immediately
with a non-zero exit code so that the supervisor can recover the
switch.  For this to work you have to pass in -reincarnate or
-reincarnate-reexec to freeswitch.

11 years agoEnsure mod_sofia params can be unset or reset
Travis Cross [Thu, 26 Jun 2014 08:55:55 +0000 (08:55 +0000)] 
Ensure mod_sofia params can be unset or reset

This is the result of auditing each mod_sofia profile parameter to
ensure that it can be unset or reset after being set.  One use-case
for this being done correctly is so a later parameter in a
configuration file can reliably override an earlier one, which is
useful for setups with layered include files.

11 years agoAvoid leaking memory on sofia profile reload
Travis Cross [Thu, 26 Jun 2014 08:39:55 +0000 (08:39 +0000)] 
Avoid leaking memory on sofia profile reload

We were leaking the string values of apply-candidate-acl parameters.

11 years agoTerminate format_cdr json files with newline
Travis Cross [Wed, 25 Jun 2014 23:30:54 +0000 (23:30 +0000)] 
Terminate format_cdr json files with newline

In UNIX, text files by definition end with a newline.

11 years agoAllow setting format of log filename in format_cdr
Travis Cross [Wed, 25 Jun 2014 22:17:24 +0000 (22:17 +0000)] 
Allow setting format of log filename in format_cdr

This commit allows you to set a `log-file` string parameter in a
format_cdr profile.  This string is a template that may (and should!)
contain variables.  This template will be expanded and used as the
file name of the CDR to be written.  This parameter should contain
only the template for the file name itself; the path is relative to
the `log-dir`.

11 years agoAllow SIP UPDATE messages without display updates
Travis Cross [Wed, 25 Jun 2014 19:24:11 +0000 (19:24 +0000)] 
Allow SIP UPDATE messages without display updates

Previously if send-display-update was set to false we would also
remove UPDATE from our Allow: headers.  This is unnecessary.  The
UPDATE message is useful in SIP transactions even if we're not sending
display updates.

With this commit, we add a new boolean profile flag, allow-update.  If
set to true we'll send Allow: UPDATE.  If set to false, we will not.
If there is a conflict with another setting that requires UPDATE
support, the allow-update parameter will win and a warning will be
printed.

ref: RFC 3311

11 years agoskip update on member channels with no json
Anthony Minessale [Wed, 25 Jun 2014 18:40:50 +0000 (13:40 -0500)] 
skip update on member channels with no json

11 years agoFS-6632 Trying to actually use opus in stereo broke pretending to use it in stereo
Anthony Minessale [Wed, 25 Jun 2014 16:18:51 +0000 (21:18 +0500)] 
FS-6632  Trying to actually use opus in stereo broke pretending to use it in stereo

11 years agoduh, the code to parse the codec params from the config file wasn't there
Anthony Minessale [Wed, 25 Jun 2014 16:18:04 +0000 (21:18 +0500)] 
duh, the code to parse the codec params from the config file wasn't there

11 years agoFS-6627
Anthony Minessale [Tue, 24 Jun 2014 20:42:07 +0000 (15:42 -0500)] 
FS-6627

11 years agoFS-6621
Brian West [Tue, 24 Jun 2014 19:13:10 +0000 (14:13 -0500)] 
FS-6621

11 years agofix compiler warning
Seven Du [Tue, 24 Jun 2014 01:10:34 +0000 (09:10 +0800)] 
fix compiler warning

11 years agoCreate freeswitch-timezones debian package
Travis Cross [Mon, 23 Jun 2014 06:26:12 +0000 (06:26 +0000)] 
Create freeswitch-timezones debian package

This installs the timezone file such that configurations can reference
it rather than copying it.

11 years agoFS-6440 regression from this patch on single CPU or VM machines causes startup race
Anthony Minessale [Mon, 23 Jun 2014 18:55:52 +0000 (23:55 +0500)] 
FS-6440 regression from this patch on single CPU or VM machines causes startup race

11 years agoChange to ncwait so that the service start script will block until FS is actually...
William King [Mon, 23 Jun 2014 15:03:53 +0000 (10:03 -0500)] 
Change to ncwait so that the service start script will block until FS is actually started

11 years agoFixed issue handling modem renegotiation when a T.30 CTC message is received.
Steve Underwood [Mon, 23 Jun 2014 00:51:41 +0000 (08:51 +0800)] 
Fixed issue handling modem renegotiation when a T.30 CTC message is received.
 Please enter the commit message for your changes. Lines starting

12 years agoClarify error message.
Eliot Gable [Sat, 21 Jun 2014 19:16:50 +0000 (19:16 +0000)] 
Clarify error message.

12 years ago-rp is not an ok default option it should not be used in normal circumstances it...
Anthony Minessale [Sat, 21 Jun 2014 16:42:46 +0000 (21:42 +0500)] 
-rp is not an ok default option it should not be used in normal circumstances it forces an unsafe environment with realtime threads on single cpu systems.  Real time mode will enable by default on systems with enough cpus

12 years agoFS-6617 fix compile error
Brian West [Sat, 21 Jun 2014 16:04:53 +0000 (11:04 -0500)] 
FS-6617 fix compile error

12 years agoswap
Anthony Minessale [Sat, 21 Jun 2014 00:32:22 +0000 (05:32 +0500)] 
swap

12 years agocheck in raw verto js files and directory structure for development
Anthony Minessale [Sat, 21 Jun 2014 00:26:06 +0000 (05:26 +0500)] 
check in raw verto js files and directory structure for development

12 years agofix recording in stereo conferences
Anthony Minessale [Fri, 20 Jun 2014 18:53:16 +0000 (23:53 +0500)] 
fix recording in stereo conferences

12 years agoFS-6612: Don't use rport in tcp or tls
Brian West [Fri, 20 Jun 2014 15:23:02 +0000 (10:23 -0500)] 
FS-6612: Don't use rport in tcp or tls

12 years agoExclude ftmod_ as those are submodules of mod_freetdm
Brian West [Fri, 20 Jun 2014 15:18:10 +0000 (10:18 -0500)] 
Exclude ftmod_ as those are submodules of mod_freetdm

12 years agovarious verto cleanups and fix a race in double event delivery thread creation
Anthony Minessale [Fri, 20 Jun 2014 14:21:56 +0000 (19:21 +0500)] 
various verto cleanups and fix a race in double event delivery thread creation

12 years agoverto bug fixing in codec negotiation and some stereo codec stuff
Anthony Minessale [Thu, 19 Jun 2014 20:41:19 +0000 (01:41 +0500)] 
verto bug fixing in codec negotiation and some stereo codec stuff

12 years agoTweaks
Steve Underwood [Thu, 19 Jun 2014 18:58:33 +0000 (02:58 +0800)] 
Tweaks

12 years agofix null strcmp
Anthony Minessale [Thu, 19 Jun 2014 18:37:34 +0000 (23:37 +0500)] 
fix null strcmp

12 years agoFS-6609: use config.status to reconf srtp so it doesn't loose the settings from the...
Michael Jerris [Thu, 19 Jun 2014 17:16:52 +0000 (13:16 -0400)] 
FS-6609: use config.status to reconf srtp so it doesn't loose the settings from the initial configure

12 years agoImproved TSB85 tests, which now check call clearing.
Steve Underwood [Thu, 19 Jun 2014 16:24:10 +0000 (00:24 +0800)] 
Improved TSB85 tests, which now check call clearing.
FAX now differentiates properly between <page result code> and <image> <page resuly code> when deciding how to retry.

12 years agomod_skinny: profile digit timeout is integer not string
Nathan Neulinger [Wed, 18 Jun 2014 22:11:19 +0000 (17:11 -0500)] 
mod_skinny: profile digit timeout is integer not string

12 years agomod_skinny: add easy access to set blocking/non-blocking mode for skinny socket on...
Nathan Neulinger [Wed, 18 Jun 2014 22:06:54 +0000 (17:06 -0500)] 
mod_skinny: add easy access to set blocking/non-blocking mode for skinny socket on a per-profile basis

12 years agomod_skinny: socket timeout should be set in all cases, not just for blocking
Nathan Neulinger [Wed, 18 Jun 2014 21:41:38 +0000 (16:41 -0500)] 
mod_skinny: socket timeout should be set in all cases, not just for blocking

12 years agoupdate libedit LOOK MA NO PATCHES
Brian West [Wed, 18 Jun 2014 19:52:27 +0000 (14:52 -0500)] 
update libedit LOOK MA NO PATCHES

12 years agomod_skinny: no warning if there is a matching entry, but no version listed
Nathan Neulinger [Wed, 18 Jun 2014 17:06:27 +0000 (12:06 -0500)] 
mod_skinny: no warning if there is a matching entry, but no version listed

12 years agomod_skinny: add stub for media resource notification message sent by VG224
Nathan Neulinger [Wed, 18 Jun 2014 16:54:49 +0000 (11:54 -0500)] 
mod_skinny: add stub for media resource notification message sent by VG224

12 years agomod_skinny: always return a response to version message, since that's what CCM does
Nathan Neulinger [Wed, 18 Jun 2014 16:44:20 +0000 (11:44 -0500)] 
mod_skinny: always return a response to version message, since that's what CCM does

12 years agomod_skinny: handle additional escaping in log messages to reduce screen/console issues
Nathan Neulinger [Wed, 18 Jun 2014 15:19:42 +0000 (10:19 -0500)] 
mod_skinny: handle additional escaping in log messages to reduce screen/console issues

12 years agoMerge branch 'master' of ssh://git.freeswitch.org/freeswitch
Brian West [Wed, 18 Jun 2014 13:58:56 +0000 (08:58 -0500)] 
Merge branch 'master' of ssh://git.freeswitch.org/freeswitch

12 years agodate would have done the same thing
Brian West [Wed, 18 Jun 2014 13:58:49 +0000 (08:58 -0500)] 
date would have done the same thing

12 years agoFS-6605 add support for automatic dialing when off-hook/ringdown --resolve
Nathan Neulinger [Wed, 18 Jun 2014 13:40:20 +0000 (08:40 -0500)] 
FS-6605 add support for automatic dialing when off-hook/ringdown --resolve

12 years agoFS-5223 and FS-6603, don't trust docs... sheesh
Brian West [Wed, 18 Jun 2014 13:33:57 +0000 (08:33 -0500)] 
FS-5223 and FS-6603, don't trust docs... sheesh

12 years agoutil for quick restarts during debugging
Brian West [Wed, 18 Jun 2014 02:28:16 +0000 (21:28 -0500)] 
util for quick restarts during debugging

12 years agoMerge branch 'master' of ssh://git.freeswitch.org/freeswitch
Brian West [Wed, 18 Jun 2014 02:16:32 +0000 (21:16 -0500)] 
Merge branch 'master' of ssh://git.freeswitch.org/freeswitch

12 years agoFS-5223 FS-6603 on platforms that have SO_REUSEPORT it also implies SO_REUSEADDR...
Brian West [Wed, 18 Jun 2014 02:15:02 +0000 (21:15 -0500)] 
FS-5223 FS-6603 on platforms that have SO_REUSEPORT it also implies SO_REUSEADDR, On platforms that only have SO_REUSEADDR it seems to imply both in the absence of SO_REUSEPORT.

12 years agoignore fs_ivrd
Brian West [Wed, 18 Jun 2014 02:14:14 +0000 (21:14 -0500)] 
ignore fs_ivrd

12 years agoFS-6607 add further not from wiki page about IPv6 support
Nathan Neulinger [Wed, 18 Jun 2014 00:53:45 +0000 (19:53 -0500)] 
FS-6607 add further not from wiki page about IPv6 support

12 years agoFS-6607 add notice of IPv6 support for mod_skinny
Nathan Neulinger [Wed, 18 Jun 2014 00:36:55 +0000 (19:36 -0500)] 
FS-6607 add notice of IPv6 support for mod_skinny

12 years agono one seems to be okay with actually installing perl modules because it might requir...
Michael Jerris [Wed, 18 Jun 2014 00:19:22 +0000 (20:19 -0400)] 
no one seems to be okay with actually installing perl modules because it might require the permissions to acutally do so, instead, let the users figure out how to install them themselves so they can figure out how to have permissions and where they acutally go by themselves with no direction from us

12 years agowoops typo
Brian West [Tue, 17 Jun 2014 22:20:00 +0000 (17:20 -0500)] 
woops typo

12 years agoremove white space
Brian West [Tue, 17 Jun 2014 22:12:42 +0000 (17:12 -0500)] 
remove white space

12 years agotweak
Brian West [Tue, 17 Jun 2014 22:11:04 +0000 (17:11 -0500)] 
tweak

12 years agoSince the FTC won't allow you to register more than 6 or so numbers online without...
Brian West [Tue, 17 Jun 2014 21:46:58 +0000 (16:46 -0500)] 
Since the FTC won't allow you to register more than 6 or so numbers online without having to call... I wrote this in 10 minutes to solve the problem

12 years agomore tweaks
Brian West [Tue, 17 Jun 2014 20:44:32 +0000 (15:44 -0500)] 
more tweaks

12 years agotweaks
Brian West [Tue, 17 Jun 2014 20:24:55 +0000 (15:24 -0500)] 
tweaks

12 years agoFS-6337
Anthony Minessale [Tue, 17 Jun 2014 20:19:14 +0000 (01:19 +0500)] 
FS-6337

12 years agoremove unused code
Anthony Minessale [Tue, 17 Jun 2014 20:17:29 +0000 (01:17 +0500)] 
remove unused code

12 years agoFS-477 fix inappropriate firing of timeout after call proceeds --resolve
Nathan Neulinger [Tue, 17 Jun 2014 19:56:21 +0000 (14:56 -0500)] 
FS-477 fix inappropriate firing of timeout after call proceeds --resolve

12 years agoswish and flick
Brian West [Tue, 17 Jun 2014 19:35:12 +0000 (14:35 -0500)] 
swish and flick

12 years agoUpdated just build it for Solaris 11
Brian West [Tue, 17 Jun 2014 19:34:17 +0000 (14:34 -0500)] 
Updated just build it for Solaris 11

12 years agoremove dual-arch cflags and ldflags that we get on osx, we don't support fat binary...
Michael Jerris [Tue, 17 Jun 2014 19:22:34 +0000 (19:22 +0000)] 
remove dual-arch cflags and ldflags that we get on osx, we don't support fat binary stuff yet

12 years agoBuild mod_verto for debian packaging
Travis Cross [Tue, 17 Jun 2014 16:24:07 +0000 (16:24 +0000)] 
Build mod_verto for debian packaging

We still need to add special handling for the perl bits.

12 years agoFS-6604: fix this same issue in esl too
Michael Jerris [Tue, 17 Jun 2014 17:10:47 +0000 (12:10 -0500)] 
FS-6604: fix this same issue in esl too

12 years agoFS-6604: needs DESTDIR
Michael Jerris [Tue, 17 Jun 2014 16:53:10 +0000 (11:53 -0500)] 
FS-6604: needs DESTDIR

12 years agoFS-6602: check for libperl libstalled and linkable too
Michael Jerris [Tue, 17 Jun 2014 16:44:18 +0000 (11:44 -0500)] 
FS-6602: check for libperl libstalled and linkable too

12 years agoFS-6604: install to archlib not sitelibexp
Michael Jerris [Tue, 17 Jun 2014 16:19:02 +0000 (11:19 -0500)] 
FS-6604: install to archlib not sitelibexp

12 years agoFS-6602: fixed check for EXTERN.h
Michael Jerris [Tue, 17 Jun 2014 16:17:55 +0000 (11:17 -0500)] 
FS-6602: fixed check for EXTERN.h

12 years agoFS-6604: install to archlib not sitelibexp
Michael Jerris [Tue, 17 Jun 2014 15:35:17 +0000 (10:35 -0500)] 
FS-6604: install to archlib not sitelibexp