Fix build for x86_64 arch 78/3678/1
authorBaptiste DURAND <baptiste.durand@eurogiciel.fr>
Tue, 28 May 2013 08:04:36 +0000 (10:04 +0200)
committerBaptiste DURAND <baptiste.durand@eurogiciel.fr>
Tue, 28 May 2013 08:04:36 +0000 (10:04 +0200)
fix hardcoded library path

configure.ac
location/module/module-internal.c

index 803905b..7b2f4b3 100755 (executable)
@@ -76,7 +76,7 @@ if ([test "x$enable_dlog" = xyes]); then
                LOCATION_LIBS="$LOCATION_LIBS $DLOG_LIBS"
        fi
 fi
-
+LOCATION_CFLAGS="$LOCATION_CFLAGS -DLIBPATH=\\\"$libdir\\\""
 # Generate files
 AC_CONFIG_FILES([
 location.pc
index e4d0fdd..6145e19 100644 (file)
@@ -32,7 +32,7 @@
 #include "location-log.h"
 
 #define MAX_MODULE_INDEX 3
-const char* MODULE_PATH_PREFIX = "/usr/lib/location/module";
+const char* MODULE_PATH_PREFIX = LIBPATH "/location/module";
 
 static GMod*
 gmod_new (const char* module_name, gboolean is_resident)