Changeset 161
- Timestamp:
- 09/04/07 15:54:49 (20 months ago)
- Location:
- trunk/sm
- Files:
-
- 2 modified
-
Makefile.am (modified) (1 diff)
-
mm.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/sm/Makefile.am
r139 r161 1 INCLUDES = -DCONFIG_DIR=\"$(sysconfdir)\" 1 INCLUDES = -DCONFIG_DIR=\"$(sysconfdir)\" -DLIBRARY_DIR=\"$(pkglibdir)\" 2 2 3 3 bin_PROGRAMS = sm -
trunk/sm/mm.c
r160 r161 175 175 snprintf(mod_fullpath, 512, "%s/mod_%s.so", modules_path, name); 176 176 else 177 snprintf(mod_fullpath, 512, "%s/mod_%s.so", PACKAGE_DIR, name);177 snprintf(mod_fullpath, 512, "%s/mod_%s.so", LIBRARY_DIR, name); 178 178 mod->handle = dlopen(mod_fullpath, RTLD_LAZY); 179 179 if (mod->handle != NULL)
