swig: python: fix unresolved symbol issue
authorYegor Yefremov <yegorslists@googlemail.com>
Tue, 6 Aug 2019 11:42:06 +0000 (13:42 +0200)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Fri, 9 Aug 2019 11:42:39 +0000 (13:42 +0200)
GCC later than 5.x produce _fdti1.so file with an undefined
symbol str2charp_size due to C99 inline semantics change. So
remove this keyword.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>

python/ftdi1.i

index d53ebb0..f397f84 100644 (file)
@@ -19,7 +19,7 @@ inline PyObject* charp2str(const char *v_, long len)
 #endif
 }
 
-inline char * str2charp_size(PyObject* pyObj, int * size)
+char * str2charp_size(PyObject* pyObj, int * size)
 {
   char * v_ = 0;
   Py_ssize_t len = 0;