~jaypipes/drizzle/proto-definitions

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Jay Pipes
  • Date: 2008-09-25 18:13:26 UTC
  • mfrom: (352.5.30 codestyle)
  • Revision ID: jay@mysql.com-20080925181326-2z7pr377hcvf28qt
Merged in trunk and added additional definition wrappers for proto buffer messages

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
PROTOCOL_VERSION=10
14
14
DOT_FRM_VERSION=6
15
15
# See the libtool docs for information on how to do shared lib versions.
16
 
SHARED_LIB_MAJOR_VERSION=16
 
16
SHARED_LIB_MAJOR_VERSION=1
17
17
SHARED_LIB_VERSION=$SHARED_LIB_MAJOR_VERSION:0:0
18
18
 
19
19
 
62
62
AM_GNU_GETTEXT([external])
63
63
AM_GNU_GETTEXT_VERSION(0.17)
64
64
 
65
 
AM_CONDITIONAL([BUILD_GETTEXT],[test "x$MSGMERGE" != "x"])
 
65
AM_CONDITIONAL([BUILD_GETTEXT],[test "x$MSGMERGE" != "x" -a "x$MSGMERGE" != "x:"])
66
66
 
67
67
AC_SUBST(DRIZZLE_NO_DASH_VERSION)
68
68
AC_SUBST(DRIZZLE_BASE_VERSION)
78
78
AC_SUBST(SHARED_LIB_VERSION)
79
79
AC_SUBST(AVAILABLE_LANGUAGES)
80
80
 
 
81
# General Constants
 
82
AC_DEFINE([IO_SIZE], [4096], [Io buffer size; Must be a power of 2 and 
 
83
  a multiple of 512. May be
 
84
  smaller what the disk page size. This influences the speed of the
 
85
  isam btree library. eg to big to slow.])
 
86
AC_DEFINE([SC_MAXWIDTH],[256], [Max width of screen (for error messages)])
 
87
AC_DEFINE([FN_LEN],[256 ], [Max file name len ])
 
88
AC_DEFINE([FN_HEADLEN],[253], [Max length of filepart of file name ])
 
89
AC_DEFINE([FN_EXTLEN],[20], [Max length of extension (part of FN_LEN) ])
 
90
AC_DEFINE([FN_REFLEN],[512], [Max length of full path-name ])
 
91
AC_DEFINE([FN_EXTCHAR],['.'], [File extension character])
 
92
AC_DEFINE([FN_HOMELIB],['~'], [~/ is used as abbrev for home dir ])
 
93
AC_DEFINE([FN_CURLIB],['.'], [./ is used as abbrev for current dir ])
 
94
AC_DEFINE([FN_PARENTDIR],[".."], [Parent directory; Must be a string ])
81
95
 
82
96
# Canonicalize the configuration name.
83
97
 
584
598
  FIND_PROC="$PS \$\$PID | grep -v grep | grep \$\$MYSQLD > /dev/null"
585
599
else
586
600
  case $SYSTEM_TYPE in
587
 
    *freebsd*|*dragonfly*)
 
601
    *freebsd*|*dragonfly*|*cygwin*)
588
602
      FIND_PROC="$PS p \$\$PID | grep -v grep | grep \$\$MYSQLD > /dev/null"
589
603
      ;;
590
604
    *darwin*)
1425
1439
 drizzled/field/Makefile dnl
1426
1440
 drizzled/serialize/Makefile dnl
1427
1441
 drizzled/sql_builtin.cc dnl
1428
 
 drizzled/share/Makefile dnl
1429
1442
 support-files/Makefile dnl
1430
1443
 tests/Makefile tests/install_test_db dnl
1431
1444
 drizzled/version.h plugin/Makefile dnl