[Solved] System fully up-to-date, apps look for old libs

Even though the system is fully updated from a fresh mirror, apps look for older libs: e.g. irssi and wget look for libssl.so.0.9.8, building wget with makepkg wants libgmp.so.3 (the latest is 10). ldd run on said apps returns the newer lib versions, e.g. "libssl.so.1.0.0 => /usr/lib/libssl.so.1.0.0".  The newer libs are present in /usr/lib/. I've reinstalled the whole toolchain, problematic libs and apps. I've removed ld.so.cache and run ldconfig - it shows libssl.so.1.0.0, not libssl.0.9.8 too.
I have no idea why apps still want older libs. Any ideas will be appreciated.
-edit-
Fixed the typo.
Last edited by lucke (2010-04-25 16:33:35)

liticovjesac wrote:I have the same problem with eina-audio-player.
Since you got it from aur, you have to rebuild it yourself.

Similar Messages

  • I can not get apple air play to work. I have down loaded three diffrent apps looking for a solution none of them were the right one. I spent over $10 in these apps. Can I get a refund. Do I need apple tv to run air play?

    I can not get apple air play to run from my iTunes to my WiFi reciever.
    I have spent money on 3 different apps looking for a solution.
    None have worked. Can I get a refund?
    Do I need apple Tv to work Air Play?

    About AirPlay and Airplay Mirroring
    AirPlay Mirroring requires a second-generation Apple TV or later, and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer). For non-qualifying Macs you can try using Air Parrot.
    Several Apple Articles Regarding AirPlay
    Apple TV (2nd and 3rd gen)- How to use AirPlay Mirroring
    How to set up and configure AirPort Express for AirPlay and iTunes
    iTunes- Troubleshooting AirPlay and AirPlay Mirroring
    iTunes- Using AirPlay
    Apple TV (2nd and 3rd gen)- Understanding AirPlay settings
    About AirPlay Mirroring in OS X Mountain Lion
    iTunes 10- About playing music with AirPlay
    Troubleshooting AirPlay and AirPlay Mirroring
    Using AirPlay
    Thanks to the $15 Beamer, AirPlay streaming is still possible on Macs  that do not support Airplay and mirroring.
    Other solutions are the Air Parrot, StreamToMe, and AirServer.

  • Why tomcat is still looking for old jar files?

    Please help me it is a very serious problem.
    I updated one of the jar files used by the project. I am using a new method that is available only in the new library. I removed the old jar files in my local system, and everything worked fine. Then I commit those files to the subversion, which is in the testing server, and then I created the war file. The war is successfully created, then I deployed to the tomcat. But, now there is an error in the portion I am using the method that is only available in the new jar files.
    One of the error when I go to that portion is:
    1. No Such Method Exists
    The other errors on log files are:
    1.
    WARNING: Failed to open JAR
    java.util.zip.ZipException: No such file or directory
    2.
    validateJarFile(tomcat/webapps/ROOT/WEB-INF/lib/j2ee.jar) - jar not loaded. See Servlet Spe
    c 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
    Please help me, I have tried every other way to solve this. I have tried removing all the old jar files there were, and replacing with the new one. I have tried creating a war file and ftping to the testing server.
    I problem is still there and it is because the testing server's tomcat is still looking for old jar files. I used Netbeans and add jar files as usual method.

    Check the contents of your WAR file that you are deploying on the testing server to see if it contains the JAR that you can't find.
    More than likely you are building your WAR file and your new JAR file is not being included in the build.

  • Changed my yahoo account and ID now apps ask for old ID

    I recently Changed my yahoo account and ID now apps ask for old ID and password. How can I delete the old id? The cloud app is really irritating about this.

    The ID for apps will never change. They are locked to the Apple ID they were purchased/downloaded with. Apple ID and iTunes accounts cannot be merged, so you either delete the apps with the old ID and re-purchase/download them, or else you have to use the old Apple ID and password to update them.

  • Old computer crashed.  trying to sync my iphone with new computer but phone is looking for old computer.  how do i change it?

    old computer crashed.  iphone is looking for old computer so I can't get it to sync with my new computer.  Suggestions?

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • Making an Arch Linux wiki-reader Android app - Looking for some advice

    Hey guys, hopefully this is an ok place to post this. I've just finished a beginning Java course and I'm starting on the next one. I'm learning Java with the intention of creating Android applications as a hobby. Since I've found myself accessing the wiki from my phone on many occasions, and this doesn't seem overly difficult, I think this is a good place to start.
    I've been playing with this idea for a couple of weeks and I'm trying to determine the best way to approach this. I'm looking for any pointers/advice from a development standpoint and any (potential) user feedback as well.
    So far, with the help of other Archers, I have come up with the following three options:
    1) Obvious choice- Connect to the actual wiki online
    Pros:
    +Always up to date
    +Small application size
    Cons:
    -More difficult to strip current style and "mobilize" layout (there is a lot of clutter and links to outside of the wiki)
    -More permissions that other choices
    -Requires internet connection
    2) Use the arch-wiki-docs package
    Pros:
    +Offline
    +Easier to add css styles
    +Hopefully would require zero permissions
    Cons:
    -Application would be large ~40MB (Maybe it could be reduced by removing non-english languages?)
    -Not up to date, but pretty close
    3) Use the arch-wiki-lite package
    Pros:
    +Offline
    +Small application size
    +Hopefully would require zero permission
    +More of a native android application feel instead of a dedicated webpage reader
    Cons:
    -No links to other pages
    -Would need to create style/layout from scratch
    -Not really sure how this would work (Searching, etc)
    -Not up to date, but pretty close
    Right now I'm leaning towards the second option, but only if I can figure out an automated way to strip down the html pages and remove the non-english pages. I'm thinking that I'll start with an English only version, then add international support (or a second version) later on if people want it. What are your thoughts?

    Thanks for the response!
    rickeyski wrote: 1. Any app you make will require you to generate your own layouts android uses xml layouts there are webviews, which provide some of this functionality if you need to use html, however this will require online access.
    The arch-wiki-docs package is in HTML and I'm using WebView to read it locally. The arch-wiki-lite package is a text file. Maybe I could import it into a database? Either way, using that package will require me to create the whole layout.
    rickeyski wrote:  2 you could use a wrapper like phonegap, but that would me writing everything in html, css, javascript and you will use virtually none of your java.
    I've used Titanium Studio before, which I think is pretty similar to Phonegap, but I do want to make this one with Java.
    rickeyski wrote: 3. 40 mb is a huge app, granted its before compression, but its also before all of your code and layouts to make it work.. You would be limiting yourself to only the newest androids, don't know which phone you have in mind, but might not be a problem for you.
    40MB is the compressed size. The html docs are over 100MB uncompressed. I think I could significantly reduce the size by removing the non-english pages, but I can't figure out a systematic way to find them. There are 3551 pages and they use names like 00000965.html, 00000967.html, 00000968.html, 00000974.html, etc. (Of those 967 isn't english, but the other three are.)
    rickeyski wrote: 4. the biggest plus is the android docs and examples apps are very good, start reading.
    Yup. I've been reading through those a lot. They are a big help.
    Last edited by ioos (2012-02-11 23:11:05)

  • Why is the Microsoft Office Access Database Engine data source looking for a workgroup information file?

    While trying to import to MSSQL2012 from SSDT using the wizard from an Access 2013 DB (.accdb) which is password protected, I get the following error with the username blank and the password field correctly populated: 
    Cannot start your application. The workgroup information file is missing or opened exclusively by another user. (MicrosoftOffice Access Database Engine)
    But according to this link:
    http://office.microsoft.com/en-us/access-help/what-happened-to-user-level-security-HA010342116.aspx
    MSA10 and beyond shouldn't need workgroup information files, although it's not clear to me if they are
    created/used or not.
    I can point the wizard to some local version of system.mdw at Advanced -> All -> Jet OLEDB:System Database, and then the error becomes:
    Not a valid account name or password. (Microsoft Office Access Database Engine)
    for any username I can think of.
    Questions:
    1.  Why does this data source insist on looking for a workgroup information file even though user-level security should be disabled?
    2.  Why does the Open dialog box for the Microsoft Access Database Engine have *.mdb as the only selectable filetype?
    3.  How can I get around these errors for an .accdb that is password protected?
    Thanks!

    Hi JordanPG,
    To connect to Access 2007 or later database, we need the Microsoft ACE 12.0 OLE DB driver. SQL Server only installs the Microsoft Jet 4.0 OLE DB driver which can be used to connect to Access 2003 or earlier database. Besides, the Microsoft Jet 4.0 OLE DB
    driver only has 32-bit version, but the Microsoft ACE 12.0 OLE DB driver has both 32-bit and 64-bit version. However, the 32-bit and 64-bit Microsoft ACE 12.0 OLE DB drivers cannot be installed on a single server.
    According to your description, you can use the 64-bit SQL Server Import and Export Wizard to load data from the Access database, so the 64-bit Microsoft ACE 12.0 OLE DB driver is installed on your computer. Since the BIDS/SSDT is a 32-bit application, the
    64-bit Microsoft ACE 12.0 OLE DB Provider is not visible in BIDS/SSDT. So, when you said that you select “Microsoft Access (Microsoft Access Database Engine)" in the SQL Server Import and Export Wizard (it is actually the 32-bit version) started by the SSDT,
    I think it should be “Microsoft Access (Microsoft Jet Database Engine)”. Because the Microsoft Jet 4.0 OLE DB driver only supports Access 2003 or earlier format, it threw the error “Test connection failed because of an error in initializing provider. Unrecognized
    database format 'C:\myDB.accdb'”.
    In this situation, you have two approaches to avoid this issue:
    Launch the SQL Server Import and Export Wizard (64-bit), and select “Save SSIS Package” to “File System” on the “Save and Run Package” page. Then, the package will be saved to a specified directory. After that, you can add this existing package to a SSIS
    project. The status of the corresponding OLE DB Connection Manager should be Work Offline, or the OLE DB Source will throw an error about 32-bit driver if the Connection Manager is not in Work Offline status, you can ignore that and the package can run successfully
    in SSDT as long as the project is set to run in 64-bit runtime mode.
    However, for the SSDT 2012 integrated with Visual Studio 2012, the 64-bit runtime mode is disabled. In this situation, to run the package in SSDT, you have to uninstall the 64-bit Microsoft ACE 12.0 OLE DB drivers and install the 32-bit one. Here is the
    download link:
    http://www.microsoft.com/en-in/download/details.aspx?id=13255 
    Regards,
    Mike Yin
    TechNet Community Support

  • Capture serial data and look for prompt

    Are there any examples out there for Labview that
    capture data from a serial port and then look for the
    presence of a prompt word ? The real catch is that the prompt does not end in .

    Try this - it's a VI I keep in my toolbox to check serial communications. All you need to do is add the code to check the received string for the keywork you are searching for.
    Copyright © 2004-2015 Christopher G. Relf. Some Rights Reserved. This posting is licensed under a Creative Commons Attribution 2.5 License.
    Attachments:
    Test_RS-232_Serial_Communications.vi ‏130 KB

  • App is looking for old version of runtime engine

    I have an app that came with a datalogger that was (presumably) written in Labview 7.X. Whe it runs, it wants me to point it to lvruntimeeng 7.1.1.
    I have LV 8.2 already on the machine, and I can't find the file it's looking for.
    I really need to use this datalogger.
    Any ideas?

    From what I can tell, the KB article is about "Executable Version (7.1.1) Doesn't Match Resource File (7.1) Check Your Configuration", while this thread is about the inability to install the 7.1.1 runtime if 8.2 is already installed on the same machine.
    I don't think the KB applies in this case. Did you post the wrong link?
    LabVIEW Champion . Do more with less code and in less time .

  • New iMac looks for old Mac tower

    I purchased a new iMac recently and used Migration Assistant to move my Documents folder over from my old G5 Tower. To the best of my memory, I did not use Migration Assistant to move system files or applications over to the iMac.
    Once I thought I had everything configured just right, 3 things occured where the new iMac was looking for the old G5 Tower:
    (1) at startup, a dialog twice appeared, indicating that the old G5 could not be found. I used the Accounts/Log In Items to disable start up items that were "unidentified." First problem solved.
    (2) When I try to print, the iMac looks for my old G5 when I first try to access a pulldown menu in the print dialog window, and after quite awhile an alert message appears indicating that the G5 server is unavailable. I've tried deleting all installed printers and then reinstalling them, to no avail.
    (3) In my folder windows, under the Places list, there is a favorite folder that is repeated twice, one that links to the "04_FT" folder on the new iMac, and an identically named item that does not function as a link (but a folder with this name did live on the old G5) and I'm unable to remove it from the list. When I Control click on it, the only option I get is to "Open Sidebar Preferences."
    I suspect that both (2) and (3) are similar "ghost" references back to the old G5, but I don't know how to remove them.
    I would very much appreciate any help or suggestions that the iMac community might have to offer.

    I would recommend starting over and instead of using Migration Assistant this time using Setup Assistant. They are cousins, similar but different. First SA is more reliable and second it will not create a second user account. Because you are migrating from a PPC machine I would migrate everything EXCEPT applications. You should manually install your apps, this will give you the opportunity to udate the ones that need it and I'm sure there are many. You may even apps that won't run on Intel based machines so why migrate them at all? You can use the Setup Assistant tips beginning at "Second chance...." You can either restore from your old machine or from one of it's backups. I think you'll see it's a pretty clean process, something you passed over (I'm not sure why) when  you turned on the new iMac for the first time.

  • IMovie 11 freezing looking for old (trashed) computer doing iphoto import?

    Odd problem with my new iMovie. When I try to run it and it goes through the update of files from iPhoto, it freezes and says that the network connection with an old desktop computer we used to have is broken. Then it just reappears and will never complete the iphoto transfer. I have changed iphoto libraries to a new one and that solved the problem, but we have a ton of movies in our iphoto library that I need in imovie. Does anyone know how to disassociate iphoto library from an old computer? In iphoto there are no issues with looking for the old computer, and I don't think we ever had them synced to begin with. Any help is appreciated.

    Hello,
    I have the same problem on my mid 2012 MBP retina 15 inch. For example, when i am importing from facetime in final cut, sometimes it records in 720HD @ 24fps, and sometimes in non-HD @ 17fps.
    Everything is up to date, i have tried recording from photobooth and quicktime, and the issue remains the same.

  • Old version of FF died, downloaded new, would not launch, created new profile (did NOT show any old profiles, did NOT delete an old profile). Looked for old profile, none seem to exist. Nothing in library folder. Help. Need those bookmarks back!

    managed to open the terminal app, and create a new profile. Went looking for older profile and ...nothing. there is NO firefox/mozilla folder in library/application support. I searched for "firefox" on the hd and didnt recognize anything that could/would be the profile folder. i did search my trash as well. help please :-(

    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    In Mac OS X v10.7, the $HOME/Library folder is a hidden folder.
    Open Finder and use one of these:
    * Go > Go To Folder (Shift-Command-G) and in the dialog type: ~/Library
    * Open the "Go" menu and hold down the Option key to make the Library appear
    You can also use this command in a Terminal window to remove the hidden flag.
    * Mac HD > Applications > Utilities > Terminal
    * chflags nohidden ~/Library
    * http://kb2.adobe.com/cps/909/cpsid_90947.html Access hidden user library files

  • Can't complete wireless setup for new router. Printer keeps looking for old router.

    I'm not able to connect my printer to my new wireless modem. My printer continues to look for the older wireless modem. I'm using windows 8. In setup, when it gets to the window "change usb to wireless," my printer can't be found.  I printed out the HP Network Configuration Page and it shows that the new network is "discovered." On the Diagnostics Summary, the "Wireless On" and Wireless Working" passes, but "Network Name (SSID) Found" is Fail. 
    Where in Win8 can I find my router properties? I might can enter the printer WPS PIN there, but can't find it! Thank you for any help!

    @judyw217, Welcome to the forums!
    I hope to help you with the connection issues you're having when trying to connect your Deskjet F4580 to your "new network" as you now have a new router. I have a few ideas in mind that you can try to get started!
    First try power cycling the network devices. Sometimes all of the devices just need a restart!:
    Turn off the printer and computer and unplug the router for 1 minute (do not press any buttons on the router).
    Plug the router back in and wait another minute, next turn on the printer and computer.
    Now check to see if your SSID is found (your network).
    If the network is still not found, try running the Print and Scan Doctor on your computer to see if the tool can detect your printer and add it to the network.
    If the printer is still not connecting to your router, check your router settings. If you need assistance checking the router settings, contact your router provider. I will let you know which options you are looking to check:
    Network name and password to have no spaces or punctuation.
    If using WPA2 security, switch to WPA personal.
    Dual broadcast Wireless b/g/n (printer may connect to g).
    Turn Mac Filtering Off.
    Firewall settings need to be at there default settings, or set to a lower security.
    Multicasting "on".
    Following ports need to be un-blocked:
    Incoming (UDP) ports : 137, 138, 161, 427
    Outgoing (TCP) ports : 137, 139, 427, 9100, 9220, 9500
    Just to add, here are instructions to help you with Setting Up the Printer for a Wireless Network for the HP Deskjet F4580 and F4583 All-in-One Printers
    I hope this helps, let me know the outcome please!
    If you wish to send me a "thanks for responding", click the thumbs up  below!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Since lion upgrade iMac keeps looking for old server

    Hi,
    I have a NAS prior to Lion upgrade which was working perfectly. Now with the Lion upgrade the NAS (Sitecom) ther were some issues. I have reinstalled the NAs and had given it a new name. I can find the NAs now so thats not a problem.
    But almost every hour I get 2 warning that he can not find the "old NAS", it really start annoying me and I've looked everywhere and I don't even find any link (Finder) towards it so I don't know what to do to get rid of this message, receiving it every hour twice really start getting on my nerves.
    Sorry for th Dutch, but the message translates;
    A problem has occured with connecting to the server 'VanBeeckNAS'
    The server doesn't exist or is currently not available. Check the servername or the IP-address of the server, ...
    Any help is highly appreciated.
    Peter

    Same problem since lion. Not only can I not back up to the server it keeps looking for it several times on start up. Real annoying.

  • Looking for old Nokia ringtones

    Hi, I'm looking for some old Nokia ringtones (ah, those days). The Nokia ringtones called Airy, Coconut, and Beach are some ringtones I'm currently looking. If any one can help me I'll be greatful.
    Nokia should release their previous ringtones for us, because it's so good. I like the Nokia tune play in harp instrument that can be found in Nokia 1600.

    Hi, Chiyawa. We appreciate your interest in our products. You can try visiting any Nokia store or authorized Nokia retailers for their availability in your area. Check your local support page at http://www.microsoft.com/en/mobile/support/locations/. All the best and welcome to our community. ;-)

Maybe you are looking for

  • How to connect imac to tv using thunderbolt to hdmi cable

    I'm trying to connect my mid 2011 iMac to my tv. I have a thunderbolt to hdmi cable that I purchased. I connected the thunderbolt port to the iMac and connected the hdmi port to the tv. I turned on both devices and the tv is not getting the signal. W

  • Multiple domains via DHCP (option 15)

    It seems Mac OS X (I use 10.4.10 but I suspect it affects many versions) is incompatible with receiving multiple domain names in a single string over DHCP Option 15. If DHCP returns Option 15 with "exampledomain.com eng.exampledomain.com", then any l

  • Can someone tell me how to import c.d's faster.  I've tried all the stuff listed on the help menu.

    Can someone tell me how to import c.d's faster.  I've already tried all the stuff they told me to do on the help menu.  edit, pref., general, import settings, deselect "use error correction when reading audio c.d.s.  It wasn't even selected in the fi

  • Import source from 1 workspace to a new workspace

    There appears to be something missing when I import source files from 1 project into a new project contained in a new workspace. The source files compile indiv. with no errors in both workspaces. The old workspace compilies fine. However when you try

  • Simple network programming, question ...

    Hello I'm a beginning learning student from the Netherlands. My clientcode looks like this: import java.io.*; import java.net.*; import java.util.*; public class ConsumerClient private static InetAddress host; private static final int PORT = 1234; pu