diff options
author | shankar | 2010-02-25 12:25:32 +0000 |
---|---|---|
committer | shankar | 2010-02-25 12:25:32 +0000 |
commit | 2e4d68d55d7a35f31f66c2d9ea7e998989042bc2 (patch) | |
tree | 42cccd608398c5f5c0db0da62a5e209ce5f9dfb9 /samples | |
parent | e312f490dae74561d55c88df081093fdb13ff00d (diff) | |
download | axis2c-2e4d68d55d7a35f31f66c2d9ea7e998989042bc2.tar.gz axis2c-2e4d68d55d7a35f31f66c2d9ea7e998989042bc2.tar.bz2 |
fixing AXIS2C-1431;
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@916265 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'samples')
-rw-r--r-- | samples/configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/samples/configure.ac b/samples/configure.ac index 734e88c..3a8bba4 100644 --- a/samples/configure.ac +++ b/samples/configure.ac @@ -47,7 +47,10 @@ fi dnl Checks for libraries. AC_CHECK_LIB(dl, dlopen) -CFLAGS="$CFLAGS -ansi -Wall -D_LARGEFILE64_SOURCE -Wno-implicit-function-declaration" +CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE" +if test "$GCC" = "yes"; then + CFLAGS="$CFLAGS -ansi -Wall -Werror -Wno-implicit-function-declaration -g -D_GNU_SOURCE" +fi dnl Checks for header files. AC_HEADER_STDC |