~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

Renamed strings to mystrings, for include/lib naming consistency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
542
542
 
543
543
AC_MSG_CHECKING(if we should use assembler functions)
544
544
# For now we only support assembler on i386 and sparc systems
545
 
AM_CONDITIONAL(ASSEMBLER_x86, test "$ENABLE_ASSEMBLER" = "yes" -a "$BASE_MACHINE_TYPE" = "i386" && $AS strings/strings-x86.s -o checkassembler >/dev/null 2>&1 && test -f checkassembler && (rm -f checkassembler; exit 0;))
 
545
AM_CONDITIONAL(ASSEMBLER_x86, test "$ENABLE_ASSEMBLER" = "yes" -a "$BASE_MACHINE_TYPE" = "i386" && $AS mystrings/strings-x86.s -o checkassembler >/dev/null 2>&1 && test -f checkassembler && (rm -f checkassembler; exit 0;))
546
546
AM_CONDITIONAL(ASSEMBLER_sparc32, test "$ENABLE_ASSEMBLER" = "yes" -a "$BASE_MACHINE_TYPE" = "sparc")
547
547
AM_CONDITIONAL(ASSEMBLER_sparc64, test "$ENABLE_ASSEMBLER" = "yes" -a "$BASE_MACHINE_TYPE" = "sparcv9")
548
548
AM_CONDITIONAL(ASSEMBLER, test "$ASSEMBLER_x86_TRUE" = "" -o "$ASSEMBLER_sparc32_TRUE" = "")
1268
1268
AC_SUBST(MAKE_BINARY_DISTRIBUTION_OPTIONS)
1269
1269
 
1270
1270
AC_CONFIG_FILES(Makefile extra/Makefile mysys/Makefile mysys/tests/Makefile dnl
1271
 
 strings/Makefile strings/tests/Makefile storage/Makefile dnl
 
1271
 mystrings/Makefile mystrings/tests/Makefile storage/Makefile dnl
1272
1272
 vio/Makefile dnl
1273
1273
 libdrizzle/Makefile client/Makefile dnl
1274
1274
 drizzled/Makefile dnl