find_executable: checking for gpgme-config… ——————– yes


checking for gpgme >= 1.1.3… ——————– yes

“gcc -o conftest -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong –param=ssp-buffer-size=4 -grecord-gcc-switches -mtune=generic -fPIC conftest.c -L. -L/usr/lib64 -L. -Wl,-z,relro -fstack-protector -rdynamic -Wl,-export-dynamic -m64 -L/usr/lib64 -lgpgme -lruby -lpthread -lrt -ldl -lcrypt -lm -lc” checked program was:

begin

1: include “ruby.h” 2: 3: int main(int argc, char **argv) 4: { 5: return 0; 6: }

end

“gcc -o conftest -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong –param=ssp-buffer-size=4 -grecord-gcc-switches -mtune=generic -fPIC conftest.c -L. -L/usr/lib64 -L. -Wl,-z,relro -fstack-protector -rdynamic -Wl,-export-dynamic -m64 -L/usr/lib64 -lgpgme -lruby -lpthread -lrt -ldl -lcrypt -lm -lc” checked program was: /* begin */ 1: include “ruby.h” 2: 3: include <gpgme.h> 4: include <stdlib.h> 5: int main (void) { 6: return gpgme_check_version (“1.1.3”) == NULL; 7: } /* end */

./conftest


have_func: checking for gpgme_op_export_keys()… ——————– yes

“gcc -o conftest -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong –param=ssp-buffer-size=4 -grecord-gcc-switches -mtune=generic -fPIC conftest.c -L. -L/usr/lib64 -L. -Wl,-z,relro -fstack-protector -rdynamic -Wl,-export-dynamic -m64 -L/usr/lib64 -lgpgme -lruby -L/usr/lib64 -lgpgme -lpthread -lrt -ldl -lcrypt -lm -lc” conftest.c: In function 't': conftest.c:5:57: error: 'gpgme_op_export_keys' undeclared (first use in this function)

int t(void) { void ((*volatile p)()); p = (void ((*)()))gpgme_op_export_keys; return 0; }
                                                        ^

conftest.c:5:57: note: each undeclared identifier is reported only once for each function it appears in conftest.c:5:32: warning: variable 'p' set but not used [-Wunused-but-set-variable]

int t(void) { void ((*volatile p)()); p = (void ((*)()))gpgme_op_export_keys; return 0; }
                               ^

checked program was: /* begin */

1: #include "ruby.h"
2: 
3: /*top*/
4: extern int t(void);
5: int t(void) { void ((*volatile p)()); p = (void ((*)()))gpgme_op_export_keys; return 0; }
6: int main(int argc, char **argv)
7: {
8:   if (argc > 1000000) {
9:     printf("%p", &t);

10: } 11: 12: return 0; 13: } /* end */

“gcc -o conftest -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong –param=ssp-buffer-size=4 -grecord-gcc-switches -mtune=generic -fPIC conftest.c -L. -L/usr/lib64 -L. -Wl,-z,relro -fstack-protector -rdynamic -Wl,-export-dynamic -m64 -L/usr/lib64 -lgpgme -lruby -L/usr/lib64 -lgpgme -lpthread -lrt -ldl -lcrypt -lm -lc” conftest.c: In function 't': conftest.c:5:1: warning: implicit declaration of function 'gpgme_op_export_keys' [-Wimplicit-function-declaration]

int t(void) { gpgme_op_export_keys(); return 0; }
^

checked program was: /* begin */

1: #include "ruby.h"
2: 
3: /*top*/
4: extern int t(void);
5: int t(void) { gpgme_op_export_keys(); return 0; }
6: int main(int argc, char **argv)
7: {
8:   if (argc > 1000000) {
9:     printf("%p", &t);

10: } 11: 12: return 0; 13: } /* end */