diff options
author | reinelt <> | 2005-04-05 06:57:41 +0000 |
---|---|---|
committer | reinelt <> | 2005-04-05 06:57:41 +0000 |
commit | ac55352fc07e11744480b7caed2681a8c456305e (patch) | |
tree | b79e4c57df11e181f17454aa5256f383220dd1bd /configure | |
parent | 3efb9ba8c1225b83f8ddceafc773368e5057e542 (diff) | |
download | lcd4linux-ac55352fc07e11744480b7caed2681a8c456305e.tar.gz |
[lcd4linux @ 2005-04-05 06:57:39 by reinelt]
AC_CHECK_HEADERS corrected
Diffstat (limited to '')
-rwxr-xr-x | configure | 42 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 24 insertions, 24 deletions
@@ -5289,9 +5289,9 @@ if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF - has_gd=true + has_gd="true";break else - has_gd=false + has_gd="false" fi done @@ -5442,9 +5442,9 @@ if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF - has_usb=true + has_usb="true" else - has_usb=false + has_usb="false" fi done @@ -5515,9 +5515,9 @@ if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF - has_i2c=true + has_i2c="true" else - has_i2c=false + has_i2c="false";break fi done @@ -6234,14 +6234,14 @@ if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF - has_dvb_header=true + has_dvb_header="true" else - has_dvb_header=false + has_dvb_header="false" fi done - if test "$has_dvb_header" = true; then + if test "$has_dvb_header" = "true"; then PLUGINS="$PLUGINS plugin_dvb.o" cat >>confdefs.h <<\_ACEOF @@ -6422,14 +6422,14 @@ if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF - has_isdn_header=true + has_isdn_header="true" else - has_isdn_header=false + has_isdn_header="false" fi done - if test "$has_dvb_header" = false; then + if test "$has_dvb_header" = "false"; then { echo "$as_me:$LINENO: WARNING: linux/isdn.h header not found: isdn plugin CPS disabled" >&5 echo "$as_me: WARNING: linux/isdn.h header not found: isdn plugin CPS disabled" >&2;} fi @@ -6601,14 +6601,14 @@ if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF - has_mysql_header=true + has_mysql_header="true" else - has_mysql_header=false + has_mysql_header="false" fi done - if test "$has_mysql_header" = true; then + if test "$has_mysql_header" = "true"; then echo "$as_me:$LINENO: checking for mysql_init in -lmysqlclient" >&5 echo $ECHO_N "checking for mysql_init in -lmysqlclient... $ECHO_C" >&6 if test "${ac_cv_lib_mysqlclient_mysql_init+set}" = set; then @@ -6673,12 +6673,12 @@ fi echo "$as_me:$LINENO: result: $ac_cv_lib_mysqlclient_mysql_init" >&5 echo "${ECHO_T}$ac_cv_lib_mysqlclient_mysql_init" >&6 if test $ac_cv_lib_mysqlclient_mysql_init = yes; then - has_mysql_lib=true + has_mysql_lib="true" else - has_mysql_lib=false + has_mysql_lib="false" fi - if test "$has_mysql_lib" = true; then + if test "$has_mysql_lib" = "true"; then PLUGINS="$PLUGINS plugin_mysql.o" cat >>confdefs.h <<\_ACEOF @@ -6856,14 +6856,14 @@ if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF - has_ppp_header=true + has_ppp_header="true" else - has_ppp_header=false + has_ppp_header="false" fi done - if test "$has_ppp_header" = true; then + if test "$has_ppp_header" = "true"; then PLUGINS="$PLUGINS plugin_ppp.o" cat >>confdefs.h <<\_ACEOF diff --git a/configure.in b/configure.in index 60b161f..1a4c97d 100644 --- a/configure.in +++ b/configure.in @@ -49,13 +49,13 @@ AC_CHECK_CURSES AC_PATH_XTRA # check for gd.h -AC_CHECK_HEADERS(gd/gd.h gd.h, [has_gd=true], [has_gd=false]) +AC_CHECK_HEADERS(gd/gd.h gd.h, [has_gd="true";break], [has_gd="false"]) # check for usb.h -AC_CHECK_HEADERS(usb.h, [has_usb=true], [has_usb=false]) +AC_CHECK_HEADERS(usb.h, [has_usb="true"], [has_usb="false"]) # check for i2c -AC_CHECK_HEADERS(linux/compiler.h linux/i2c.h linux/i2c-dev.h,[has_i2c=true],[has_i2c=false],[ +AC_CHECK_HEADERS(linux/compiler.h linux/i2c.h linux/i2c-dev.h,[has_i2c="true"],[has_i2c="false";break],[ #if HAVE_LINUX_COMPILER_H #include <linux/compiler.h> # endif |