changed module naming convention

This commit is contained in:
2012-11-02 00:32:45 +00:00
parent acdd3a7a1c
commit 86463296e4
7 changed files with 137 additions and 71 deletions

View File

@ -4,7 +4,7 @@ AM_CPPFLAGS = \
-I$(top_builddir)/include \
-I$(top_srcdir)/include \
-I$(includedir) \
-DDEFAULT_MODDIR=\"$(libdir)/qse\" $(LTDLINCL)
-DDEFAULT_MODDIR=\"$(libdir)\" $(LTDLINCL)
lib_LTLIBRARIES = libqseawk.la
libqseawk_la_SOURCES = awk.c err.c tree.c parse.c run.c rec.c val.c fnc.c misc.c rio.c std.c awk.h err.h rio.h val.h fnc.h misc.h parse.h run.h tree.h

View File

@ -301,7 +301,7 @@ AM_CPPFLAGS = \
-I$(top_builddir)/include \
-I$(top_srcdir)/include \
-I$(includedir) \
-DDEFAULT_MODDIR=\"$(libdir)/qse\" $(LTDLINCL)
-DDEFAULT_MODDIR=\"$(libdir)\" $(LTDLINCL)
lib_LTLIBRARIES = libqseawk.la $(am__append_1)
libqseawk_la_SOURCES = awk.c err.c tree.c parse.c run.c rec.c val.c fnc.c misc.c rio.c std.c awk.h err.h rio.h val.h fnc.h misc.h parse.h run.h tree.h

View File

@ -1408,7 +1408,7 @@ void* StdAwk::modopen (const qse_char_t* dir, const qse_char_t* name)
tmp[count++] = dir;
tmp[count++] = QSE_T("/");
}
tmp[count++] = QSE_T("libawk");
tmp[count++] = QSE_T("libqseawk-");
tmp[count++] = name;
tmp[count] = QSE_NULL;

View File

@ -329,7 +329,7 @@ static void* custom_awk_modopen (
tmp[count++] = dir;
tmp[count++] = QSE_T("/");
}
tmp[count++] = QSE_T("libawk");
tmp[count++] = QSE_T("libqseawk-");
tmp[count++] = name;
tmp[count] = QSE_NULL;
@ -362,7 +362,7 @@ static void* custom_awk_modopen (
tmp[count++] = QSE_T("/");
}
tmp[count++] = QSE_T("libawk");
tmp[count++] = QSE_T("libqseawk-");
tmp[count++] = name;
tmp[count] = QSE_NULL;
@ -390,7 +390,7 @@ static void* custom_awk_modopen (
tmp[count++] = dir;
tmp[count++] = QSE_T("/");
}
tmp[count++] = QSE_T("libawk");
tmp[count++] = QSE_T("libqseawk-");
tmp[count++] = name;
tmp[count] = QSE_NULL;