diff options
Diffstat (limited to 'nxproxy')
-rw-r--r-- | nxproxy/configure.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/nxproxy/configure.in b/nxproxy/configure.in index 268584216..12e2a08d2 100644 --- a/nxproxy/configure.in +++ b/nxproxy/configure.in @@ -7,8 +7,12 @@ AC_PREREQ(2.13) dnl Reset default compilation flags. -CXXFLAGS="$CXXFLAGS -O3" -CPPFLAGS="$CPPFLAGS -O3" +if test "x$CXXFLAGS" == "x"; then + CXXFLAGS="-O3" +fi +if test "x$CPPFLAGS" == "x"; then + CPPFLAGS="-O3" +fi dnl Prefer headers and libraries from nx-X11 if present. |