~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Monty Taylor
  • Date: 2009-01-09 22:46:27 UTC
  • mto: (779.1.5 devel)
  • mto: This revision was merged to the branch mainline in revision 784.
  • Revision ID: mordred@inaugust.com-20090109224627-gnvaxebs235v5wv8
More gettext stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
# The port should be constant for a LONG time
93
93
DRIZZLE_TCP_PORT_DEFAULT=4427
94
94
 
 
95
# We need to hack in some of the non-standard locations that solaris sticks
 
96
# stuff in. This makes me very sad.
 
97
case "$host_os" in
 
98
  solaris*)
 
99
    CPPFLAGS="${CPPFLAGS} -I/opt/csw/include -I/opt/local/include"
 
100
    LDFLAGS="${LDFLAGS} -L/opt/csw/lib -L/opt/csw/lib"
 
101
    ;;
 
102
esac
 
103
 
95
104
m4_include(m4/dtrace.m4)
96
105
 
97
106
m4_include(m4/character_sets.m4)
98
107
AC_SUBST(AVAILABLE_LANGUAGES)
99
108
 
100
109
m4_include(m4/gettext.m4)
101
 
AM_GNU_GETTEXT([external])
 
110
AM_GNU_GETTEXT(external, need-formatstring-macros)
102
111
AM_CONDITIONAL([BUILD_GETTEXT],[test "x$MSGMERGE" != "x" -a "x$MSGMERGE" != "x:"])
103
112
 
104
113
# Set this for plugins to use
105
114
ac_build_drizzle="yes"
106
115
 
107
 
# We need to hack in some of the non-standard locations that solaris sticks
108
 
# stuff in. This makes me very sad. This hack also has to happen _after_
109
 
# the gettext checks, otherwise we break OpenSolaris.
110
 
case "$host_os" in
111
 
  solaris*)
112
 
    CPPFLAGS="${CPPFLAGS} -I/opt/csw/include -I/opt/local/include"
113
 
    LDFLAGS="${LDFLAGS} -L/opt/csw/lib -L/opt/csw/lib"
114
 
    ;;
115
 
esac
116
 
 
117
116
 
118
117
# Canonicalize the configuration name.
119
118