diff options
author | Juan Quintela <quintela@redhat.com> | 2009-07-27 16:12:45 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-27 14:09:17 -0500 |
commit | 60ddf53399686061b34c11bcfe650905f6e6f192 (patch) | |
tree | 5c114ce3661e6cd9e5032ff41671351870297350 | |
parent | a900c00235a5357cea115ce1f2ccf76c8586d2ef (diff) |
remove CONFIG_ from VNC_SASL_{LIBS, FLAGS}
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | Makefile.target | 4 | ||||
-rwxr-xr-x | configure | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.target b/Makefile.target index 0b2d88515c..43ad50fa13 100644 --- a/Makefile.target +++ b/Makefile.target @@ -461,8 +461,8 @@ LIBS += $(VNC_TLS_LIBS) endif ifdef CONFIG_VNC_SASL -CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS) -LIBS += $(CONFIG_VNC_SASL_LIBS) +CPPFLAGS += $(VNC_SASL_CFLAGS) +LIBS += $(VNC_SASL_LIBS) endif ifdef CONFIG_BLUEZ @@ -1655,8 +1655,8 @@ if test "$vnc_tls" = "yes" ; then fi if test "$vnc_sasl" = "yes" ; then echo "CONFIG_VNC_SASL=y" >> $config_host_mak - echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak - echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_host_mak + echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak + echo "VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_host_mak echo "#define CONFIG_VNC_SASL 1" >> $config_host_h fi if test "$fnmatch" = "yes" ; then |