Hi all.
When I try to make gst 3.2.4 on MacOS (10.6.5, 64-bit Intel), I get this error message: > In file included from gstpub.c:57: > gstpriv.h:110:21: error: sigsegv.h: No such file or directory I have libsigsegv installed under /opt, using MacPorts, as recommended at http://smalltalk.gnu.org/download. Any advice? Thanks very much. Jason _______________________________________________ help-smalltalk mailing list [hidden email] https://lists.gnu.org/mailman/listinfo/help-smalltalk |
Hi Jason
On May 20, 2011, at 7:24 AM, Jason Grossman wrote: > Hi all. > > When I try to make gst 3.2.4 on MacOS (10.6.5, 64-bit Intel), I get this error message: > >> In file included from gstpub.c:57: >> gstpriv.h:110:21: error: sigsegv.h: No such file or directory > > I have libsigsegv installed under /opt, using MacPorts, as recommended at http://smalltalk.gnu.org/download. > > Any advice? try with ./configure --with-system-libsigsegv or with the path: --with-system-libsigsegv=/opt/local > > Thanks very much. > > Jason > _______________________________________________ > help-smalltalk mailing list > [hidden email] > https://lists.gnu.org/mailman/listinfo/help-smalltalk Mth _______________________________________________ help-smalltalk mailing list [hidden email] https://lists.gnu.org/mailman/listinfo/help-smalltalk |
In reply to this post by Jason Grossman
On 23/05/2011, at 9:10 PM, [hidden email] wrote: > From: Mathieu Suen <[hidden email]> > > Hi Jason > > On May 20, 2011, at 7:24 AM, Jason Grossman wrote: > >> Hi all. >> >> When I try to make gst 3.2.4 on MacOS (10.6.5, 64-bit Intel), I get this error message: >> >>> In file included from gstpub.c:57: >>> gstpriv.h:110:21: error: sigsegv.h: No such file or directory >> >> I have libsigsegv installed under /opt, using MacPorts, as recommended at http://smalltalk.gnu.org/download. >> >> Any advice? > > try with > ./configure --with-system-libsigsegv > or with the path: > --with-system-libsigsegv=/opt/local Thanks very much, but I'm afraid I get exactly the same error. Jason _______________________________________________ help-smalltalk mailing list [hidden email] https://lists.gnu.org/mailman/listinfo/help-smalltalk |
On 05/24/2011 02:34 AM, Jason Grossman wrote:
> > On 23/05/2011, at 9:10 PM, [hidden email] wrote: > >> From: Mathieu Suen<[hidden email]> >> >> Hi Jason >> >> On May 20, 2011, at 7:24 AM, Jason Grossman wrote: >> >>> Hi all. >>> >>> When I try to make gst 3.2.4 on MacOS (10.6.5, 64-bit Intel), I get this error message: >>> >>>> In file included from gstpub.c:57: >>>> gstpriv.h:110:21: error: sigsegv.h: No such file or directory >>> >>> I have libsigsegv installed under /opt, using MacPorts, as recommended at http://smalltalk.gnu.org/download. >>> >>> Any advice? >> >> try with >> ./configure --with-system-libsigsegv >> or with the path: >> --with-system-libsigsegv=/opt/local > > Thanks very much, but I'm afraid I get exactly the same error. Can you do find /opt -name sigsegv.h ? Paolo _______________________________________________ help-smalltalk mailing list [hidden email] https://lists.gnu.org/mailman/listinfo/help-smalltalk |
On 24/05/2011, at 4:47 PM, Paolo Bonzini wrote: > On 05/24/2011 02:34 AM, Jason Grossman wrote: >> >> On 23/05/2011, at 9:10 PM, [hidden email] wrote: >> >>> From: Mathieu Suen<[hidden email]> >>> >>> Hi Jason >>> >>> On May 20, 2011, at 7:24 AM, Jason Grossman wrote: >>> >>>> Hi all. >>>> >>>> When I try to make gst 3.2.4 on MacOS (10.6.5, 64-bit Intel), I get this error message: >>>> >>>>> In file included from gstpub.c:57: >>>>> gstpriv.h:110:21: error: sigsegv.h: No such file or directory >>>> >>>> I have libsigsegv installed under /opt, using MacPorts, as recommended at http://smalltalk.gnu.org/download. >>>> >>>> Any advice? >>> >>> try with >>> ./configure --with-system-libsigsegv >>> or with the path: >>> --with-system-libsigsegv=/opt/local >> >> Thanks very much, but I'm afraid I get exactly the same error. > > Can you do > > find /opt -name sigsegv.h > > ? > > Paolo core-burst: find /opt -name sigsegv.h /opt/local/include/sigsegv.h /opt/local/var/macports/software/libsigsegv/2.9_0/opt/local/include/sigsegv.h Thanks. Jason _______________________________________________ help-smalltalk mailing list [hidden email] https://lists.gnu.org/mailman/listinfo/help-smalltalk |
On 05/24/2011 09:08 AM, Jason Grossman wrote:
>>>> >>> ./configure --with-system-libsigsegv >>>> >>> or with the path: >>>> >>> --with-system-libsigsegv=/opt/local >>> >> >>> >> Thanks very much, but I'm afraid I get exactly the same error. >> > >> > Can you do >> > >> > find /opt -name sigsegv.h > > core-burst: find /opt -name sigsegv.h > /opt/local/include/sigsegv.h > /opt/local/var/macports/software/libsigsegv/2.9_0/opt/local/include/sigsegv.h Then the second suggestion from Mathieu, i.e. ./configure --with-system-libsigsegv=/opt/local should work. Paolo _______________________________________________ help-smalltalk mailing list [hidden email] https://lists.gnu.org/mailman/listinfo/help-smalltalk |
On 24/05/2011, at 5:15 PM, Paolo Bonzini wrote: > On 05/24/2011 09:08 AM, Jason Grossman wrote: >>>>> >>> ./configure --with-system-libsigsegv >>>>> >>> or with the path: >>>>> >>> --with-system-libsigsegv=/opt/local >>>> >> >>>> >> Thanks very much, but I'm afraid I get exactly the same error. >>> > >>> > Can you do >>> > >>> > find /opt -name sigsegv.h >> >> core-burst: find /opt -name sigsegv.h >> /opt/local/include/sigsegv.h >> /opt/local/var/macports/software/libsigsegv/2.9_0/opt/local/include/sigsegv.h > > Then the second suggestion from Mathieu, i.e. > > ./configure --with-system-libsigsegv=/opt/local > > should work. > > Paolo Should but doesn't, sadly! I get the same error message with or without that argument to ./configure. Jason _______________________________________________ help-smalltalk mailing list [hidden email] https://lists.gnu.org/mailman/listinfo/help-smalltalk |
On 05/24/2011 09:19 AM, Jason Grossman wrote:
> Should but doesn't, sadly! I get the same error message with or > without that argument to ./configure. Please send config.log (from ./configure) and make.log from "make 2>&1 | tee make.log". Paolo _______________________________________________ help-smalltalk mailing list [hidden email] https://lists.gnu.org/mailman/listinfo/help-smalltalk |
On 05/24/2011 09:22 AM, Jason Grossman wrote:
>>> Please send config.log (from ./configure) and make.log from "make >>> 2>&1 | tee make.log". >>> >>> Paolo > > Thanks for your help. I'm attaching those two files. If the mailing > list software doesn't like attachments then I'll inline them. My bad. It's --with-system-libsigsegv=/opt/local/lib (due to the variance of 64-bit and 32-bit library directories). Paolo _______________________________________________ help-smalltalk mailing list [hidden email] https://lists.gnu.org/mailman/listinfo/help-smalltalk |
On 24/05/2011, at 6:00 PM, Paolo Bonzini wrote: > On 05/24/2011 09:22 AM, Jason Grossman wrote: >>>> Please send config.log (from ./configure) and make.log from "make >>>> 2>&1 | tee make.log". >>>> >>>> Paolo >> >> Thanks for your help. I'm attaching those two files. If the mailing >> list software doesn't like attachments then I'll inline them. > > My bad. It's --with-system-libsigsegv=/opt/local/lib (due to the variance of 64-bit and 32-bit library directories). > > Paolo That worked. Fantastic. Thank you very much. Jason _______________________________________________ help-smalltalk mailing list [hidden email] https://lists.gnu.org/mailman/listinfo/help-smalltalk |
In reply to this post by Paolo Bonzini-2
On 24/05/2011, at 5:20 PM, Paolo Bonzini wrote:
> On 05/24/2011 09:19 AM, Jason Grossman wrote: >> Should but doesn't, sadly! I get the same error message with or >> without that argument to ./configure. > > Please send config.log (from ./configure) and make.log from "make 2>&1 | tee make.log". > > Paolo Thanks for your help. I'm attaching those two files. If the mailing list software doesn't like attachments then I'll inline them. Jason _______________________________________________ help-smalltalk mailing list [hidden email] https://lists.gnu.org/mailman/listinfo/help-smalltalk |
Free forum by Nabble | Edit this page |