linphone-developers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Linphone-developers] unsubscribe


From: Vincent Zgueb
Subject: [Linphone-developers] unsubscribe
Date: Wed, 12 Dec 2012 19:35:36 +0100


--vz


Le 12 déc. 2012 à 17:16, address@hidden a écrit :

> Send Linphone-developers mailing list submissions to
>    address@hidden
> 
> To subscribe or unsubscribe via the World Wide Web, visit
>    https://lists.nongnu.org/mailman/listinfo/linphone-developers
> or, via email, send a message with subject or body 'help' to
>    address@hidden
> 
> You can reach the person managing the list at
>    address@hidden
> 
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Linphone-developers digest..."
> 
> 
> Today's Topics:
> 
>   1. Re: Mac OS bundle not generating correctly:    running app
>      displays no characters. (Laurent Tarrisse)
>   2. Re: Mac OS bundle not generating correctly:    running app
>      displays no characters. (?lvaro Serrano)
> 
> 
> ----------------------------------------------------------------------
> 
> Message: 1
> Date: Wed, 12 Dec 2012 16:48:10 +0100
> From: Laurent Tarrisse <address@hidden>
> To: address@hidden
> Subject: Re: [Linphone-developers] Mac OS bundle not generating
>    correctly:    running app displays no characters.
> Message-ID: <address@hidden>
> Content-Type: text/plain; charset="windows-1252"
> 
> Strange, if it works with local app, it should work with bundle ...
> 
> Did you verify that correct libraries has been placed in your bundle ?
> 
> take a look at :
> 
> otool -L /opt/local/bin/path_app_ok
> and
> otool -L bundle.app/Contents/MacOS/binary 
> 
> With the same command, test recursively libraries.
> 
> ?
> 
> 
> if you want to use quartz variant you should add no_x11 :
> 
> sudo port -f uninstall cairo pango gtk2
> sudo port -f install gtk2 +quartz +no_x11        #(will install cairo and 
> pango with correct variants too)
> 
> 
> Laurent
> 
> Le 12 d?c. 2012 ? 15:27, ?lvaro Serrano a ?crit :
> 
>> Hello Laurent, thanks for the answer.
>> 
>> I get the following response:
>> 
>> $ port installed | grep pango
>>  pango @1.30.1_3+quartz (active)
>> 
>> $ cat /opt/local/etc/macports/variants.conf
>> # To specify global variants to use for all port builds,
>> # customize this file to list variant settings you want.
>> #
>> # Any variants specified here that are not supported by
>> # a port will just be ignored. Multiple variants can be
>> # specified per line, or one per line is also allowed.
>> #
>> # Example:
>> # +ipv6 +no_x11
>> 
>> 
>> I think you're right and it's likely that pango is causing the error, but 
>> shouldn't it happen also in the local app in /opt/local and not just in the 
>> bundled one?
>> 
>> Should I edit the variants.conf file and then reinstall pango? Or simply 
>> reinstall pango with the +no_x11 option?
>> 
>> Thanks again,
>> ?lvaro.
>> 
>> El 12/12/2012, a las 14:19, Laurent Tarrisse <address@hidden> escribi?:
>> 
>>> Hello,
>>> 
>>> Maybe a problem with pango ?
>>> 
>>> Did you install port with +no_x11 variant ?
>>> 
>>> What is the result of :
>>> 
>>> port installed | grep pango
>>> 
>>> cat /opt/local/etc/macports/variants.conf
>>> 
>>> ?
>>> 
>>> Laurent
>>> 
>>> Le 12 d?c. 2012 ? 12:43, ?lvaro Serrano a ?crit :
>>> 
>>>> Well, even though Makefile.inc had some errors, it seems that it is not 
>>>> the source of the problem. See this fragment:
>>>> 
>>>>>> /opt/local/bin/gmkdir -p 
>>>>>> /Users/aserranor/Documents/linphone/linphone-install/opt/local/share/gnome/help/linphone/C/
>>>>>> cp -f ../../share/C/*.html 
>>>>>> /Users/aserranor/Documents/linphone/linphone-install//opt/local/share/gnome/help/linphone/C/
>>>>>> cp: ../../share/C/*.html: No such file or directory
>>>>>> make[4]: [install-data-local] Error 1 (ignored)
>>>>>> cp -f ../../share/C/*.css 
>>>>>> /Users/aserranor/Documents/linphone/linphone-install//opt/local/share/gnome/help/linphone/C/
>>>>>> cp: ../../share/C/*.css: No such file or directory
>>>>>> make[4]: [install-data-local] Error 1 (ignored)
>>>> 
>>>> The linphone/share/C directory where the html and css files are supposed 
>>>> to be is empty, which is the reason for the error above. However, the 
>>>> locally installed version of linphone (installed in /opt/local without 
>>>> using gtk-mac-bundler, simply with a 'sudo make install' terminal command) 
>>>> also has the same destination folder empty and it is still able to display 
>>>> text characters normally, so this seems unrelated to the bigger problem.
>>>> 
>>>> Could it be that GTK is looking for some libraries in the bundle and not 
>>>> finding them?
>>>> Any ideas? There's gotta be a reason for this:
>>>> 
>>>> <Captura de pantalla 2012-12-10 a la(s) 17.34.54.png>
>>>> 
>>>> 
>>>> Thanks,
>>>> ?lvaro.
>>>> 
>>>> 
>>>> 
>>>> El 11/12/2012, a las 20:18, ?lvaro Serrano <address@hidden> escribi?:
>>>> 
>>>>> All right, I was able to solve problem 2)
>>>>> 
>>>>> I followed the instructions here: http://ufoai.org/wiki/Compile_for_Mac
>>>>> 
>>>>> I basically added the -headerpad_max_install_names LDFLAGS option to the 
>>>>> configuration script in MacPorts so that it is always used when 
>>>>> installing new ports. I edited the file 
>>>>> /opt/local/share/macports/Tcl/port1.0/portconfigure.tcl and changed the 
>>>>> flag as it says on the URL above.
>>>>> 
>>>>> I then forced to recompile and reinstall all the ports and dependencies 
>>>>> needed for linphone. The two main offenders were gtk2 and ffmpeg-devel 
>>>>> but still, I reinstalled all of them just to be sure. Now gtk-mac-bundler 
>>>>> is happy and the bundle is created without any of the errors that 
>>>>> appeared before.
>>>>> 
>>>>> 
>>>>> HOWEVER, I'm still stuck with problem 1) and I still get an app that 
>>>>> doesn't show any characters other than squares. I will go over the 
>>>>> Makefile.inc tomorrow in more detail, but if anyone has any pointers I 
>>>>> would be more than grateful.
>>>>> 
>>>>> ?lvaro.
>>>>> 
>>>>> 
>>>>> El 10/12/2012, a las 18:48, ?lvaro Serrano <address@hidden> escribi?:
>>>>> 
>>>>>> Hi,
>>>>>> 
>>>>>> I'm trying to create the Mac OS bundle with gtk-mac-bundler following 
>>>>>> the instructions in the readme.macos file. The bundle is created but 
>>>>>> when I run it this is what I get:
>>>>>> 
>>>>>> <Captura de pantalla 2012-12-10 a la(s) 17.34.54.png>
>>>>>> 
>>>>>> I've been looking through the logs in the terminal and I have found a 
>>>>>> couple of things:
>>>>>> 
>>>>>> 1) There seems to be something wrong with the Makefile.inc file 
>>>>>> (attached for reference) located in the linphone/share directory that 
>>>>>> makes double dashes appear in the middle of some file paths, like this 
>>>>>> fragment from the terminal log during the make bundle command. I have 
>>>>>> noted one such path in bold for clarity:
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> Making install in C
>>>>>> cd ../.. && /bin/sh /Users/aserranor/documents/linphone/missing --run 
>>>>>> automake-1.12 --gnu share/C/Makefile
>>>>>> configure.ac:109: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, 
>>>>>> and will soon be removed.
>>>>>> configure.ac:109: You should use the Autoconf-provided 'AC_PROG_MKDIR_P' 
>>>>>> macro instead,
>>>>>> configure.ac:109: and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your 
>>>>>> Makefile.am files.
>>>>>> cd ../.. && /bin/sh ./config.status share/C/Makefile 
>>>>>> config.status: creating share/C/Makefile
>>>>>> make[4]: Nothing to be done for `install-exec-am'.
>>>>>> /opt/local/bin/gmkdir -p 
>>>>>> /Users/aserranor/Documents/linphone/linphone-install/opt/local/share/gnome/help/linphone/C/
>>>>>> cp -f ../../share/C/*.html 
>>>>>> /Users/aserranor/Documents/linphone/linphone-install//opt/local/share/gnome/help/linphone/C//.
>>>>>> cp: ../../share/C/*.html: No such file or directory
>>>>>> make[4]: [install-data-local] Error 1 (ignored)
>>>>>> cp -f ../../share/C/*.css 
>>>>>> /Users/aserranor/Documents/linphone/linphone-install//opt/local/share/gnome/help/linphone/C//.
>>>>>> cp: ../../share/C/*.css: No such file or directory
>>>>>> make[4]: [install-data-local] Error 1 (ignored)
>>>>>> /opt/local/bin/gmkdir -p 
>>>>>> '/Users/aserranor/Documents/linphone/linphone-install/opt/local/share/man/man1'
>>>>>> /opt/local/bin/ginstall -c -m 644 linphone.1 linphonec.1 sipomatic.1 
>>>>>> linphonecsh.1 
>>>>>> '/Users/aserranor/Documents/linphone/linphone-install/opt/local/share/man/man1'
>>>>>> 1 linphonec.1 sipomatic.1 linphonecsh.1 
>>>>>> '/Users/aserranor/Documents/linphone/linphone-install/opt/local/share/man/man1'
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> This fragment is repeated for each of the subfolders in the share 
>>>>>> directory: C, cs, fr, it and ja. I have tried editing the Makefile.inc 
>>>>>> myself but I wasn't able to get it to work.
>>>>>> 
>>>>>> 2) I also get a long and repeated error after that, here's a fragment:
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> Running install name tool
>>>>>> Going through prefix: /opt/local
>>>>>> install_name_tool: changing install names or rpaths can't be redone for: 
>>>>>> .Linphone.app/Contents/Resources/lib/libgtk-quartz-2.0.0.dylib (for 
>>>>>> architecture x86_64) because larger updated load commands do not fit 
>>>>>> (the program must be relinked, and you may need to use -headerpad or 
>>>>>> -headerpad_max_install_names)
>>>>>> install_name_tool: changing install names or rpaths can't be redone for: 
>>>>>> .Linphone.app/Contents/Resources/lib/libgtk-quartz-2.0.0.dylib (for 
>>>>>> architecture x86_64) because larger updated load commands do not fit 
>>>>>> (the program must be relinked, and you may need to use -headerpad or 
>>>>>> -headerpad_max_install_names)
>>>>>> install_name_tool: changing install names or rpaths can't be redone for: 
>>>>>> .Linphone.app/Contents/Resources/lib/libgtk-quartz-2.0.0.dylib (for 
>>>>>> architecture x86_64) because larger updated load commands do not fit 
>>>>>> (the program must be relinked, and you may need to use -headerpad or 
>>>>>> -headerpad_max_install_names)
>>>>>> (...) 
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> It goes on and on like this for a while. I have no idea what this means. 
>>>>>> I would really appreciate any help guys, I'm lost at this point.
>>>>>> 
>>>>>> Thanks in advance.
>>>>>> ?lvaro.
>>>>>> 
>>>>>> 
>>>>>> <Makefile.inc>
>>>>>> _______________________________________________
>>>>>> Linphone-developers mailing list
>>>>>> address@hidden
>>>>>> https://lists.nongnu.org/mailman/listinfo/linphone-developers
>>>>> 
>>>>> _______________________________________________
>>>>> Linphone-developers mailing list
>>>>> address@hidden
>>>>> https://lists.nongnu.org/mailman/listinfo/linphone-developers
>>>> 
>>>> _______________________________________________
>>>> Linphone-developers mailing list
>>>> address@hidden
>>>> https://lists.nongnu.org/mailman/listinfo/linphone-developers
>>> 
>>> _______________________________________________
>>> Linphone-developers mailing list
>>> address@hidden
>>> https://lists.nongnu.org/mailman/listinfo/linphone-developers
>> 
>> _______________________________________________
>> Linphone-developers mailing list
>> address@hidden
>> https://lists.nongnu.org/mailman/listinfo/linphone-developers
> 
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: 
> <http://lists.nongnu.org/archive/html/linphone-developers/attachments/20121212/33c79f65/attachment.html>
> 
> ------------------------------
> 
> Message: 2
> Date: Wed, 12 Dec 2012 17:16:30 +0100
> From: ?lvaro Serrano <address@hidden>
> To: address@hidden
> Subject: Re: [Linphone-developers] Mac OS bundle not generating
>    correctly:    running app displays no characters.
> Message-ID: <address@hidden>
> Content-Type: text/plain; charset="windows-1252"
> 
> Thanks. I ran the command in both places and the list of libraries is exactly 
> the same for both.
> 
> I also tried removing and reinstalling cairo, pango and gtk2 like you said, 
> and the gtk2 installation fails. The command doesn't install the correct 
> version of cairo, and installs the +x11 version instead:
> 
> $ sudo port -f install gtk2 +quartz +no_x11
> --->  Computing dependencies for cairo
> --->  Fetching archive for cairo
> --->  Attempting to fetch cairo-1.12.8_2+x11.darwin_12.x86_64.tbz2 from 
> http://lil.fr.packages.macports.org/cairo
> --->  Attempting to fetch cairo-1.12.8_2+x11.darwin_12.x86_64.tbz2.rmd160 
> from http://lil.fr.packages.macports.org/cairo
> --->  Installing cairo @1.12.8_2+x11
> --->  Activating cairo @1.12.8_2+x11
> --->  Cleaning cairo
> --->  Computing dependencies for gtk2
> --->  Dependencies to be installed: pango
> --->  Fetching archive for pango
> --->  Attempting to fetch pango-1.30.1_3+no_x11+quartz.darwin_12.x86_64.tbz2 
> from http://lil.fr.packages.macports.org/pango
> --->  Attempting to fetch pango-1.30.1_3+no_x11+quartz.darwin_12.x86_64.tbz2 
> from http://mse.uk.packages.macports.org/sites/packages.macports.org/pango
> --->  Attempting to fetch pango-1.30.1_3+no_x11+quartz.darwin_12.x86_64.tbz2 
> from http://packages.macports.org/pango
> --->  Fetching distfiles for pango
> --->  Verifying checksum(s) for pango
> --->  Extracting pango
> --->  Applying patches to pango
> --->  Configuring pango
> Error: To install pango with the quartz variant, cairo must be installed with 
> the quartz variant.
> Error: org.macports.configure for port pango returned: incompatible cairo 
> installation
> Error: Failed to install pango
> Please see the log file for port pango for details:
>    
> /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_release_tarballs_ports_x11_pango/pango/main.log
> Error: The following dependencies were not installed: pango
> To report a bug, follow the instructions in the guide:
>    http://guide.macports.org/#project.tickets
> Error: Processing of port gtk2 failed
> 
> 
> I'm curious because the +no_x11 variant is not listed for the cairo port in 
> the MacPorts site. Cairo-devel on the other hand does have this variant. I'm 
> going to try to reinstall them one by one using cairo-devel this time, see if 
> that helps.
> 
> If you have any other suggestions please let me know.
> 
> Thanks a lot!
> ?lvaro.
> 
> 
> 
> El 12/12/2012, a las 16:48, Laurent Tarrisse <address@hidden> escribi?:
> 
>> Strange, if it works with local app, it should work with bundle ...
>> 
>> Did you verify that correct libraries has been placed in your bundle ?
>> 
>> take a look at :
>> 
>> otool -L /opt/local/bin/path_app_ok
>> and
>> otool -L bundle.app/Contents/MacOS/binary 
>> 
>> With the same command, test recursively libraries.
>> 
>> ?
>> 
>> 
>> if you want to use quartz variant you should add no_x11 :
>> 
>> sudo port -f uninstall cairo pango gtk2
>> sudo port -f install gtk2 +quartz +no_x11        #(will install cairo and 
>> pango with correct variants too)
>> 
>> 
>> Laurent
>> 
>> Le 12 d?c. 2012 ? 15:27, ?lvaro Serrano a ?crit :
>> 
>>> Hello Laurent, thanks for the answer.
>>> 
>>> I get the following response:
>>> 
>>> $ port installed | grep pango
>>>  pango @1.30.1_3+quartz (active)
>>> 
>>> $ cat /opt/local/etc/macports/variants.conf
>>> # To specify global variants to use for all port builds,
>>> # customize this file to list variant settings you want.
>>> #
>>> # Any variants specified here that are not supported by
>>> # a port will just be ignored. Multiple variants can be
>>> # specified per line, or one per line is also allowed.
>>> #
>>> # Example:
>>> # +ipv6 +no_x11
>>> 
>>> 
>>> I think you're right and it's likely that pango is causing the error, but 
>>> shouldn't it happen also in the local app in /opt/local and not just in the 
>>> bundled one?
>>> 
>>> Should I edit the variants.conf file and then reinstall pango? Or simply 
>>> reinstall pango with the +no_x11 option?
>>> 
>>> Thanks again,
>>> ?lvaro.
>>> 
>>> El 12/12/2012, a las 14:19, Laurent Tarrisse <address@hidden> escribi?:
>>> 
>>>> Hello,
>>>> 
>>>> Maybe a problem with pango ?
>>>> 
>>>> Did you install port with +no_x11 variant ?
>>>> 
>>>> What is the result of :
>>>> 
>>>> port installed | grep pango
>>>> 
>>>> cat /opt/local/etc/macports/variants.conf
>>>> 
>>>> ?
>>>> 
>>>> Laurent
>>>> 
>>>> Le 12 d?c. 2012 ? 12:43, ?lvaro Serrano a ?crit :
>>>> 
>>>>> Well, even though Makefile.inc had some errors, it seems that it is not 
>>>>> the source of the problem. See this fragment:
>>>>> 
>>>>>>> /opt/local/bin/gmkdir -p 
>>>>>>> /Users/aserranor/Documents/linphone/linphone-install/opt/local/share/gnome/help/linphone/C/
>>>>>>> cp -f ../../share/C/*.html 
>>>>>>> /Users/aserranor/Documents/linphone/linphone-install//opt/local/share/gnome/help/linphone/C/
>>>>>>> cp: ../../share/C/*.html: No such file or directory
>>>>>>> make[4]: [install-data-local] Error 1 (ignored)
>>>>>>> cp -f ../../share/C/*.css 
>>>>>>> /Users/aserranor/Documents/linphone/linphone-install//opt/local/share/gnome/help/linphone/C/
>>>>>>> cp: ../../share/C/*.css: No such file or directory
>>>>>>> make[4]: [install-data-local] Error 1 (ignored)
>>>>> 
>>>>> The linphone/share/C directory where the html and css files are supposed 
>>>>> to be is empty, which is the reason for the error above. However, the 
>>>>> locally installed version of linphone (installed in /opt/local without 
>>>>> using gtk-mac-bundler, simply with a 'sudo make install' terminal 
>>>>> command) also has the same destination folder empty and it is still able 
>>>>> to display text characters normally, so this seems unrelated to the 
>>>>> bigger problem.
>>>>> 
>>>>> Could it be that GTK is looking for some libraries in the bundle and not 
>>>>> finding them?
>>>>> Any ideas? There's gotta be a reason for this:
>>>>> 
>>>>> <Captura de pantalla 2012-12-10 a la(s) 17.34.54.png>
>>>>> 
>>>>> 
>>>>> Thanks,
>>>>> ?lvaro.
>>>>> 
>>>>> 
>>>>> 
>>>>> El 11/12/2012, a las 20:18, ?lvaro Serrano <address@hidden> escribi?:
>>>>> 
>>>>>> All right, I was able to solve problem 2)
>>>>>> 
>>>>>> I followed the instructions here: http://ufoai.org/wiki/Compile_for_Mac
>>>>>> 
>>>>>> I basically added the -headerpad_max_install_names LDFLAGS option to the 
>>>>>> configuration script in MacPorts so that it is always used when 
>>>>>> installing new ports. I edited the file 
>>>>>> /opt/local/share/macports/Tcl/port1.0/portconfigure.tcl and changed the 
>>>>>> flag as it says on the URL above.
>>>>>> 
>>>>>> I then forced to recompile and reinstall all the ports and dependencies 
>>>>>> needed for linphone. The two main offenders were gtk2 and ffmpeg-devel 
>>>>>> but still, I reinstalled all of them just to be sure. Now 
>>>>>> gtk-mac-bundler is happy and the bundle is created without any of the 
>>>>>> errors that appeared before.
>>>>>> 
>>>>>> 
>>>>>> HOWEVER, I'm still stuck with problem 1) and I still get an app that 
>>>>>> doesn't show any characters other than squares. I will go over the 
>>>>>> Makefile.inc tomorrow in more detail, but if anyone has any pointers I 
>>>>>> would be more than grateful.
>>>>>> 
>>>>>> ?lvaro.
>>>>>> 
>>>>>> 
>>>>>> El 10/12/2012, a las 18:48, ?lvaro Serrano <address@hidden> escribi?:
>>>>>> 
>>>>>>> Hi,
>>>>>>> 
>>>>>>> I'm trying to create the Mac OS bundle with gtk-mac-bundler following 
>>>>>>> the instructions in the readme.macos file. The bundle is created but 
>>>>>>> when I run it this is what I get:
>>>>>>> 
>>>>>>> <Captura de pantalla 2012-12-10 a la(s) 17.34.54.png>
>>>>>>> 
>>>>>>> I've been looking through the logs in the terminal and I have found a 
>>>>>>> couple of things:
>>>>>>> 
>>>>>>> 1) There seems to be something wrong with the Makefile.inc file 
>>>>>>> (attached for reference) located in the linphone/share directory that 
>>>>>>> makes double dashes appear in the middle of some file paths, like this 
>>>>>>> fragment from the terminal log during the make bundle command. I have 
>>>>>>> noted one such path in bold for clarity:
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> Making install in C
>>>>>>> cd ../.. && /bin/sh /Users/aserranor/documents/linphone/missing --run 
>>>>>>> automake-1.12 --gnu share/C/Makefile
>>>>>>> configure.ac:109: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, 
>>>>>>> and will soon be removed.
>>>>>>> configure.ac:109: You should use the Autoconf-provided 
>>>>>>> 'AC_PROG_MKDIR_P' macro instead,
>>>>>>> configure.ac:109: and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your 
>>>>>>> Makefile.am files.
>>>>>>> cd ../.. && /bin/sh ./config.status share/C/Makefile 
>>>>>>> config.status: creating share/C/Makefile
>>>>>>> make[4]: Nothing to be done for `install-exec-am'.
>>>>>>> /opt/local/bin/gmkdir -p 
>>>>>>> /Users/aserranor/Documents/linphone/linphone-install/opt/local/share/gnome/help/linphone/C/
>>>>>>> cp -f ../../share/C/*.html 
>>>>>>> /Users/aserranor/Documents/linphone/linphone-install//opt/local/share/gnome/help/linphone/C//.
>>>>>>> cp: ../../share/C/*.html: No such file or directory
>>>>>>> make[4]: [install-data-local] Error 1 (ignored)
>>>>>>> cp -f ../../share/C/*.css 
>>>>>>> /Users/aserranor/Documents/linphone/linphone-install//opt/local/share/gnome/help/linphone/C//.
>>>>>>> cp: ../../share/C/*.css: No such file or directory
>>>>>>> make[4]: [install-data-local] Error 1 (ignored)
>>>>>>> /opt/local/bin/gmkdir -p 
>>>>>>> '/Users/aserranor/Documents/linphone/linphone-install/opt/local/share/man/man1'
>>>>>>> /opt/local/bin/ginstall -c -m 644 linphone.1 linphonec.1 sipomatic.1 
>>>>>>> linphonecsh.1 
>>>>>>> '/Users/aserranor/Documents/linphone/linphone-install/opt/local/share/man/man1'
>>>>>>> 1 linphonec.1 sipomatic.1 linphonecsh.1 
>>>>>>> '/Users/aserranor/Documents/linphone/linphone-install/opt/local/share/man/man1'
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> This fragment is repeated for each of the subfolders in the share 
>>>>>>> directory: C, cs, fr, it and ja. I have tried editing the Makefile.inc 
>>>>>>> myself but I wasn't able to get it to work.
>>>>>>> 
>>>>>>> 2) I also get a long and repeated error after that, here's a fragment:
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> Running install name tool
>>>>>>> Going through prefix: /opt/local
>>>>>>> install_name_tool: changing install names or rpaths can't be redone 
>>>>>>> for: .Linphone.app/Contents/Resources/lib/libgtk-quartz-2.0.0.dylib 
>>>>>>> (for architecture x86_64) because larger updated load commands do not 
>>>>>>> fit (the program must be relinked, and you may need to use -headerpad 
>>>>>>> or -headerpad_max_install_names)
>>>>>>> install_name_tool: changing install names or rpaths can't be redone 
>>>>>>> for: .Linphone.app/Contents/Resources/lib/libgtk-quartz-2.0.0.dylib 
>>>>>>> (for architecture x86_64) because larger updated load commands do not 
>>>>>>> fit (the program must be relinked, and you may need to use -headerpad 
>>>>>>> or -headerpad_max_install_names)
>>>>>>> install_name_tool: changing install names or rpaths can't be redone 
>>>>>>> for: .Linphone.app/Contents/Resources/lib/libgtk-quartz-2.0.0.dylib 
>>>>>>> (for architecture x86_64) because larger updated load commands do not 
>>>>>>> fit (the program must be relinked, and you may need to use -headerpad 
>>>>>>> or -headerpad_max_install_names)
>>>>>>> (...) 
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> It goes on and on like this for a while. I have no idea what this 
>>>>>>> means. I would really appreciate any help guys, I'm lost at this point.
>>>>>>> 
>>>>>>> Thanks in advance.
>>>>>>> ?lvaro.
>>>>>>> 
>>>>>>> 
>>>>>>> <Makefile.inc>
>>>>>>> _______________________________________________
>>>>>>> Linphone-developers mailing list
>>>>>>> address@hidden
>>>>>>> https://lists.nongnu.org/mailman/listinfo/linphone-developers
>>>>>> 
>>>>>> _______________________________________________
>>>>>> Linphone-developers mailing list
>>>>>> address@hidden
>>>>>> https://lists.nongnu.org/mailman/listinfo/linphone-developers
>>>>> 
>>>>> _______________________________________________
>>>>> Linphone-developers mailing list
>>>>> address@hidden
>>>>> https://lists.nongnu.org/mailman/listinfo/linphone-developers
>>>> 
>>>> _______________________________________________
>>>> Linphone-developers mailing list
>>>> address@hidden
>>>> https://lists.nongnu.org/mailman/listinfo/linphone-developers
>>> 
>>> _______________________________________________
>>> Linphone-developers mailing list
>>> address@hidden
>>> https://lists.nongnu.org/mailman/listinfo/linphone-developers
>> 
>> _______________________________________________
>> Linphone-developers mailing list
>> address@hidden
>> https://lists.nongnu.org/mailman/listinfo/linphone-developers
> 
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: 
> <http://lists.nongnu.org/archive/html/linphone-developers/attachments/20121212/fb984dfc/attachment.html>
> 
> ------------------------------
> 
> _______________________________________________
> Linphone-developers mailing list
> address@hidden
> https://lists.nongnu.org/mailman/listinfo/linphone-developers
> 
> 
> End of Linphone-developers Digest, Vol 118, Issue 20
> ****************************************************



reply via email to

[Prev in Thread] Current Thread [Next in Thread]