OpenClovis / OpenYuma

Fork of the defacto standard Yuma project since it went proprietary. Netconf is a management protocol (similar to SNMP) defined in RFC4741.
68 stars 51 forks source link

Query on linking #18

Closed harshawasthi90 closed 8 years ago

harshawasthi90 commented 8 years ago

My module depends on libcurl. I compiled it registered it with server in configuration file, such that module is loaded on startup.

How can i link libcurl library..

hoangle commented 8 years ago

You can follow by example toaster's Makefile. Then, specified LD_LIBRARY_PATH must be exporting where libcurl located in before server running.

harshawasthi90 commented 8 years ago

it worked.. Thanks...