diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2016-08-01 08:33:05 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2016-08-01 08:33:05 +0000 |
| commit | fa03b7c7b976083cd8a12d35dff97f82b065b5df (patch) | |
| tree | bdb75bcca76c36467f10f7f892051f11f8679d00 /configure.in | |
| parent | 6c0908b39f17feedf5b28ed2d22c0daa380d4c70 (diff) | |
Fix quoting in configure.in.
There were two real errors (AC_MSG_ERROR, fixed in previous commit) and
lots of less important missing quotes.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11858 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/configure.in b/configure.in index 3e2f7ec24..88e11e3c7 100644 --- a/configure.in +++ b/configure.in @@ -361,7 +361,7 @@ if test x$enable_shared = xyes; then -Wl,--enable-auto-image-base -o \$@" ;; *) - AC_MSG_WARN(Shared libraries may not be supported. Trying -shared option with compiler.) + AC_MSG_WARN([Shared libraries may not be supported. Trying -shared option with compiler.]) DSONAME="libfltk.so.$FL_DSO_VERSION" FLDSONAME="libfltk_forms.so.$FL_DSO_VERSION" GLDSONAME="libfltk_gl.so.$FL_DSO_VERSION" @@ -435,7 +435,7 @@ AC_PROG_RANLIB AC_PATH_TOOL(AR, ar) if test "x$AR" = "x:"; then - AC_MSG_ERROR(Configure could not find the library archiver, 1) + AC_MSG_ERROR([Configure could not find the library archiver, aborting.]) fi if test "x$RANLIB" != "x:"; then @@ -532,7 +532,7 @@ else AC_CHECK_FUNC(scandir,[ case $host_os in solaris* | *qnx*) - AC_MSG_WARN(Not using $host_os scandir emulation function.) + AC_MSG_WARN([Not using $host_os scandir emulation function.]) ;; *) AC_DEFINE(HAVE_SCANDIR) @@ -543,10 +543,10 @@ fi AC_CHECK_FUNC(vsnprintf,[ case $host_os in hpux1020) - AC_MSG_WARN(Not using built-in vsnprintf function because you are running HP-UX 10.20.) + AC_MSG_WARN([Not using built-in vsnprintf function because you are running HP-UX 10.20.]) ;; osf4) - AC_MSG_WARN(Not using built-in vsnprintf function because you are running Tru64 4.0.) + AC_MSG_WARN([Not using built-in vsnprintf function because you are running Tru64 4.0.]) ;; *) AC_DEFINE(HAVE_VSNPRINTF) @@ -555,10 +555,10 @@ AC_CHECK_FUNC(vsnprintf,[ AC_CHECK_FUNC(snprintf,[ case $host_os in hpux1020) - AC_MSG_WARN(Not using built-in snprintf function because you are running HP-UX 10.20.) + AC_MSG_WARN([Not using built-in snprintf function because you are running HP-UX 10.20.]) ;; osf4) - AC_MSG_WARN(Not using built-in snprintf function because you are running Tru64 4.0.) + AC_MSG_WARN([Not using built-in snprintf function because you are running Tru64 4.0.]) ;; *) AC_DEFINE(HAVE_SNPRINTF) @@ -664,7 +664,7 @@ if test x$enable_localjpeg = xyes -o x$sysjpeglib_ok = xno; then #ac_cv_lib_jpeg_jpeg_CreateCompress=no # from ima: should not be necessary # Finally, warn user if system lib was requested but not found if test x$enable_localjpeg = xno; then - AC_MSG_WARN(Cannot find system jpeg lib or header: choosing the local lib mode.) + AC_MSG_WARN([Cannot find system jpeg lib or header: choosing the local lib mode.]) fi else JPEGINC="" @@ -700,7 +700,7 @@ if test x$enable_localzlib = xyes -o x$syszlib_ok = xno ; then ac_cv_lib_z_gzgets=no # fc: is still necessary ? # Finally, warn user if system lib was requested but not found if test x$enable_localzlib = xno; then - AC_MSG_WARN(Cannot find system z lib or header: choosing the local lib mode.) + AC_MSG_WARN([Cannot find system z lib or header: choosing the local lib mode.]) fi else ZLIBINC="" @@ -745,7 +745,7 @@ if test x$enable_localpng = xyes -o x$syspnglib_ok = xno ; then AC_DEFINE(HAVE_PNG_SET_TRNS_TO_ALPHA) # Finally, warn user if system lib was requested but not found if test x$enable_localpng = xno; then - AC_MSG_WARN(Cannot find system png lib or header: choosing the local lib mode.) + AC_MSG_WARN([Cannot find system png lib or header: choosing the local lib mode.]) fi else PNGINC="" @@ -930,11 +930,11 @@ case $host_os_gui in AC_PATH_XTRA if test x$no_x = xyes; then - AC_MSG_ERROR(Configure could not find required X11 libraries, 1) + AC_MSG_ERROR([Configure could not find required X11 libraries, aborting.]) fi if test "x$X_PRE_LIBS" != x; then - AC_MSG_WARN(Ignoring libraries \"$X_PRE_LIBS\" requested by configure.) + AC_MSG_WARN([Ignoring libraries \"$X_PRE_LIBS\" requested by configure.]) fi LIBS="$LIBS -lX11 $X_EXTRA_LIBS" @@ -1223,49 +1223,49 @@ if test -n "$GCC"; then fi # See if GCC supports -fno-exceptions... - AC_MSG_CHECKING(if GCC supports -fno-exceptions) + AC_MSG_CHECKING([if GCC supports -fno-exceptions]) OLDCFLAGS="$CFLAGS" CFLAGS="$CFLAGS -fno-exceptions" AC_TRY_COMPILE(,, OPTIM="$OPTIM -fno-exceptions" - AC_MSG_RESULT(yes), - AC_MSG_RESULT(no)) + AC_MSG_RESULT([yes]), + AC_MSG_RESULT([no])) CFLAGS="$OLDCFLAGS" # See if GCC supports -fno-strict-aliasing... - AC_MSG_CHECKING(if GCC supports -fno-strict-aliasing) + AC_MSG_CHECKING([if GCC supports -fno-strict-aliasing]) OLDCFLAGS="$CFLAGS" CFLAGS="$CFLAGS -fno-strict-aliasing" AC_TRY_COMPILE(,, OPTIM="$OPTIM -fno-strict-aliasing" - AC_MSG_RESULT(yes), - AC_MSG_RESULT(no)) + AC_MSG_RESULT([yes]), + AC_MSG_RESULT([no])) CFLAGS="$OLDCFLAGS" dnl Experimental (as of 17 Feb 2015): dnl Make sure that shared libraries don't have undefined references # See if ld supports -no-undefined... - AC_MSG_CHECKING(if ld supports -no-undefined) + AC_MSG_CHECKING([if ld supports -no-undefined]) OLDLDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -Wl,-no-undefined" AC_TRY_LINK(,, [DSOFLAGS="$DSOFLAGS -Wl,-no-undefined"] - AC_MSG_RESULT(yes), - AC_MSG_RESULT(no)) + AC_MSG_RESULT([yes]), + AC_MSG_RESULT([no])) LDFLAGS="$OLDLDFLAGS" # See if ld supports -Bsymbolic-functions... - AC_MSG_CHECKING(if ld supports -Bsymbolic-functions) + AC_MSG_CHECKING([if ld supports -Bsymbolic-functions]) OLDLDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -Wl,-Bsymbolic-functions" AC_TRY_LINK(,, [DSOFLAGS="$DSOFLAGS -Wl,-Bsymbolic-functions"] - AC_MSG_RESULT(yes), - AC_MSG_RESULT(no)) + AC_MSG_RESULT([yes]), + AC_MSG_RESULT([no])) LDFLAGS="$OLDLDFLAGS" # See if toolchain supports a sectioned build... - AC_MSG_CHECKING(if toolchain supports sections) + AC_MSG_CHECKING([if toolchain supports sections]) OLDLDFLAGS="$LDFLAGS" OLDCFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS -Wl,-gc-sections" @@ -1273,8 +1273,8 @@ dnl Make sure that shared libraries don't have undefined references AC_TRY_LINK(,, [DSOFLAGS="$DSOFLAGS -Wl,-gc-sections" OPTIM="$OPTIM -ffunction-sections -fdata-sections"] - AC_MSG_RESULT(yes), - AC_MSG_RESULT(no)) + AC_MSG_RESULT([yes]), + AC_MSG_RESULT([no])) LDFLAGS="$OLDLDFLAGS" CFLAGS="$OLDCFLAGS" @@ -1287,15 +1287,15 @@ dnl Make sure that shared libraries don't have undefined references # to clients - otherwise client apps will not compile properly... case $host_os in solaris*) - AC_MSG_CHECKING(if GCC supports -fpermissive) + AC_MSG_CHECKING([if GCC supports -fpermissive]) OLDCFLAGS="$CFLAGS" CFLAGS="$CFLAGS -fpermissive" AC_TRY_COMPILE(,, CXXFLAGS="$CXXFLAGS -fpermissive" - AC_MSG_RESULT(yes), + AC_MSG_RESULT([yes]), CFLAGS="$OLDCFLAGS" - AC_MSG_RESULT(no)) + AC_MSG_RESULT([no])) ;; esac else @@ -1313,7 +1313,7 @@ else # MAKEDEPEND="CC -M" if test "x`grep abi=n32 /etc/compiler.defaults`" = x; then - AC_MSG_WARN(FOR BEST RESULTS BEFORE COMPILING: setenv SGI_ABI \"-n32 -mips3\") + AC_MSG_WARN([FOR BEST RESULTS BEFORE COMPILING: setenv SGI_ABI \"-n32 -mips3\"]) fi OPTIM="-fullwarn $OPTIM" @@ -1379,13 +1379,13 @@ else fi fi - AC_MSG_WARN(The AIX C and C++ compilers are known not to correctly compile the FLTK library.) + AC_MSG_WARN([The AIX C and C++ compilers are known not to correctly compile the FLTK library.]) ;; *) # Running some other operating system; inform the user they # should contribute the necessary options via the STR form.. - AC_MSG_WARN(Building FLTK with default compiler optimizations) - AC_MSG_WARN(Send the FLTK developers your uname and compiler options via http://www.fltk.org/str.php) + AC_MSG_WARN([Building FLTK with default compiler optimizations]) + AC_MSG_WARN([Send the FLTK developers your uname and compiler options via http://www.fltk.org/str.php]) ;; esac fi |
