Ubuntu Forums Archive Viewer

Testing for App Indicator Library in C

Archived thread 2066495 from Ubuntu Application Development. Markdown source: Ubuntu_Application_Development/thread_2066495_Testing_for_App_Indicator_Library_in_C.md

Original URL About this archive
#1

How can I test in C for the existence of the app indicator library?

I found code in python to do this:

have_appindicator = True
try:
    import appindicator
except:
    have_appindicator = False