Skip to content

Commit

Permalink
Added support for OpenBSD 4.x: Do not specify any additional C/C++ fl…
Browse files Browse the repository at this point in the history
…ags.
  • Loading branch information
Joerg Riesmeier committed Dec 22, 2010
1 parent a7e035e commit 0fd471a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.360
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Changes between releases are documented here.
- Fixed some typos and little inconsistencies. Updated homepage of libxml.
Affects: INSTALL

- Added support for OpenBSD 4.x: Do not specify any additional C/C++ flags.
Affects: config/configure
config/configure.in

**** Changes from 2010.12.21 (onken)

- Fixed wrong response assignment in DcmSCU's C-STORE code. Thanks to
Expand Down
12 changes: 8 additions & 4 deletions config/configure
Original file line number Diff line number Diff line change
Expand Up @@ -21332,6 +21332,8 @@ _ACEOF
CXXFLAGS="-D_POSIX_C_SOURCE=199506L $CXXFLAGS"
CFLAGS="-D_POSIX_C_SOURCE=199506L $CFLAGS"
;;
*-*-openbsd4*)
;;
*-*-freebsd*)
;;
*-*-netbsdelf2*)
Expand Down Expand Up @@ -21402,6 +21404,8 @@ _ACEOF
CXXFLAGS="-D_POSIX_C_SOURCE=199506L $CXXFLAGS"
CFLAGS="-D_POSIX_C_SOURCE=199506L $CFLAGS"
;;
*-*-openbsd4*)
;;
*-*-freebsd*)
;;
*-*-netbsdelf2*)
Expand Down Expand Up @@ -28646,7 +28650,7 @@ if test "${ac_cv_check_std_namespace+set}" = set; then
else
ac_link_o='${CXX-g++} -o conftest $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.o $LIBS 1>&5'
cat > conftest.$ac_ext <<EOF
#line 28649 "configure"
#line 28653 "configure"
#include "confdefs.h"

#include <iostream>
Expand Down Expand Up @@ -29319,7 +29323,7 @@ if test "${ac_cv_check_class_template+set}" = set; then
else
ac_link_o='${CXX-g++} -o conftest $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.o $LIBS 1>&5'
cat > conftest.$ac_ext <<EOF
#line 29322 "configure"
#line 29326 "configure"
#include "confdefs.h"

template <class T>
Expand Down Expand Up @@ -29392,7 +29396,7 @@ if test "${ac_cv_check_static_template_method+set}" = set; then
else
ac_link_o='${CXX-g++} -o conftest $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.o $LIBS 1>&5'
cat > conftest.$ac_ext <<EOF
#line 29395 "configure"
#line 29399 "configure"
#include "confdefs.h"

void additive(int & i)
Expand Down Expand Up @@ -29465,7 +29469,7 @@ if test "${ac_cv_check_function_template+set}" = set; then
else
ac_link_o='${CXX-g++} -o conftest $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.o $LIBS 1>&5'
cat > conftest.$ac_ext <<EOF
#line 29468 "configure"
#line 29472 "configure"
#include "confdefs.h"

template <class T>
Expand Down
4 changes: 4 additions & 0 deletions config/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,8 @@ if test $THREADSUPPORT = posix ; then
CXXFLAGS="-D_POSIX_C_SOURCE=199506L $CXXFLAGS"
CFLAGS="-D_POSIX_C_SOURCE=199506L $CFLAGS"
;;
*-*-openbsd4*)
;;
*-*-freebsd*)
;;
*-*-netbsdelf2*)
Expand Down Expand Up @@ -640,6 +642,8 @@ if test $THREADSUPPORT = posix ; then
CXXFLAGS="-D_POSIX_C_SOURCE=199506L $CXXFLAGS"
CFLAGS="-D_POSIX_C_SOURCE=199506L $CFLAGS"
;;
*-*-openbsd4*)
;;
*-*-freebsd*)
;;
*-*-netbsdelf2*)
Expand Down

0 comments on commit 0fd471a

Please sign in to comment.