https://bugzilla.redhat.com/show_bug.cgi?id=1491281



--- Comment #5 from Miro HronĨok <mhron...@redhat.com> ---
See https://src.fedoraproject.org/rpms/libsass/pull-request/1

This will allow you to read the libsass version in two possible ways:

 1) parse /usr/include/sass/version.h

 2) write and compile a small program:

#include <stdio.h>
#include <sass/context.h>

int main() {
  puts(libsass_version());
  return 0;
}


gcc -Wall version.c -lsass -o version && ./version

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
_______________________________________________
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org

Reply via email to